odoo-addon-account-financial-report 18.0.1.3.0.6__py3-none-any.whl → 18.0.1.4.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of odoo-addon-account-financial-report might be problematic. Click here for more details.
- odoo/addons/account_financial_report/README.rst +1 -1
- odoo/addons/account_financial_report/__manifest__.py +1 -1
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +16 -0
- odoo/addons/account_financial_report/report/abstract_report.py +6 -0
- odoo/addons/account_financial_report/report/aged_partner_balance.py +18 -12
- odoo/addons/account_financial_report/report/general_ledger.py +27 -24
- odoo/addons/account_financial_report/report/journal_ledger.py +27 -22
- odoo/addons/account_financial_report/report/open_items.py +24 -19
- odoo/addons/account_financial_report/report/templates/general_ledger.xml +6 -2
- odoo/addons/account_financial_report/report/templates/journal_ledger.xml +5 -2
- odoo/addons/account_financial_report/report/templates/open_items.xml +1 -1
- odoo/addons/account_financial_report/report/trial_balance.py +30 -26
- odoo/addons/account_financial_report/report/vat_report.py +17 -12
- odoo/addons/account_financial_report/static/description/index.html +1 -1
- odoo/addons/account_financial_report/tests/test_aged_partner_balance.py +4 -4
- odoo/addons/account_financial_report/tests/test_general_ledger.py +1 -1
- odoo/addons/account_financial_report/tests/test_journal_ledger.py +5 -5
- odoo/addons/account_financial_report/tests/test_open_items.py +1 -1
- odoo/addons/account_financial_report/tests/test_trial_balance.py +4 -4
- odoo/addons/account_financial_report/tests/test_vat_report.py +1 -1
- odoo/addons/account_financial_report/wizard/abstract_wizard.py +23 -0
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +7 -1
- odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +7 -1
- odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml +5 -0
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py +7 -1
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml +1 -0
- odoo/addons/account_financial_report/wizard/open_items_wizard.py +7 -1
- odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +1 -0
- odoo/addons/account_financial_report/wizard/trial_balance_wizard.py +7 -1
- odoo/addons/account_financial_report/wizard/vat_report_wizard.py +7 -1
- {odoo_addon_account_financial_report-18.0.1.3.0.6.dist-info → odoo_addon_account_financial_report-18.0.1.4.0.dist-info}/METADATA +2 -2
- {odoo_addon_account_financial_report-18.0.1.3.0.6.dist-info → odoo_addon_account_financial_report-18.0.1.4.0.dist-info}/RECORD +34 -34
- {odoo_addon_account_financial_report-18.0.1.3.0.6.dist-info → odoo_addon_account_financial_report-18.0.1.4.0.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-18.0.1.3.0.6.dist-info → odoo_addon_account_financial_report-18.0.1.4.0.dist-info}/top_level.txt +0 -0
|
@@ -11,7 +11,7 @@ Account Financial Reports
|
|
|
11
11
|
!! This file is generated by oca-gen-addon-readme !!
|
|
12
12
|
!! changes will be overwritten. !!
|
|
13
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
14
|
-
!! source digest: sha256:
|
|
14
|
+
!! source digest: sha256:28b271586e6e9a5c8bb57d25d47843326c5618b35a53495fe6959bd47e5c1f12
|
|
15
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
16
16
|
|
|
17
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -809,6 +809,11 @@ msgstr ""
|
|
|
809
809
|
msgid "Foreign Currency"
|
|
810
810
|
msgstr ""
|
|
811
811
|
|
|
812
|
+
#. module: account_financial_report
|
|
813
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
814
|
+
msgid "Format"
|
|
815
|
+
msgstr ""
|
|
816
|
+
|
|
812
817
|
#. module: account_financial_report
|
|
813
818
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
814
819
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -1058,6 +1063,17 @@ msgstr ""
|
|
|
1058
1063
|
msgid "Journals"
|
|
1059
1064
|
msgstr ""
|
|
1060
1065
|
|
|
1066
|
+
#. module: account_financial_report
|
|
1067
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__label_text_limit
|
|
1068
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__label_text_limit
|
|
1069
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__label_text_limit
|
|
1070
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__label_text_limit
|
|
1071
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__label_text_limit
|
|
1072
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__label_text_limit
|
|
1073
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__label_text_limit
|
|
1074
|
+
msgid "Label Text Limit"
|
|
1075
|
+
msgstr ""
|
|
1076
|
+
|
|
1061
1077
|
#. module: account_financial_report
|
|
1062
1078
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1063
1079
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
@@ -162,3 +162,9 @@ class AgedPartnerBalanceReport(models.AbstractModel):
|
|
|
162
162
|
"debit",
|
|
163
163
|
"amount_currency",
|
|
164
164
|
]
|
|
165
|
+
|
|
166
|
+
def _get_report_values(self, docids, data):
|
|
167
|
+
wizard = self.env[data["wizard_name"]].browse(data["wizard_id"])
|
|
168
|
+
return {
|
|
169
|
+
"limit_text": wizard._limit_text,
|
|
170
|
+
}
|
|
@@ -409,6 +409,7 @@ class AgedPartnerBalanceReport(models.AbstractModel):
|
|
|
409
409
|
return aged_partner_data
|
|
410
410
|
|
|
411
411
|
def _get_report_values(self, docids, data):
|
|
412
|
+
res = super()._get_report_values(docids, data)
|
|
412
413
|
wizard_id = data["wizard_id"]
|
|
413
414
|
company = self.env["res.company"].browse(data["company_id"])
|
|
414
415
|
company_id = data["company_id"]
|
|
@@ -451,18 +452,23 @@ class AgedPartnerBalanceReport(models.AbstractModel):
|
|
|
451
452
|
aged_partner_data = self.with_context(
|
|
452
453
|
age_partner_config=aged_partner_configuration
|
|
453
454
|
)._calculate_percent(aged_partner_data)
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
455
|
+
res.update(
|
|
456
|
+
{
|
|
457
|
+
"doc_ids": [wizard_id],
|
|
458
|
+
"doc_model": "aged.partner.balance.report.wizard",
|
|
459
|
+
"docs": self.env["aged.partner.balance.report.wizard"].browse(
|
|
460
|
+
wizard_id
|
|
461
|
+
),
|
|
462
|
+
"company_name": company.display_name,
|
|
463
|
+
"currency_name": company.currency_id.name,
|
|
464
|
+
"date_at": date_at,
|
|
465
|
+
"only_posted_moves": only_posted_moves,
|
|
466
|
+
"aged_partner_balance": aged_partner_data,
|
|
467
|
+
"show_move_lines_details": show_move_line_details,
|
|
468
|
+
"age_partner_config": aged_partner_configuration,
|
|
469
|
+
}
|
|
470
|
+
)
|
|
471
|
+
return res
|
|
466
472
|
|
|
467
473
|
def _get_ml_fields(self):
|
|
468
474
|
return self.COMMON_ML_FIELDS + [
|
|
@@ -385,7 +385,6 @@ class GeneralLedgerReport(models.AbstractModel):
|
|
|
385
385
|
domain += [("move_id.state", "=", "posted")]
|
|
386
386
|
else:
|
|
387
387
|
domain += [("move_id.state", "in", ["posted", "draft"])]
|
|
388
|
-
|
|
389
388
|
if cost_center_ids:
|
|
390
389
|
domain += [("analytic_account_ids", "in", cost_center_ids)]
|
|
391
390
|
return domain
|
|
@@ -761,6 +760,7 @@ class GeneralLedgerReport(models.AbstractModel):
|
|
|
761
760
|
|
|
762
761
|
# flake8: noqa: C901
|
|
763
762
|
def _get_report_values(self, docids, data):
|
|
763
|
+
res = super()._get_report_values(docids, data)
|
|
764
764
|
wizard_id = data["wizard_id"]
|
|
765
765
|
company = self.env["res.company"].browse(data["company_id"])
|
|
766
766
|
company_id = data["company_id"]
|
|
@@ -890,29 +890,32 @@ class GeneralLedgerReport(models.AbstractModel):
|
|
|
890
890
|
if not gl_item["currency_id"] and len(fin_bal_currency_ids) == 1:
|
|
891
891
|
fin_bal_currency_id = fin_bal_currency_ids[0]
|
|
892
892
|
gl_item["fin_bal_currency_id"] = fin_bal_currency_id
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
893
|
+
res.update(
|
|
894
|
+
{
|
|
895
|
+
"doc_ids": [wizard_id],
|
|
896
|
+
"doc_model": "general.ledger.report.wizard",
|
|
897
|
+
"docs": self.env["general.ledger.report.wizard"].browse(wizard_id),
|
|
898
|
+
"foreign_currency": data["foreign_currency"],
|
|
899
|
+
"company_name": company.display_name,
|
|
900
|
+
"company_currency": company.currency_id,
|
|
901
|
+
"currency_name": company.currency_id.name,
|
|
902
|
+
"date_from": data["date_from"],
|
|
903
|
+
"date_to": data["date_to"],
|
|
904
|
+
"only_posted_moves": data["only_posted_moves"],
|
|
905
|
+
"hide_account_at_0": data["hide_account_at_0"],
|
|
906
|
+
"show_cost_center": data["show_cost_center"],
|
|
907
|
+
"general_ledger": general_ledger,
|
|
908
|
+
"accounts_data": accounts_data,
|
|
909
|
+
"journals_data": journals_data,
|
|
910
|
+
"full_reconcile_data": full_reconcile_data,
|
|
911
|
+
"taxes_data": taxes_data,
|
|
912
|
+
"centralize": centralize,
|
|
913
|
+
"analytic_data": analytic_data,
|
|
914
|
+
"filter_partner_ids": True if partner_ids else False,
|
|
915
|
+
"currency_model": self.env["res.currency"],
|
|
916
|
+
}
|
|
917
|
+
)
|
|
918
|
+
return res
|
|
916
919
|
|
|
917
920
|
def _get_ml_fields(self):
|
|
918
921
|
return self.COMMON_ML_FIELDS + [
|
|
@@ -9,6 +9,7 @@ from odoo import models
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
class JournalLedgerReport(models.AbstractModel):
|
|
12
|
+
_inherit = "report.account_financial_report.abstract_report"
|
|
12
13
|
_name = "report.account_financial_report.journal_ledger"
|
|
13
14
|
_description = "Journal Ledger Report"
|
|
14
15
|
|
|
@@ -300,6 +301,7 @@ class JournalLedgerReport(models.AbstractModel):
|
|
|
300
301
|
return journals_taxes_data_2
|
|
301
302
|
|
|
302
303
|
def _get_report_values(self, docids, data):
|
|
304
|
+
res = super()._get_report_values(docids, data)
|
|
303
305
|
wizard_id = data["wizard_id"]
|
|
304
306
|
wizard = self.env["journal.ledger.report.wizard"].browse(wizard_id)
|
|
305
307
|
company = self.env["res.company"].browse(data["company_id"])
|
|
@@ -351,25 +353,28 @@ class JournalLedgerReport(models.AbstractModel):
|
|
|
351
353
|
if journal_id in journal_totals.keys():
|
|
352
354
|
for item in ["debit", "credit"]:
|
|
353
355
|
journal_ledger_data[item] += journal_totals[journal_id][item]
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
356
|
+
res.update(
|
|
357
|
+
{
|
|
358
|
+
"doc_ids": [wizard_id],
|
|
359
|
+
"doc_model": "journal.ledger.report.wizard",
|
|
360
|
+
"docs": self.env["journal.ledger.report.wizard"].browse(wizard_id),
|
|
361
|
+
"group_option": data["group_option"],
|
|
362
|
+
"foreign_currency": data["foreign_currency"],
|
|
363
|
+
"with_account_name": data["with_account_name"],
|
|
364
|
+
"company_name": company.display_name,
|
|
365
|
+
"currency_name": company.currency_id.name,
|
|
366
|
+
"date_from": data["date_from"],
|
|
367
|
+
"date_to": data["date_to"],
|
|
368
|
+
"move_target": data["move_target"],
|
|
369
|
+
"with_auto_sequence": data["with_auto_sequence"],
|
|
370
|
+
"account_ids_data": account_ids_data,
|
|
371
|
+
"partner_ids_data": partner_ids_data,
|
|
372
|
+
"currency_ids_data": currency_ids_data,
|
|
373
|
+
"move_ids_data": move_ids_data,
|
|
374
|
+
"tax_line_data": tax_line_ids_data,
|
|
375
|
+
"move_line_ids_taxes_data": move_line_ids_taxes_data,
|
|
376
|
+
"Journal_Ledgers": journal_ledgers_data,
|
|
377
|
+
"Moves": moves_data,
|
|
378
|
+
}
|
|
379
|
+
)
|
|
380
|
+
return res
|
|
@@ -159,7 +159,7 @@ class OpenItemsReport(models.AbstractModel):
|
|
|
159
159
|
"partner_name": partner.name or "",
|
|
160
160
|
"ref_label": ref_label,
|
|
161
161
|
"journal_id": move_line["journal_id"][0],
|
|
162
|
-
"move_name": move_line["
|
|
162
|
+
"move_name": move_line["move_name"],
|
|
163
163
|
"entry_id": move_line["move_id"][0],
|
|
164
164
|
"currency_id": move_line["currency_id"][0]
|
|
165
165
|
if move_line["currency_id"]
|
|
@@ -243,6 +243,7 @@ class OpenItemsReport(models.AbstractModel):
|
|
|
243
243
|
return new_open_items
|
|
244
244
|
|
|
245
245
|
def _get_report_values(self, docids, data):
|
|
246
|
+
res = super()._get_report_values(docids, data)
|
|
246
247
|
wizard_id = data["wizard_id"]
|
|
247
248
|
company = self.env["res.company"].browse(data["company_id"])
|
|
248
249
|
company_id = data["company_id"]
|
|
@@ -277,24 +278,27 @@ class OpenItemsReport(models.AbstractModel):
|
|
|
277
278
|
partners_data,
|
|
278
279
|
accounts_data,
|
|
279
280
|
)
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
281
|
+
res.update(
|
|
282
|
+
{
|
|
283
|
+
"doc_ids": [wizard_id],
|
|
284
|
+
"doc_model": "open.items.report.wizard",
|
|
285
|
+
"docs": self.env["open.items.report.wizard"].browse(wizard_id),
|
|
286
|
+
"foreign_currency": data["foreign_currency"],
|
|
287
|
+
"show_partner_details": data["show_partner_details"],
|
|
288
|
+
"company_name": company.display_name,
|
|
289
|
+
"currency_name": company.currency_id.name,
|
|
290
|
+
"date_at": date_at_object.strftime("%d/%m/%Y"),
|
|
291
|
+
"hide_account_at_0": data["hide_account_at_0"],
|
|
292
|
+
"target_move": data["target_move"],
|
|
293
|
+
"journals_data": journals_data,
|
|
294
|
+
"partners_data": partners_data,
|
|
295
|
+
"accounts_data": accounts_data,
|
|
296
|
+
"total_amount": total_amount,
|
|
297
|
+
"Open_Items": open_items_move_lines_data,
|
|
298
|
+
"grouped_by": grouped_by,
|
|
299
|
+
}
|
|
300
|
+
)
|
|
301
|
+
return res
|
|
298
302
|
|
|
299
303
|
def _get_ml_fields(self):
|
|
300
304
|
return self.COMMON_ML_FIELDS + [
|
|
@@ -306,4 +310,5 @@ class OpenItemsReport(models.AbstractModel):
|
|
|
306
310
|
"amount_residual_currency",
|
|
307
311
|
"debit",
|
|
308
312
|
"amount_currency",
|
|
313
|
+
"move_name",
|
|
309
314
|
]
|
|
@@ -463,12 +463,16 @@
|
|
|
463
463
|
res-model="account.move.line"
|
|
464
464
|
view-type="form"
|
|
465
465
|
>
|
|
466
|
-
<t
|
|
466
|
+
<t
|
|
467
|
+
t-out="limit_text(line['ref_label'], 'label_text_limit')"
|
|
468
|
+
/>
|
|
467
469
|
</span>
|
|
468
470
|
</t>
|
|
469
471
|
<t t-else="">
|
|
470
472
|
<span>
|
|
471
|
-
<t
|
|
473
|
+
<t
|
|
474
|
+
t-out="limit_text(line['ref_label'], 'label_text_limit')"
|
|
475
|
+
/>
|
|
472
476
|
</span>
|
|
473
477
|
</t>
|
|
474
478
|
</div>
|
|
@@ -263,7 +263,10 @@
|
|
|
263
263
|
/>
|
|
264
264
|
</div>
|
|
265
265
|
<div class="act_as_cell left" name="label">
|
|
266
|
-
<span
|
|
266
|
+
<span
|
|
267
|
+
t-if="move_line['label']"
|
|
268
|
+
t-esc="limit_text(move_line['label'], 'label_text_limit')"
|
|
269
|
+
/>
|
|
267
270
|
<span t-if="not move_line['label']">/</span>
|
|
268
271
|
</div>
|
|
269
272
|
<div class="act_as_cell left" name="taxes">
|
|
@@ -276,7 +279,7 @@
|
|
|
276
279
|
t-value="o._get_data_from_dict(move_line['move_line_id'], move_line_ids_taxes_data)"
|
|
277
280
|
/>
|
|
278
281
|
<span
|
|
279
|
-
t-esc="o._get_ml_tax_description(move_line, tax_line_dat, move_line_ids_taxes_dat)"
|
|
282
|
+
t-esc="limit_text(o._get_ml_tax_description(move_line, tax_line_dat, move_line_ids_taxes_dat), 'label_text_limit')"
|
|
280
283
|
/>
|
|
281
284
|
</div>
|
|
282
285
|
<div class="act_as_cell amount" name="debit">
|
|
@@ -858,6 +858,7 @@ class TrialBalanceReport(models.AbstractModel):
|
|
|
858
858
|
return groups_data
|
|
859
859
|
|
|
860
860
|
def _get_report_values(self, docids, data):
|
|
861
|
+
res = super()._get_report_values(docids, data)
|
|
861
862
|
show_partner_details = data["show_partner_details"]
|
|
862
863
|
wizard_id = data["wizard_id"]
|
|
863
864
|
company = self.env["res.company"].browse(data["company_id"])
|
|
@@ -952,29 +953,32 @@ class TrialBalanceReport(models.AbstractModel):
|
|
|
952
953
|
total_amount[account_id]["currency_name"] = accounts_data[
|
|
953
954
|
account_id
|
|
954
955
|
]["currency_name"]
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
956
|
+
res.update(
|
|
957
|
+
{
|
|
958
|
+
"doc_ids": [wizard_id],
|
|
959
|
+
"doc_model": "trial.balance.report.wizard",
|
|
960
|
+
"docs": self.env["trial.balance.report.wizard"].browse(wizard_id),
|
|
961
|
+
"foreign_currency": data["foreign_currency"],
|
|
962
|
+
"company_name": company.display_name,
|
|
963
|
+
"company_currency": company.currency_id,
|
|
964
|
+
"currency_name": company.currency_id.name,
|
|
965
|
+
"date_from": data["date_from"],
|
|
966
|
+
"date_to": data["date_to"],
|
|
967
|
+
"only_posted_moves": data["only_posted_moves"],
|
|
968
|
+
"hide_account_at_0": data["hide_account_at_0"],
|
|
969
|
+
"show_partner_details": data["show_partner_details"],
|
|
970
|
+
"limit_hierarchy_level": data["limit_hierarchy_level"],
|
|
971
|
+
"show_hierarchy": show_hierarchy,
|
|
972
|
+
"hide_parent_hierarchy_level": data["hide_parent_hierarchy_level"],
|
|
973
|
+
"trial_balance": trial_balance,
|
|
974
|
+
"trial_balance_grouped": trial_balance_grouped,
|
|
975
|
+
"total_amount": total_amount,
|
|
976
|
+
"total_amount_grouped": total_amount_grouped,
|
|
977
|
+
"accounts_data": accounts_data,
|
|
978
|
+
"partners_data": partners_data,
|
|
979
|
+
"show_hierarchy_level": show_hierarchy_level,
|
|
980
|
+
"currency_model": self.env["res.currency"],
|
|
981
|
+
"grouped_by": grouped_by,
|
|
982
|
+
}
|
|
983
|
+
)
|
|
984
|
+
return res
|
|
@@ -8,6 +8,7 @@ from odoo import api, models
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
class VATReport(models.AbstractModel):
|
|
11
|
+
_inherit = "report.account_financial_report.abstract_report"
|
|
11
12
|
_name = "report.account_financial_report.vat_report"
|
|
12
13
|
_description = "Vat Report Report"
|
|
13
14
|
|
|
@@ -201,6 +202,7 @@ class VATReport(models.AbstractModel):
|
|
|
201
202
|
return vat_report_list
|
|
202
203
|
|
|
203
204
|
def _get_report_values(self, docids, data):
|
|
205
|
+
res = super()._get_report_values(docids, data)
|
|
204
206
|
wizard_id = data["wizard_id"]
|
|
205
207
|
company = self.env["res.company"].browse(data["company_id"])
|
|
206
208
|
company_id = data["company_id"]
|
|
@@ -220,18 +222,21 @@ class VATReport(models.AbstractModel):
|
|
|
220
222
|
vat_report = self._get_vat_report_tag_data(
|
|
221
223
|
vat_report_data, tax_data, tax_detail
|
|
222
224
|
)
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
225
|
+
res.update(
|
|
226
|
+
{
|
|
227
|
+
"doc_ids": [wizard_id],
|
|
228
|
+
"doc_model": "vat.report.wizard",
|
|
229
|
+
"docs": self.env["vat.report.wizard"].browse(wizard_id),
|
|
230
|
+
"company_name": company.display_name,
|
|
231
|
+
"currency_name": company.currency_id.name,
|
|
232
|
+
"date_to": data["date_to"],
|
|
233
|
+
"date_from": data["date_from"],
|
|
234
|
+
"based_on": data["based_on"],
|
|
235
|
+
"tax_detail": data["tax_detail"],
|
|
236
|
+
"vat_report": vat_report,
|
|
237
|
+
}
|
|
238
|
+
)
|
|
239
|
+
return res
|
|
235
240
|
|
|
236
241
|
def _get_ml_fields_vat_report(self):
|
|
237
242
|
return [
|
|
@@ -372,7 +372,7 @@ ul.auto-toc {
|
|
|
372
372
|
!! This file is generated by oca-gen-addon-readme !!
|
|
373
373
|
!! changes will be overwritten. !!
|
|
374
374
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
375
|
-
!! source digest: sha256:
|
|
375
|
+
!! source digest: sha256:28b271586e6e9a5c8bb57d25d47843326c5618b35a53495fe6959bd47e5c1f12
|
|
376
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
377
377
|
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/account-financial-reporting/tree/18.0/account_financial_report"><img alt="OCA/account-financial-reporting" src="https://img.shields.io/badge/github-OCA%2Faccount--financial--reporting-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/account-financial-reporting-18-0/account-financial-reporting-18-0-account_financial_report"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/account-financial-reporting&target_branch=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
378
378
|
<p>This module adds a set of financial reports. They are accessible under
|
|
@@ -56,7 +56,7 @@ class TestAgedPartnerBalance(TransactionCase):
|
|
|
56
56
|
"""Check that report is produced correctly."""
|
|
57
57
|
wizard = self.wizard_with_line_details
|
|
58
58
|
wizard.onchange_type_accounts_only()
|
|
59
|
-
data = wizard.
|
|
59
|
+
data = wizard._prepare_report_data()
|
|
60
60
|
|
|
61
61
|
# Simulate web client behavior:
|
|
62
62
|
# default value is a datetime.date but web client sends back strings
|
|
@@ -71,7 +71,7 @@ class TestAgedPartnerBalance(TransactionCase):
|
|
|
71
71
|
self.assertTrue(result)
|
|
72
72
|
second_wizard = self.wizard_without_line_details
|
|
73
73
|
second_wizard.onchange_type_accounts_only()
|
|
74
|
-
data = second_wizard.
|
|
74
|
+
data = second_wizard._prepare_report_data()
|
|
75
75
|
|
|
76
76
|
# Simulate web client behavior:
|
|
77
77
|
# default value is a datetime.date but web client sends back strings
|
|
@@ -91,7 +91,7 @@ class TestAgedPartnerBalance(TransactionCase):
|
|
|
91
91
|
wizard.age_partner_config_id = self.account_age_report_config.id
|
|
92
92
|
|
|
93
93
|
wizard.onchange_type_accounts_only()
|
|
94
|
-
data = wizard.
|
|
94
|
+
data = wizard._prepare_report_data()
|
|
95
95
|
|
|
96
96
|
# Simulate web client behavior:
|
|
97
97
|
# default value is a datetime.date but web client sends back strings
|
|
@@ -109,7 +109,7 @@ class TestAgedPartnerBalance(TransactionCase):
|
|
|
109
109
|
second_wizard.age_partner_config_id = self.account_age_report_config.id
|
|
110
110
|
|
|
111
111
|
second_wizard.onchange_type_accounts_only()
|
|
112
|
-
data = second_wizard.
|
|
112
|
+
data = second_wizard._prepare_report_data()
|
|
113
113
|
|
|
114
114
|
# Simulate web client behavior:
|
|
115
115
|
# default value is a datetime.date but web client sends back strings
|
|
@@ -118,7 +118,7 @@ class TestGeneralLedgerReport(AccountTestInvoicingCommon):
|
|
|
118
118
|
"centralize": centralize,
|
|
119
119
|
}
|
|
120
120
|
)
|
|
121
|
-
data = general_ledger.
|
|
121
|
+
data = general_ledger._prepare_report_data()
|
|
122
122
|
res_data = self.env[
|
|
123
123
|
"report.account_financial_report.general_ledger"
|
|
124
124
|
]._get_report_values(general_ledger, data)
|
|
@@ -176,7 +176,7 @@ class TestJournalReport(AccountTestInvoicingCommon):
|
|
|
176
176
|
"move_target": "all",
|
|
177
177
|
}
|
|
178
178
|
)
|
|
179
|
-
data = wiz.
|
|
179
|
+
data = wiz._prepare_report_data()
|
|
180
180
|
res_data = self.JournalLedgerReport._get_report_values(wiz, data)
|
|
181
181
|
self.check_report_journal_debit_credit(res_data, 100, 100)
|
|
182
182
|
|
|
@@ -185,7 +185,7 @@ class TestJournalReport(AccountTestInvoicingCommon):
|
|
|
185
185
|
res_data = self.JournalLedgerReport._get_report_values(wiz, data)
|
|
186
186
|
self.check_report_journal_debit_credit(res_data, 200, 200)
|
|
187
187
|
wiz.move_target = "posted"
|
|
188
|
-
data = wiz.
|
|
188
|
+
data = wiz._prepare_report_data()
|
|
189
189
|
res_data = self.JournalLedgerReport._get_report_values(wiz, data)
|
|
190
190
|
self.check_report_journal_debit_credit(res_data, 0, 0)
|
|
191
191
|
|
|
@@ -202,7 +202,7 @@ class TestJournalReport(AccountTestInvoicingCommon):
|
|
|
202
202
|
self.check_report_journal_debit_credit(res_data, 200, 200)
|
|
203
203
|
|
|
204
204
|
wiz.date_from = self.previous_fy_date_start
|
|
205
|
-
data = wiz.
|
|
205
|
+
data = wiz._prepare_report_data()
|
|
206
206
|
res_data = self.JournalLedgerReport._get_report_values(wiz, data)
|
|
207
207
|
self.check_report_journal_debit_credit(res_data, 300, 300)
|
|
208
208
|
|
|
@@ -237,7 +237,7 @@ class TestJournalReport(AccountTestInvoicingCommon):
|
|
|
237
237
|
"move_target": "all",
|
|
238
238
|
}
|
|
239
239
|
)
|
|
240
|
-
data = wiz.
|
|
240
|
+
data = wiz._prepare_report_data()
|
|
241
241
|
res_data = self.JournalLedgerReport._get_report_values(wiz, data)
|
|
242
242
|
self.check_report_journal_debit_credit(res_data, 250, 250)
|
|
243
243
|
self.check_report_journal_debit_credit_taxes(res_data, 0, 300, 0, 50)
|
|
@@ -275,7 +275,7 @@ class TestJournalReport(AccountTestInvoicingCommon):
|
|
|
275
275
|
"move_target": "all",
|
|
276
276
|
}
|
|
277
277
|
)
|
|
278
|
-
data = wiz.
|
|
278
|
+
data = wiz._prepare_report_data()
|
|
279
279
|
res_data = self.JournalLedgerReport._get_report_values(wiz, data)
|
|
280
280
|
|
|
281
281
|
self.check_report_journal_debit_credit(res_data, 250, 250)
|
|
@@ -188,7 +188,7 @@ class TestTrialBalanceReport(AccountTestInvoicingCommon):
|
|
|
188
188
|
"show_partner_details": with_partners,
|
|
189
189
|
}
|
|
190
190
|
)
|
|
191
|
-
data = trial_balance.
|
|
191
|
+
data = trial_balance._prepare_report_data()
|
|
192
192
|
res_data = self.env[
|
|
193
193
|
"report.account_financial_report.trial_balance"
|
|
194
194
|
]._get_report_values(trial_balance, data)
|
|
@@ -543,7 +543,7 @@ class TestTrialBalanceReport(AccountTestInvoicingCommon):
|
|
|
543
543
|
"fy_start_date": self.fy_date_start,
|
|
544
544
|
}
|
|
545
545
|
)
|
|
546
|
-
data = trial_balance.
|
|
546
|
+
data = trial_balance._prepare_report_data()
|
|
547
547
|
res_data = self.env[
|
|
548
548
|
"report.account_financial_report.trial_balance"
|
|
549
549
|
]._get_report_values(trial_balance, data)
|
|
@@ -596,7 +596,7 @@ class TestTrialBalanceReport(AccountTestInvoicingCommon):
|
|
|
596
596
|
"fy_start_date": self.fy_date_start,
|
|
597
597
|
}
|
|
598
598
|
)
|
|
599
|
-
data = trial_balance.
|
|
599
|
+
data = trial_balance._prepare_report_data()
|
|
600
600
|
res_data = self.env[
|
|
601
601
|
"report.account_financial_report.trial_balance"
|
|
602
602
|
]._get_report_values(trial_balance, data)
|
|
@@ -650,7 +650,7 @@ class TestTrialBalanceReport(AccountTestInvoicingCommon):
|
|
|
650
650
|
"fy_start_date": self.fy_date_start,
|
|
651
651
|
}
|
|
652
652
|
)
|
|
653
|
-
data = trial_balance.
|
|
653
|
+
data = trial_balance._prepare_report_data()
|
|
654
654
|
res_data = self.env[
|
|
655
655
|
"report.account_financial_report.trial_balance"
|
|
656
656
|
]._get_report_values(trial_balance, data)
|
|
@@ -217,7 +217,7 @@ class TestVATReport(AccountTestInvoicingCommon):
|
|
|
217
217
|
"tax_detail": True,
|
|
218
218
|
}
|
|
219
219
|
)
|
|
220
|
-
data = vat_report.
|
|
220
|
+
data = vat_report._prepare_report_data()
|
|
221
221
|
res_data = self.env[
|
|
222
222
|
"report.account_financial_report.vat_report"
|
|
223
223
|
]._get_report_values(vat_report, data)
|
|
@@ -34,18 +34,41 @@ class AbstractWizard(models.AbstractModel):
|
|
|
34
34
|
required=False,
|
|
35
35
|
string="Company",
|
|
36
36
|
)
|
|
37
|
+
label_text_limit = fields.Integer(default=40)
|
|
37
38
|
|
|
38
39
|
def button_export_html(self):
|
|
39
40
|
self.ensure_one()
|
|
41
|
+
self._set_default_wizard_values()
|
|
40
42
|
report_type = "qweb-html"
|
|
41
43
|
return self._export(report_type)
|
|
42
44
|
|
|
43
45
|
def button_export_pdf(self):
|
|
44
46
|
self.ensure_one()
|
|
47
|
+
self._set_default_wizard_values()
|
|
45
48
|
report_type = "qweb-pdf"
|
|
46
49
|
return self._export(report_type)
|
|
47
50
|
|
|
48
51
|
def button_export_xlsx(self):
|
|
49
52
|
self.ensure_one()
|
|
53
|
+
self._set_default_wizard_values()
|
|
50
54
|
report_type = "xlsx"
|
|
51
55
|
return self._export(report_type)
|
|
56
|
+
|
|
57
|
+
def _limit_text(self, value, limit_field="label_text_limit"):
|
|
58
|
+
limit = self[limit_field]
|
|
59
|
+
if value and limit and len(value) > limit:
|
|
60
|
+
value = value[:limit] + "..."
|
|
61
|
+
return value
|
|
62
|
+
|
|
63
|
+
def _prepare_report_data(self):
|
|
64
|
+
self.ensure_one()
|
|
65
|
+
return {"wizard_name": self._name, "wizard_id": self.id}
|
|
66
|
+
|
|
67
|
+
def _set_default_wizard_values(self):
|
|
68
|
+
self.env["ir.default"].set(
|
|
69
|
+
self._name,
|
|
70
|
+
"label_text_limit",
|
|
71
|
+
self.label_text_limit,
|
|
72
|
+
user_id=False,
|
|
73
|
+
company_id=True,
|
|
74
|
+
)
|
|
@@ -119,7 +119,7 @@ class AgedPartnerBalanceWizard(models.TransientModel):
|
|
|
119
119
|
|
|
120
120
|
def _print_report(self, report_type):
|
|
121
121
|
self.ensure_one()
|
|
122
|
-
data = self.
|
|
122
|
+
data = self._prepare_report_data()
|
|
123
123
|
if report_type == "xlsx":
|
|
124
124
|
report_name = "a_f_r.report_aged_partner_balance_xlsx"
|
|
125
125
|
else:
|
|
@@ -134,6 +134,7 @@ class AgedPartnerBalanceWizard(models.TransientModel):
|
|
|
134
134
|
)
|
|
135
135
|
|
|
136
136
|
def _prepare_report_aged_partner_balance(self):
|
|
137
|
+
# TODO: Kept for compatibility - To be merged into _prepare_report_data in 19
|
|
137
138
|
self.ensure_one()
|
|
138
139
|
return {
|
|
139
140
|
"wizard_id": self.id,
|
|
@@ -148,6 +149,11 @@ class AgedPartnerBalanceWizard(models.TransientModel):
|
|
|
148
149
|
"age_partner_config_id": self.age_partner_config_id.id,
|
|
149
150
|
}
|
|
150
151
|
|
|
152
|
+
def _prepare_report_data(self):
|
|
153
|
+
res = super()._prepare_report_data()
|
|
154
|
+
res.update(self._prepare_report_aged_partner_balance())
|
|
155
|
+
return res
|
|
156
|
+
|
|
151
157
|
def _export(self, report_type):
|
|
152
158
|
"""Default export is PDF."""
|
|
153
159
|
return self._print_report(report_type)
|
|
@@ -273,7 +273,7 @@ class GeneralLedgerReportWizard(models.TransientModel):
|
|
|
273
273
|
|
|
274
274
|
def _print_report(self, report_type):
|
|
275
275
|
self.ensure_one()
|
|
276
|
-
data = self.
|
|
276
|
+
data = self._prepare_report_data()
|
|
277
277
|
if report_type == "xlsx":
|
|
278
278
|
report_name = "a_f_r.report_general_ledger_xlsx"
|
|
279
279
|
else:
|
|
@@ -288,6 +288,7 @@ class GeneralLedgerReportWizard(models.TransientModel):
|
|
|
288
288
|
)
|
|
289
289
|
|
|
290
290
|
def _prepare_report_general_ledger(self):
|
|
291
|
+
# TODO: Kept for compatibility - To be merged into _prepare_report_data in 19
|
|
291
292
|
self.ensure_one()
|
|
292
293
|
return {
|
|
293
294
|
"wizard_id": self.id,
|
|
@@ -310,6 +311,11 @@ class GeneralLedgerReportWizard(models.TransientModel):
|
|
|
310
311
|
"domain": self._get_account_move_lines_domain(),
|
|
311
312
|
}
|
|
312
313
|
|
|
314
|
+
def _prepare_report_data(self):
|
|
315
|
+
res = super()._prepare_report_data()
|
|
316
|
+
res.update(self._prepare_report_general_ledger())
|
|
317
|
+
return res
|
|
318
|
+
|
|
313
319
|
def _export(self, report_type):
|
|
314
320
|
"""Default export is PDF."""
|
|
315
321
|
return self._print_report(report_type)
|
|
@@ -79,7 +79,7 @@ class JournalLedgerReportWizard(models.TransientModel):
|
|
|
79
79
|
|
|
80
80
|
def _print_report(self, report_type):
|
|
81
81
|
self.ensure_one()
|
|
82
|
-
data = self.
|
|
82
|
+
data = self._prepare_report_data()
|
|
83
83
|
if report_type == "xlsx":
|
|
84
84
|
report_name = "a_f_r.report_journal_ledger_xlsx"
|
|
85
85
|
else:
|
|
@@ -94,6 +94,7 @@ class JournalLedgerReportWizard(models.TransientModel):
|
|
|
94
94
|
)
|
|
95
95
|
|
|
96
96
|
def _prepare_report_journal_ledger(self):
|
|
97
|
+
# TODO: Kept for compatibility - To be merged into _prepare_report_data in 19
|
|
97
98
|
self.ensure_one()
|
|
98
99
|
journals = self.journal_ids
|
|
99
100
|
if not journals:
|
|
@@ -116,6 +117,11 @@ class JournalLedgerReportWizard(models.TransientModel):
|
|
|
116
117
|
"with_auto_sequence": self.with_auto_sequence,
|
|
117
118
|
}
|
|
118
119
|
|
|
120
|
+
def _prepare_report_data(self):
|
|
121
|
+
res = super()._prepare_report_data()
|
|
122
|
+
res.update(self._prepare_report_journal_ledger())
|
|
123
|
+
return res
|
|
124
|
+
|
|
119
125
|
def _export(self, report_type):
|
|
120
126
|
"""Default export is PDF."""
|
|
121
127
|
self.ensure_one()
|
|
@@ -153,7 +153,7 @@ class OpenItemsReportWizard(models.TransientModel):
|
|
|
153
153
|
|
|
154
154
|
def _print_report(self, report_type):
|
|
155
155
|
self.ensure_one()
|
|
156
|
-
data = self.
|
|
156
|
+
data = self._prepare_report_data()
|
|
157
157
|
if report_type == "xlsx":
|
|
158
158
|
report_name = "a_f_r.report_open_items_xlsx"
|
|
159
159
|
else:
|
|
@@ -168,6 +168,7 @@ class OpenItemsReportWizard(models.TransientModel):
|
|
|
168
168
|
)
|
|
169
169
|
|
|
170
170
|
def _prepare_report_open_items(self):
|
|
171
|
+
# TODO: Kept for compatibility - To be merged into _prepare_report_data in 19
|
|
171
172
|
self.ensure_one()
|
|
172
173
|
return {
|
|
173
174
|
"wizard_id": self.id,
|
|
@@ -185,5 +186,10 @@ class OpenItemsReportWizard(models.TransientModel):
|
|
|
185
186
|
"grouped_by": self.grouped_by,
|
|
186
187
|
}
|
|
187
188
|
|
|
189
|
+
def _prepare_report_data(self):
|
|
190
|
+
res = super()._prepare_report_data()
|
|
191
|
+
res.update(self._prepare_report_open_items())
|
|
192
|
+
return res
|
|
193
|
+
|
|
188
194
|
def _export(self, report_type):
|
|
189
195
|
return self._print_report(report_type)
|
|
@@ -241,7 +241,7 @@ class TrialBalanceReportWizard(models.TransientModel):
|
|
|
241
241
|
|
|
242
242
|
def _print_report(self, report_type):
|
|
243
243
|
self.ensure_one()
|
|
244
|
-
data = self.
|
|
244
|
+
data = self._prepare_report_data()
|
|
245
245
|
if report_type == "xlsx":
|
|
246
246
|
report_name = "a_f_r.report_trial_balance_xlsx"
|
|
247
247
|
else:
|
|
@@ -256,6 +256,7 @@ class TrialBalanceReportWizard(models.TransientModel):
|
|
|
256
256
|
)
|
|
257
257
|
|
|
258
258
|
def _prepare_report_trial_balance(self):
|
|
259
|
+
# TODO: Kept for compatibility - To be merged into _prepare_report_data in 19
|
|
259
260
|
self.ensure_one()
|
|
260
261
|
return {
|
|
261
262
|
"wizard_id": self.id,
|
|
@@ -279,6 +280,11 @@ class TrialBalanceReportWizard(models.TransientModel):
|
|
|
279
280
|
"grouped_by": self.grouped_by,
|
|
280
281
|
}
|
|
281
282
|
|
|
283
|
+
def _prepare_report_data(self):
|
|
284
|
+
res = super()._prepare_report_data()
|
|
285
|
+
res.update(self._prepare_report_trial_balance())
|
|
286
|
+
return res
|
|
287
|
+
|
|
282
288
|
def _export(self, report_type):
|
|
283
289
|
"""Default export is PDF."""
|
|
284
290
|
return self._print_report(report_type)
|
|
@@ -68,7 +68,7 @@ class VATReportWizard(models.TransientModel):
|
|
|
68
68
|
|
|
69
69
|
def _print_report(self, report_type):
|
|
70
70
|
self.ensure_one()
|
|
71
|
-
data = self.
|
|
71
|
+
data = self._prepare_report_data()
|
|
72
72
|
if report_type == "xlsx":
|
|
73
73
|
report_name = "a_f_r.report_vat_report_xlsx"
|
|
74
74
|
else:
|
|
@@ -83,6 +83,7 @@ class VATReportWizard(models.TransientModel):
|
|
|
83
83
|
)
|
|
84
84
|
|
|
85
85
|
def _prepare_vat_report(self):
|
|
86
|
+
# TODO: Kept for compatibility - To be merged into _prepare_report_data in 19
|
|
86
87
|
self.ensure_one()
|
|
87
88
|
return {
|
|
88
89
|
"wizard_id": self.id,
|
|
@@ -95,6 +96,11 @@ class VATReportWizard(models.TransientModel):
|
|
|
95
96
|
"account_financial_report_lang": self.env.lang,
|
|
96
97
|
}
|
|
97
98
|
|
|
99
|
+
def _prepare_report_data(self):
|
|
100
|
+
res = super()._prepare_report_data()
|
|
101
|
+
res.update(self._prepare_vat_report())
|
|
102
|
+
return res
|
|
103
|
+
|
|
98
104
|
def _export(self, report_type):
|
|
99
105
|
"""Default export is PDF."""
|
|
100
106
|
return self._print_report(report_type)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-account_financial_report
|
|
3
|
-
Version: 18.0.1.
|
|
3
|
+
Version: 18.0.1.4.0
|
|
4
4
|
Requires-Python: >=3.10
|
|
5
5
|
Requires-Dist: odoo-addon-date_range==18.0.*
|
|
6
6
|
Requires-Dist: odoo-addon-report_xlsx==18.0.*
|
|
@@ -29,7 +29,7 @@ Account Financial Reports
|
|
|
29
29
|
!! This file is generated by oca-gen-addon-readme !!
|
|
30
30
|
!! changes will be overwritten. !!
|
|
31
31
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
32
|
-
!! source digest: sha256:
|
|
32
|
+
!! source digest: sha256:28b271586e6e9a5c8bb57d25d47843326c5618b35a53495fe6959bd47e5c1f12
|
|
33
33
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
34
34
|
|
|
35
35
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
odoo/addons/account_financial_report/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_financial_report/README.rst,sha256=8ulrr-KZ3RVR5-1aDPY27oyjsZIb2AUAiddXkYS4gyY,7308
|
|
2
2
|
odoo/addons/account_financial_report/__init__.py,sha256=YoL8hk5QxSifbFJL7gPzpOSk-3zB1OSHJBXyZK25G6Q,187
|
|
3
|
-
odoo/addons/account_financial_report/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/account_financial_report/__manifest__.py,sha256=f6D5mHXa0GC92z5VGV-W9cvwPrDm4P5BE57sb31sFTE,2061
|
|
4
4
|
odoo/addons/account_financial_report/menuitems.xml,sha256=k20N6cNRlDsnPhc378MVs7jwzJhbbJQ2k-P3WdsmF_M,1206
|
|
5
5
|
odoo/addons/account_financial_report/reports.xml,sha256=c2KamS250rNzHUInjNwC0G2dhwiIqtYgbked51PtmVw,9254
|
|
6
|
-
odoo/addons/account_financial_report/i18n/account_financial_report.pot,sha256=
|
|
6
|
+
odoo/addons/account_financial_report/i18n/account_financial_report.pot,sha256=rdtKoRevFdZiWM1ypUavNfUDIdNltH-GDJVJmtC9wQE,81600
|
|
7
7
|
odoo/addons/account_financial_report/i18n/ar.po,sha256=E1eDmSEVqU-mr_NBOrsu6lROj2gmsTXBxQkRFhEKt6M,94787
|
|
8
8
|
odoo/addons/account_financial_report/i18n/ca.po,sha256=X3bG7ifk0QocGky8JPs-GTrAGeB_qCBd3ZnwS_xlkok,87266
|
|
9
9
|
odoo/addons/account_financial_report/i18n/de.po,sha256=fJaa2VrFWcV7Wo9hRQaaK8hKgb0-DRB1N8J0TLmjW9k,93154
|
|
@@ -37,31 +37,31 @@ odoo/addons/account_financial_report/readme/DESCRIPTION.md,sha256=4mWyU68JKCXDnf
|
|
|
37
37
|
odoo/addons/account_financial_report/readme/HISTORY.md,sha256=5PzKD9lPwX_nKEaZRwGYea4Q0sXJy2dEbRUBUSYwAMg,473
|
|
38
38
|
odoo/addons/account_financial_report/readme/ROADMAP.md,sha256=kZqiEvRk8A3A47ZIh-OiAtqgaPpxO6ul0P60oCEg8Qg,360
|
|
39
39
|
odoo/addons/account_financial_report/report/__init__.py,sha256=D-L2gAu6aAsGo9YtxVH14sulDEPHK0CEy7A2kTwewTE,618
|
|
40
|
-
odoo/addons/account_financial_report/report/abstract_report.py,sha256=
|
|
40
|
+
odoo/addons/account_financial_report/report/abstract_report.py,sha256=cGBQvS659qn4Mm1o2GTqk_ywZeHM6ESCuCWCgN97GSY,6208
|
|
41
41
|
odoo/addons/account_financial_report/report/abstract_report_xlsx.py,sha256=QXkTf9MgAsTEvht73di6LrXeIRBeoZsBTNDS8Oj6tA0,29900
|
|
42
|
-
odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=
|
|
42
|
+
odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=svGiiNEqf_eESmM6MRBu_OI6pKcbe-Gnt2__iMSpsK0,20006
|
|
43
43
|
odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py,sha256=U5X3ajFLlWlD-WqxTBsjLa1TdntImyVIgrMBpvOiBkY,14525
|
|
44
|
-
odoo/addons/account_financial_report/report/general_ledger.py,sha256=
|
|
44
|
+
odoo/addons/account_financial_report/report/general_ledger.py,sha256=1rhpyeEYCuji9TLjxOo8sNbB4Ja8ErpwbJC7Z5t75iE,37954
|
|
45
45
|
odoo/addons/account_financial_report/report/general_ledger_xlsx.py,sha256=PlLj8FMiFRIbniLzMzvaN-p2HUAr7KnJZktRnOpYO24,17553
|
|
46
|
-
odoo/addons/account_financial_report/report/journal_ledger.py,sha256=
|
|
46
|
+
odoo/addons/account_financial_report/report/journal_ledger.py,sha256=6PvTwbLYgPxHqniQX_tvN0nRQCgTYLx5LCiQfDFEdVc,15715
|
|
47
47
|
odoo/addons/account_financial_report/report/journal_ledger_xlsx.py,sha256=gqulSBNfZY5chQFbBxXLUa1I11AlY_NbaIz3lHDeF70,10060
|
|
48
|
-
odoo/addons/account_financial_report/report/open_items.py,sha256=
|
|
48
|
+
odoo/addons/account_financial_report/report/open_items.py,sha256=35XqBgTk96O0TULNUdeC0PEXZ6hsBw3MvMtcjSpmhE8,12749
|
|
49
49
|
odoo/addons/account_financial_report/report/open_items_xlsx.py,sha256=U2mzYDK_GxECJw2B45YhtJfJEQ_M35_snodnaLABKqQ,14931
|
|
50
|
-
odoo/addons/account_financial_report/report/trial_balance.py,sha256=
|
|
50
|
+
odoo/addons/account_financial_report/report/trial_balance.py,sha256=kk84XUnadAHcqD9c14ktqK-_RfYRiSjhQBQEOq-G4DU,42598
|
|
51
51
|
odoo/addons/account_financial_report/report/trial_balance_xlsx.py,sha256=HqSKYcDwqeTcTYHRju7RvR410VjYnOy5vE78bHEWkQs,13246
|
|
52
|
-
odoo/addons/account_financial_report/report/vat_report.py,sha256=
|
|
52
|
+
odoo/addons/account_financial_report/report/vat_report.py,sha256=pCM9IrE0xmvICp1riV44UC_7WrkVJmxEFOYby7lwjz0,10459
|
|
53
53
|
odoo/addons/account_financial_report/report/vat_report_xlsx.py,sha256=movkNhEiNi3kGlBf2VEmxxWKuqW_fzqM_QKOXw04ppU,2307
|
|
54
54
|
odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml,sha256=LQzls20HTACZzucMI4ssvi7hJpDbZbYWjCZAA_8J6Hw,40970
|
|
55
|
-
odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=
|
|
56
|
-
odoo/addons/account_financial_report/report/templates/journal_ledger.xml,sha256=
|
|
55
|
+
odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=BjWzycMagDQJwka1nXgvMskp_CtuoDV7Njeri9SzblM,39674
|
|
56
|
+
odoo/addons/account_financial_report/report/templates/journal_ledger.xml,sha256=jTxHgZZFvOaS-5Cu03nZSEy8TuT_P5_Dcp4kqcVF_kw,21339
|
|
57
57
|
odoo/addons/account_financial_report/report/templates/layouts.xml,sha256=EDBF0KpmyUzYODauhSIU1QL3zFYjlg3Ynq41K30WqgY,1575
|
|
58
|
-
odoo/addons/account_financial_report/report/templates/open_items.xml,sha256=
|
|
58
|
+
odoo/addons/account_financial_report/report/templates/open_items.xml,sha256=Ozy2w7v1HJYNALI-vXym-y2bbk7HER561B_uB3t3BXg,21972
|
|
59
59
|
odoo/addons/account_financial_report/report/templates/trial_balance.xml,sha256=fOtCCMMvAq7vQpEV0_51O6-YRQHjV9sWbB3NbkYJtYw,53287
|
|
60
60
|
odoo/addons/account_financial_report/report/templates/vat_report.xml,sha256=2WeL6Njr8LFBtERKmfyi3IH-J1frSO4Gpew-ruzuWNk,8128
|
|
61
61
|
odoo/addons/account_financial_report/security/ir.model.access.csv,sha256=S1VQLLwLeaOeAMYGqtoOqHUaZVrvDUVE4Z-0-SRjSGQ,1134
|
|
62
62
|
odoo/addons/account_financial_report/security/security.xml,sha256=YQCXbOuTGHCWGYwGnXMie_0tnWG5zYJGdoeey3o1xaw,382
|
|
63
63
|
odoo/addons/account_financial_report/static/description/icon.png,sha256=WW-eOIjW5-jo7tgBieNv6K2DUKMoHFSVctnp0htstHI,15230
|
|
64
|
-
odoo/addons/account_financial_report/static/description/index.html,sha256=
|
|
64
|
+
odoo/addons/account_financial_report/static/description/index.html,sha256=tMOQcz1k4TfeD2C6lm3P3gVma4oCbjMFcW45FYinWQU,20640
|
|
65
65
|
odoo/addons/account_financial_report/static/src/css/report.css,sha256=UYlrKHXNvw3lcwlaTVNCxSQyMDi0JrizZjn4fS5cirw,2354
|
|
66
66
|
odoo/addons/account_financial_report/static/src/css/report_html.css,sha256=WO4wfg0-z87dAqLlqz1LuA_rBizNjlGnCUCeMzSSSYs,149
|
|
67
67
|
odoo/addons/account_financial_report/static/src/js/report.esm.js,sha256=bJcyov25ktGuF-eT_SUGkRLudz-6UNnKR0gmv3e-ZYc,2495
|
|
@@ -69,12 +69,12 @@ odoo/addons/account_financial_report/static/src/js/report_action.esm.js,sha256=Q
|
|
|
69
69
|
odoo/addons/account_financial_report/static/src/xml/report.xml,sha256=b0CFMw4g3KVeRFHRQjm6ujNxv7PtZS101dJrHArQUaw,496
|
|
70
70
|
odoo/addons/account_financial_report/tests/__init__.py,sha256=cbhcI5XU9FQX7eC4KT0dR7FEUAUbPuWAi1qBltppaXs,351
|
|
71
71
|
odoo/addons/account_financial_report/tests/test_age_report_configuration.py,sha256=YRe_xyrN3FTKBsEpTMPrMJFLb40gfk6aiOaSZz7BoXs,1423
|
|
72
|
-
odoo/addons/account_financial_report/tests/test_aged_partner_balance.py,sha256=
|
|
73
|
-
odoo/addons/account_financial_report/tests/test_general_ledger.py,sha256=
|
|
74
|
-
odoo/addons/account_financial_report/tests/test_journal_ledger.py,sha256=
|
|
75
|
-
odoo/addons/account_financial_report/tests/test_open_items.py,sha256=
|
|
76
|
-
odoo/addons/account_financial_report/tests/test_trial_balance.py,sha256=
|
|
77
|
-
odoo/addons/account_financial_report/tests/test_vat_report.py,sha256=
|
|
72
|
+
odoo/addons/account_financial_report/tests/test_aged_partner_balance.py,sha256=ZfzXRFGWBpSr2-fEuqSL8Q2jKZ80eUVUbfYCCjjh_0s,4520
|
|
73
|
+
odoo/addons/account_financial_report/tests/test_general_ledger.py,sha256=2HT6Eb22bZhP4pMX8xNxuL_S2nhImNjeWwiGP6qob0s,29104
|
|
74
|
+
odoo/addons/account_financial_report/tests/test_journal_ledger.py,sha256=pGUUHSXUVDh0SzeLPa0x3yrDFye0qq3Ch7tuxG_xvLw,11013
|
|
75
|
+
odoo/addons/account_financial_report/tests/test_open_items.py,sha256=8Olb-BzRCQ5jNgAGDAczI30HsG5iRLxS5QX4DZv3Kyo,2474
|
|
76
|
+
odoo/addons/account_financial_report/tests/test_trial_balance.py,sha256=Eseo_D3fzNbSXS6fF5l2ADZKGUMsMAOfu2Kw2Ox4Edw,27632
|
|
77
|
+
odoo/addons/account_financial_report/tests/test_vat_report.py,sha256=OH-Cmrw3KdWxEMV-_h9zmK8FByvMvbykqTKoqa78K08,14618
|
|
78
78
|
odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml,sha256=etQ_Do0Fz251A73gnWiM7lyCMKGiozIT1aU10vTs27Q,1764
|
|
79
79
|
odoo/addons/account_financial_report/view/account_view.xml,sha256=9KKmGXEEvyUygmVrWIR3rvqJICCHvbGayGwZ40tI1iA,534
|
|
80
80
|
odoo/addons/account_financial_report/view/report_aged_partner_balance.xml,sha256=EUjo6LxHznk2wdKQCO9VR83YzPLAEFZ7DeiaHmtxvQQ,341
|
|
@@ -85,20 +85,20 @@ odoo/addons/account_financial_report/view/report_trial_balance.xml,sha256=QRzD5Z
|
|
|
85
85
|
odoo/addons/account_financial_report/view/report_vat_report.xml,sha256=Bc4DAlUg_g92GUgCRsLoC9Lf0yzfm6sh_ZrPtVACywA,321
|
|
86
86
|
odoo/addons/account_financial_report/view/res_config_settings_views.xml,sha256=ys8UruOoY09d4nNYIB9rrW8cnOwl1YfB3r8ifvA3t2Q,2514
|
|
87
87
|
odoo/addons/account_financial_report/wizard/__init__.py,sha256=5lngmjx-Vz-5k9nPILd25_1oVKKhUHnYhjAOMgdQHPY,243
|
|
88
|
-
odoo/addons/account_financial_report/wizard/abstract_wizard.py,sha256=
|
|
89
|
-
odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py,sha256=
|
|
88
|
+
odoo/addons/account_financial_report/wizard/abstract_wizard.py,sha256=XyRzzc1ZCqsjBXSIY8XZXLXKYXPmBc3fHWPReuH9b8M,2339
|
|
89
|
+
odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py,sha256=rNxkqA8xb2zvZJAL_fKs8cjDMPPb3xyN6wDHEcTfRRs,6211
|
|
90
90
|
odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml,sha256=P4y5oItOq_1xovOhpjCU-9JzIvT2HH00tXWYFmMhnMo,3996
|
|
91
|
-
odoo/addons/account_financial_report/wizard/general_ledger_wizard.py,sha256=
|
|
92
|
-
odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml,sha256=
|
|
93
|
-
odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py,sha256=
|
|
94
|
-
odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml,sha256=
|
|
95
|
-
odoo/addons/account_financial_report/wizard/open_items_wizard.py,sha256=
|
|
96
|
-
odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml,sha256=
|
|
97
|
-
odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256
|
|
91
|
+
odoo/addons/account_financial_report/wizard/general_ledger_wizard.py,sha256=wsDPPWIsrzZJeSi4FyIsy8SDaasQQFN52tS4Kmy2SGQ,12662
|
|
92
|
+
odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml,sha256=xRoVIXJ1_byPYaFUdqjFrf2LQ529bXUMmvIMbRBvDPs,7733
|
|
93
|
+
odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py,sha256=V0zq7bdeG2hPvCM3mwo6yR33BsNalrDTLeg_i1wEM0M,5888
|
|
94
|
+
odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml,sha256=cWo2BZC_dx8skBwMXB7casHgyjzJayvWf3hEwDt0HQY,2959
|
|
95
|
+
odoo/addons/account_financial_report/wizard/open_items_wizard.py,sha256=_idJAi8sZpael5k2QoOpNSMycxgurKgbRrR1ZRho9v4,7637
|
|
96
|
+
odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml,sha256=iZgKSgzl7x9uKVglaMYjzTVqyfMBZownJtosdgLPBU0,4743
|
|
97
|
+
odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256=-DIfzTthL3YHCMLP7kpCi5Xj5aOe9LClKCssuEfBycc,11537
|
|
98
98
|
odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml,sha256=aHKMVPiQUfrpfUT0sojCfLUG38Am0DuEZSOHTPTof3k,7221
|
|
99
|
-
odoo/addons/account_financial_report/wizard/vat_report_wizard.py,sha256=
|
|
99
|
+
odoo/addons/account_financial_report/wizard/vat_report_wizard.py,sha256=00mjuhWSDeckkS7RF_nRAPQUkPcxVuqZ6Oc4z6Z7zEU,3665
|
|
100
100
|
odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml,sha256=3cJ0it2_5w20iw5x8QtTp11HoBk5kqQup6XjgJMbv7U,2274
|
|
101
|
-
odoo_addon_account_financial_report-18.0.1.
|
|
102
|
-
odoo_addon_account_financial_report-18.0.1.
|
|
103
|
-
odoo_addon_account_financial_report-18.0.1.
|
|
104
|
-
odoo_addon_account_financial_report-18.0.1.
|
|
101
|
+
odoo_addon_account_financial_report-18.0.1.4.0.dist-info/METADATA,sha256=N10L3Wjko9jKB0a0pNcYmWrEuQToUA_brBFmIZoxBSA,7994
|
|
102
|
+
odoo_addon_account_financial_report-18.0.1.4.0.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
|
103
|
+
odoo_addon_account_financial_report-18.0.1.4.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
|
104
|
+
odoo_addon_account_financial_report-18.0.1.4.0.dist-info/RECORD,,
|
|
File without changes
|