odoo-addon-account-financial-report 17.0.1.7.0.1__py3-none-any.whl → 17.0.1.8.0.1__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/i18n/ar.po +16 -0
- odoo/addons/account_financial_report/i18n/ca.po +16 -0
- odoo/addons/account_financial_report/i18n/de.po +16 -0
- odoo/addons/account_financial_report/i18n/es.po +16 -0
- odoo/addons/account_financial_report/i18n/es_AR.po +16 -0
- odoo/addons/account_financial_report/i18n/es_MX.po +16 -0
- odoo/addons/account_financial_report/i18n/fr.po +16 -0
- odoo/addons/account_financial_report/i18n/fr_CH.po +16 -0
- odoo/addons/account_financial_report/i18n/hr.po +16 -0
- odoo/addons/account_financial_report/i18n/hr_HR.po +16 -0
- odoo/addons/account_financial_report/i18n/it.po +19 -3
- odoo/addons/account_financial_report/i18n/ja.po +16 -0
- odoo/addons/account_financial_report/i18n/nl.po +16 -0
- odoo/addons/account_financial_report/i18n/nl_NL.po +16 -0
- odoo/addons/account_financial_report/i18n/pt.po +16 -0
- odoo/addons/account_financial_report/i18n/pt_BR.po +16 -0
- odoo/addons/account_financial_report/i18n/ro.po +16 -0
- odoo/addons/account_financial_report/i18n/sv.po +16 -0
- odoo/addons/account_financial_report/i18n/tr.po +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 +30 -26
- 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-17.0.1.7.0.1.dist-info → odoo_addon_account_financial_report-17.0.1.8.0.1.dist-info}/METADATA +2 -2
- {odoo_addon_account_financial_report-17.0.1.7.0.1.dist-info → odoo_addon_account_financial_report-17.0.1.8.0.1.dist-info}/RECORD +53 -53
- {odoo_addon_account_financial_report-17.0.1.7.0.1.dist-info → odoo_addon_account_financial_report-17.0.1.8.0.1.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-17.0.1.7.0.1.dist-info → odoo_addon_account_financial_report-17.0.1.8.0.1.dist-info}/top_level.txt +0 -0
|
@@ -192,7 +192,7 @@ class TestTrialBalanceReport(AccountTestInvoicingCommon):
|
|
|
192
192
|
"show_partner_details": with_partners,
|
|
193
193
|
}
|
|
194
194
|
)
|
|
195
|
-
data = trial_balance.
|
|
195
|
+
data = trial_balance._prepare_report_data()
|
|
196
196
|
res_data = self.env[
|
|
197
197
|
"report.account_financial_report.trial_balance"
|
|
198
198
|
]._get_report_values(trial_balance, data)
|
|
@@ -547,7 +547,7 @@ class TestTrialBalanceReport(AccountTestInvoicingCommon):
|
|
|
547
547
|
"fy_start_date": self.fy_date_start,
|
|
548
548
|
}
|
|
549
549
|
)
|
|
550
|
-
data = trial_balance.
|
|
550
|
+
data = trial_balance._prepare_report_data()
|
|
551
551
|
res_data = self.env[
|
|
552
552
|
"report.account_financial_report.trial_balance"
|
|
553
553
|
]._get_report_values(trial_balance, data)
|
|
@@ -600,7 +600,7 @@ class TestTrialBalanceReport(AccountTestInvoicingCommon):
|
|
|
600
600
|
"fy_start_date": self.fy_date_start,
|
|
601
601
|
}
|
|
602
602
|
)
|
|
603
|
-
data = trial_balance.
|
|
603
|
+
data = trial_balance._prepare_report_data()
|
|
604
604
|
res_data = self.env[
|
|
605
605
|
"report.account_financial_report.trial_balance"
|
|
606
606
|
]._get_report_values(trial_balance, data)
|
|
@@ -654,7 +654,7 @@ class TestTrialBalanceReport(AccountTestInvoicingCommon):
|
|
|
654
654
|
"fy_start_date": self.fy_date_start,
|
|
655
655
|
}
|
|
656
656
|
)
|
|
657
|
-
data = trial_balance.
|
|
657
|
+
data = trial_balance._prepare_report_data()
|
|
658
658
|
res_data = self.env[
|
|
659
659
|
"report.account_financial_report.trial_balance"
|
|
660
660
|
]._get_report_values(trial_balance, data)
|
|
@@ -218,7 +218,7 @@ class TestVATReport(AccountTestInvoicingCommon):
|
|
|
218
218
|
"tax_detail": True,
|
|
219
219
|
}
|
|
220
220
|
)
|
|
221
|
-
data = vat_report.
|
|
221
|
+
data = vat_report._prepare_report_data()
|
|
222
222
|
res_data = self.env[
|
|
223
223
|
"report.account_financial_report.vat_report"
|
|
224
224
|
]._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
|
+
)
|
|
@@ -117,7 +117,7 @@ class AgedPartnerBalanceWizard(models.TransientModel):
|
|
|
117
117
|
|
|
118
118
|
def _print_report(self, report_type):
|
|
119
119
|
self.ensure_one()
|
|
120
|
-
data = self.
|
|
120
|
+
data = self._prepare_report_data()
|
|
121
121
|
if report_type == "xlsx":
|
|
122
122
|
report_name = "a_f_r.report_aged_partner_balance_xlsx"
|
|
123
123
|
else:
|
|
@@ -132,6 +132,7 @@ class AgedPartnerBalanceWizard(models.TransientModel):
|
|
|
132
132
|
)
|
|
133
133
|
|
|
134
134
|
def _prepare_report_aged_partner_balance(self):
|
|
135
|
+
# TODO: Kept for compatibility - To be merged into _prepare_report_data in 19
|
|
135
136
|
self.ensure_one()
|
|
136
137
|
return {
|
|
137
138
|
"wizard_id": self.id,
|
|
@@ -146,6 +147,11 @@ class AgedPartnerBalanceWizard(models.TransientModel):
|
|
|
146
147
|
"age_partner_config_id": self.age_partner_config_id.id,
|
|
147
148
|
}
|
|
148
149
|
|
|
150
|
+
def _prepare_report_data(self):
|
|
151
|
+
res = super()._prepare_report_data()
|
|
152
|
+
res.update(self._prepare_report_aged_partner_balance())
|
|
153
|
+
return res
|
|
154
|
+
|
|
149
155
|
def _export(self, report_type):
|
|
150
156
|
"""Default export is PDF."""
|
|
151
157
|
return self._print_report(report_type)
|
|
@@ -276,7 +276,7 @@ class GeneralLedgerReportWizard(models.TransientModel):
|
|
|
276
276
|
|
|
277
277
|
def _print_report(self, report_type):
|
|
278
278
|
self.ensure_one()
|
|
279
|
-
data = self.
|
|
279
|
+
data = self._prepare_report_data()
|
|
280
280
|
if report_type == "xlsx":
|
|
281
281
|
report_name = "a_f_r.report_general_ledger_xlsx"
|
|
282
282
|
else:
|
|
@@ -291,6 +291,7 @@ class GeneralLedgerReportWizard(models.TransientModel):
|
|
|
291
291
|
)
|
|
292
292
|
|
|
293
293
|
def _prepare_report_general_ledger(self):
|
|
294
|
+
# TODO: Kept for compatibility - To be merged into _prepare_report_data in 19
|
|
294
295
|
self.ensure_one()
|
|
295
296
|
return {
|
|
296
297
|
"wizard_id": self.id,
|
|
@@ -313,6 +314,11 @@ class GeneralLedgerReportWizard(models.TransientModel):
|
|
|
313
314
|
"domain": self._get_account_move_lines_domain(),
|
|
314
315
|
}
|
|
315
316
|
|
|
317
|
+
def _prepare_report_data(self):
|
|
318
|
+
res = super()._prepare_report_data()
|
|
319
|
+
res.update(self._prepare_report_general_ledger())
|
|
320
|
+
return res
|
|
321
|
+
|
|
316
322
|
def _export(self, report_type):
|
|
317
323
|
"""Default export is PDF."""
|
|
318
324
|
return self._print_report(report_type)
|
|
@@ -75,7 +75,7 @@ class JournalLedgerReportWizard(models.TransientModel):
|
|
|
75
75
|
|
|
76
76
|
def _print_report(self, report_type):
|
|
77
77
|
self.ensure_one()
|
|
78
|
-
data = self.
|
|
78
|
+
data = self._prepare_report_data()
|
|
79
79
|
if report_type == "xlsx":
|
|
80
80
|
report_name = "a_f_r.report_journal_ledger_xlsx"
|
|
81
81
|
else:
|
|
@@ -90,6 +90,7 @@ class JournalLedgerReportWizard(models.TransientModel):
|
|
|
90
90
|
)
|
|
91
91
|
|
|
92
92
|
def _prepare_report_journal_ledger(self):
|
|
93
|
+
# TODO: Kept for compatibility - To be merged into _prepare_report_data in 19
|
|
93
94
|
self.ensure_one()
|
|
94
95
|
journals = self.journal_ids
|
|
95
96
|
if not journals:
|
|
@@ -112,6 +113,11 @@ class JournalLedgerReportWizard(models.TransientModel):
|
|
|
112
113
|
"with_auto_sequence": self.with_auto_sequence,
|
|
113
114
|
}
|
|
114
115
|
|
|
116
|
+
def _prepare_report_data(self):
|
|
117
|
+
res = super()._prepare_report_data()
|
|
118
|
+
res.update(self._prepare_report_journal_ledger())
|
|
119
|
+
return res
|
|
120
|
+
|
|
115
121
|
def _export(self, report_type):
|
|
116
122
|
"""Default export is PDF."""
|
|
117
123
|
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)
|
|
@@ -239,7 +239,7 @@ class TrialBalanceReportWizard(models.TransientModel):
|
|
|
239
239
|
|
|
240
240
|
def _print_report(self, report_type):
|
|
241
241
|
self.ensure_one()
|
|
242
|
-
data = self.
|
|
242
|
+
data = self._prepare_report_data()
|
|
243
243
|
if report_type == "xlsx":
|
|
244
244
|
report_name = "a_f_r.report_trial_balance_xlsx"
|
|
245
245
|
else:
|
|
@@ -254,6 +254,7 @@ class TrialBalanceReportWizard(models.TransientModel):
|
|
|
254
254
|
)
|
|
255
255
|
|
|
256
256
|
def _prepare_report_trial_balance(self):
|
|
257
|
+
# TODO: Kept for compatibility - To be merged into _prepare_report_data in 19
|
|
257
258
|
self.ensure_one()
|
|
258
259
|
return {
|
|
259
260
|
"wizard_id": self.id,
|
|
@@ -277,6 +278,11 @@ class TrialBalanceReportWizard(models.TransientModel):
|
|
|
277
278
|
"grouped_by": self.grouped_by,
|
|
278
279
|
}
|
|
279
280
|
|
|
281
|
+
def _prepare_report_data(self):
|
|
282
|
+
res = super()._prepare_report_data()
|
|
283
|
+
res.update(self._prepare_report_trial_balance())
|
|
284
|
+
return res
|
|
285
|
+
|
|
280
286
|
def _export(self, report_type):
|
|
281
287
|
"""Default export is PDF."""
|
|
282
288
|
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: 17.0.1.
|
|
3
|
+
Version: 17.0.1.8.0.1
|
|
4
4
|
Requires-Python: >=3.10
|
|
5
5
|
Requires-Dist: odoo-addon-date_range>=17.0dev,<17.1dev
|
|
6
6
|
Requires-Dist: odoo-addon-report_xlsx>=17.0dev,<17.1dev
|
|
@@ -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:1f99d9f09b6b898088824b7b115048de26536d0ab194954bfec9847b648e1c9a
|
|
33
33
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
34
34
|
|
|
35
35
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
odoo/addons/account_financial_report/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_financial_report/README.rst,sha256=93eTBt11Pc6xvhQBOtOg-r3nMPBJed-cu0bHtMaKppE,7053
|
|
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=HXtZVXN_74daNA1oXufqtxpnxp2UhT_E-TY3CMpyobc,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=
|
|
7
|
-
odoo/addons/account_financial_report/i18n/ar.po,sha256=
|
|
8
|
-
odoo/addons/account_financial_report/i18n/ca.po,sha256=
|
|
9
|
-
odoo/addons/account_financial_report/i18n/de.po,sha256=
|
|
10
|
-
odoo/addons/account_financial_report/i18n/es.po,sha256=
|
|
11
|
-
odoo/addons/account_financial_report/i18n/es_AR.po,sha256=
|
|
12
|
-
odoo/addons/account_financial_report/i18n/es_MX.po,sha256=
|
|
13
|
-
odoo/addons/account_financial_report/i18n/fr.po,sha256=
|
|
14
|
-
odoo/addons/account_financial_report/i18n/fr_CH.po,sha256=
|
|
15
|
-
odoo/addons/account_financial_report/i18n/hr.po,sha256=
|
|
16
|
-
odoo/addons/account_financial_report/i18n/hr_HR.po,sha256=
|
|
17
|
-
odoo/addons/account_financial_report/i18n/it.po,sha256=
|
|
18
|
-
odoo/addons/account_financial_report/i18n/ja.po,sha256=
|
|
19
|
-
odoo/addons/account_financial_report/i18n/nl.po,sha256=
|
|
20
|
-
odoo/addons/account_financial_report/i18n/nl_NL.po,sha256=
|
|
21
|
-
odoo/addons/account_financial_report/i18n/pt.po,sha256=
|
|
22
|
-
odoo/addons/account_financial_report/i18n/pt_BR.po,sha256=
|
|
23
|
-
odoo/addons/account_financial_report/i18n/ro.po,sha256=
|
|
24
|
-
odoo/addons/account_financial_report/i18n/sv.po,sha256=
|
|
25
|
-
odoo/addons/account_financial_report/i18n/tr.po,sha256=
|
|
6
|
+
odoo/addons/account_financial_report/i18n/account_financial_report.pot,sha256=EtY49-bhYnU3SXG-TER3cB5psWuEST5obiMil05qGK8,85142
|
|
7
|
+
odoo/addons/account_financial_report/i18n/ar.po,sha256=bTR9r6vXzXxlecxgiWijI5Pn-YgmgBcjyNeVlyc8y9A,93325
|
|
8
|
+
odoo/addons/account_financial_report/i18n/ca.po,sha256=UrSeL-9LGLjXhPDRjW-jHT--WGjSr30Rhy9vERswcdU,90152
|
|
9
|
+
odoo/addons/account_financial_report/i18n/de.po,sha256=EWseiuU43mb8CHZKAeSgV8RSWgMPVKQxIqmpuwPSssY,96012
|
|
10
|
+
odoo/addons/account_financial_report/i18n/es.po,sha256=Y3Lf3eeLtl5L9PKtK-OeLm71BioUjCpE0XWA67JPDyw,92959
|
|
11
|
+
odoo/addons/account_financial_report/i18n/es_AR.po,sha256=K08sdj7LiF1qA4AJB2kZoEOrdztIUNDfPmtzi2aD7yg,92978
|
|
12
|
+
odoo/addons/account_financial_report/i18n/es_MX.po,sha256=KEk317U3-_8BP5Cv8JgI9CO4uDtbasy4llrBtOWi-KU,83689
|
|
13
|
+
odoo/addons/account_financial_report/i18n/fr.po,sha256=zvqiSpfQemCopv8hXKnaScbs7R7Q4c18TeLp-63eKsU,89468
|
|
14
|
+
odoo/addons/account_financial_report/i18n/fr_CH.po,sha256=o1ElrjMjWp-rFRt_gnt7yyY6XTzpLdTklFn2aLUb2rU,88439
|
|
15
|
+
odoo/addons/account_financial_report/i18n/hr.po,sha256=LOzDKCRviXhtgMyljJq8PMIFvDyrPFWoCN2Tjs1HiNc,87019
|
|
16
|
+
odoo/addons/account_financial_report/i18n/hr_HR.po,sha256=9SqLM1yIGc-I_jh43PzasULbARaM44hyzMFSVnwJ99Q,84541
|
|
17
|
+
odoo/addons/account_financial_report/i18n/it.po,sha256=sKDII18H82OvkFiuuRr8lMfCWBwf7pMhQ5eOQpLQ-xs,94753
|
|
18
|
+
odoo/addons/account_financial_report/i18n/ja.po,sha256=umOkcAt1LMk0Ehl5wvnZT1gFDIl-ielDxW4MsC5LiF8,84302
|
|
19
|
+
odoo/addons/account_financial_report/i18n/nl.po,sha256=Lq3N2qA0zfFgmfa7sC5Va5KRpmarM_HXMJxiL1ePgVw,96676
|
|
20
|
+
odoo/addons/account_financial_report/i18n/nl_NL.po,sha256=KCrRkDfpkHYP5hD6e5cEE-qsc-bP6kkutM7iAh5brlQ,84207
|
|
21
|
+
odoo/addons/account_financial_report/i18n/pt.po,sha256=UombPVsNKw-tkfpQ2NpU36JekWQ6yvx2sBK24EtmlMs,92554
|
|
22
|
+
odoo/addons/account_financial_report/i18n/pt_BR.po,sha256=fkiu8SiuK1KTgadLR4Ht4tAIRKJW3uTq0UK90otiFJI,99856
|
|
23
|
+
odoo/addons/account_financial_report/i18n/ro.po,sha256=9qT8aOpW2xGfCr0oViWQGGYhZ6geh-OHgDxmzALOy1g,92037
|
|
24
|
+
odoo/addons/account_financial_report/i18n/sv.po,sha256=L2AA35UtW6DcOmroXb13RrNfTvlGrVHtT5WDqbg5sTM,90585
|
|
25
|
+
odoo/addons/account_financial_report/i18n/tr.po,sha256=CJ-9D_M5x_j51JEF4I6d6lhBEsBre-yMlMRGIBhCfcc,87544
|
|
26
26
|
odoo/addons/account_financial_report/models/__init__.py,sha256=KCE4mRzM1HSu4Mjg3thvCgBOaEyw5w8VHB--Du-wXyE,195
|
|
27
27
|
odoo/addons/account_financial_report/models/account.py,sha256=OCWn264dEtfxbV0rVKR1dqz38Jy3SoS_9XZ0ChK_7eA,422
|
|
28
28
|
odoo/addons/account_financial_report/models/account_age_report_configuration.py,sha256=U5Xr0uAD696TohTCkKsY3HZDYAfVrlocTIGYzr2JlkA,1664
|
|
@@ -36,31 +36,31 @@ odoo/addons/account_financial_report/readme/DESCRIPTION.md,sha256=4mWyU68JKCXDnf
|
|
|
36
36
|
odoo/addons/account_financial_report/readme/HISTORY.md,sha256=5PzKD9lPwX_nKEaZRwGYea4Q0sXJy2dEbRUBUSYwAMg,473
|
|
37
37
|
odoo/addons/account_financial_report/readme/ROADMAP.md,sha256=kZqiEvRk8A3A47ZIh-OiAtqgaPpxO6ul0P60oCEg8Qg,360
|
|
38
38
|
odoo/addons/account_financial_report/report/__init__.py,sha256=A-DcPm9nBQnH58gXR3H4kQoHF0pKAjLUnPnXl1RQqng,618
|
|
39
|
-
odoo/addons/account_financial_report/report/abstract_report.py,sha256=
|
|
39
|
+
odoo/addons/account_financial_report/report/abstract_report.py,sha256=uIDaZUQiPqODRTmOntsHlN5auymnBfmd1XJYEyeMMeg,6154
|
|
40
40
|
odoo/addons/account_financial_report/report/abstract_report_xlsx.py,sha256=QILq6AACBxyC8Mnyz9Jj9OAEn2NySRzQMndxCwfxG2M,29912
|
|
41
|
-
odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=
|
|
41
|
+
odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=NosQW-C5I4yU2BGAjYiBOHBh6LkfjbWnKsIPDZm6vLA,20162
|
|
42
42
|
odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py,sha256=DzOfIfKJ7a6lExmjACLN0JI0t1nEtsCY-N0HHbv_5Nw,14276
|
|
43
|
-
odoo/addons/account_financial_report/report/general_ledger.py,sha256=
|
|
43
|
+
odoo/addons/account_financial_report/report/general_ledger.py,sha256=_n6wE5bJNdDGEMhmc78ChzIy_x4nMe-l3tf2vKvl5cY,37583
|
|
44
44
|
odoo/addons/account_financial_report/report/general_ledger_xlsx.py,sha256=qXDm9V1XyLtwUYp_4i-p4mCG6ZEuMwcrFLuPhu1Exhw,17426
|
|
45
|
-
odoo/addons/account_financial_report/report/journal_ledger.py,sha256=
|
|
45
|
+
odoo/addons/account_financial_report/report/journal_ledger.py,sha256=PNcejcmpPcOT6R12BvYyrOcGrgz-OsIAci95cYRTuxI,15654
|
|
46
46
|
odoo/addons/account_financial_report/report/journal_ledger_xlsx.py,sha256=kY6c-56HHauIyHAc7q5iNerz0gJQrp4ahI4OB1XeCT8,10060
|
|
47
|
-
odoo/addons/account_financial_report/report/open_items.py,sha256=
|
|
47
|
+
odoo/addons/account_financial_report/report/open_items.py,sha256=ch5qjCr3PjpxvYsnumoBfJm4kyBtMHaZ6-IHuDVka08,12749
|
|
48
48
|
odoo/addons/account_financial_report/report/open_items_xlsx.py,sha256=ztfVhZS5dTVcWFiceHzo7baWEQj5MZesSJFZujYGs1Q,14931
|
|
49
|
-
odoo/addons/account_financial_report/report/trial_balance.py,sha256=
|
|
49
|
+
odoo/addons/account_financial_report/report/trial_balance.py,sha256=pWuxPcmPS-MITcNqoRdU8JLvVIRibhYQu6Xs0ic0WtA,42667
|
|
50
50
|
odoo/addons/account_financial_report/report/trial_balance_xlsx.py,sha256=3wpHQ5JEM9g1pZpS9V7yo5Bed1JEKdMcfxzoq6I55_0,13246
|
|
51
|
-
odoo/addons/account_financial_report/report/vat_report.py,sha256=
|
|
51
|
+
odoo/addons/account_financial_report/report/vat_report.py,sha256=4ZQTwrupLaPgXnTwQCfgqkIh1BpbYy7U4VqVa92pO9I,10327
|
|
52
52
|
odoo/addons/account_financial_report/report/vat_report_xlsx.py,sha256=ksdmiHDQZBBtk8fqkxSAS6-nFIyhT-wue4OTSV6xW9c,2307
|
|
53
53
|
odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml,sha256=IfeLCmOIFqyaEsRnRihb0pXo-deJD41id5qgjE3_Ftw,41020
|
|
54
|
-
odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=
|
|
55
|
-
odoo/addons/account_financial_report/report/templates/journal_ledger.xml,sha256=
|
|
54
|
+
odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=9aIS7ihcjTKzFjlmoTxuqWfGqTXD-s3YKbJtpYDCr10,40587
|
|
55
|
+
odoo/addons/account_financial_report/report/templates/journal_ledger.xml,sha256=gEhLkjzj-BYU35xYquTha8tyXWOrpfTHGveGZ5D-cQM,21682
|
|
56
56
|
odoo/addons/account_financial_report/report/templates/layouts.xml,sha256=gCejPAn8GLrySSve8pGcs0fY5nr48C3mmyuoEJVZkJ4,1526
|
|
57
|
-
odoo/addons/account_financial_report/report/templates/open_items.xml,sha256=
|
|
57
|
+
odoo/addons/account_financial_report/report/templates/open_items.xml,sha256=8yymWZ6o3EHfk2aDboKrLuT5rrtBW0OEHpcmWzgFMC0,21591
|
|
58
58
|
odoo/addons/account_financial_report/report/templates/trial_balance.xml,sha256=GjJgC0Td3kBE7xJ_lpqLIRax4tiOI9tPYaXW1bPtbLk,53388
|
|
59
59
|
odoo/addons/account_financial_report/report/templates/vat_report.xml,sha256=2WeL6Njr8LFBtERKmfyi3IH-J1frSO4Gpew-ruzuWNk,8128
|
|
60
60
|
odoo/addons/account_financial_report/security/ir.model.access.csv,sha256=S1VQLLwLeaOeAMYGqtoOqHUaZVrvDUVE4Z-0-SRjSGQ,1134
|
|
61
61
|
odoo/addons/account_financial_report/security/security.xml,sha256=YQCXbOuTGHCWGYwGnXMie_0tnWG5zYJGdoeey3o1xaw,382
|
|
62
62
|
odoo/addons/account_financial_report/static/description/icon.png,sha256=WW-eOIjW5-jo7tgBieNv6K2DUKMoHFSVctnp0htstHI,15230
|
|
63
|
-
odoo/addons/account_financial_report/static/description/index.html,sha256=
|
|
63
|
+
odoo/addons/account_financial_report/static/description/index.html,sha256=PQLhZ9SwIeQSrxhZWZuMj_a8VG620FfQoVUDTQwp6LQ,19960
|
|
64
64
|
odoo/addons/account_financial_report/static/src/css/report.css,sha256=Cu4VmyY5tVXIddaojFDsg0Ute2qPCvKbLiimak_X9ik,2361
|
|
65
65
|
odoo/addons/account_financial_report/static/src/css/report_html.css,sha256=I1kX1RsThtjGNLOaNJEWCvMnB9iAFW6nGkcyFYZzJoA,135
|
|
66
66
|
odoo/addons/account_financial_report/static/src/js/report.esm.js,sha256=He488vLRaLv6IIuVaNSnNl8kJMIwJmMIv7GkmXyPJZs,2475
|
|
@@ -68,12 +68,12 @@ odoo/addons/account_financial_report/static/src/js/report_action.esm.js,sha256=v
|
|
|
68
68
|
odoo/addons/account_financial_report/static/src/xml/report.xml,sha256=b0CFMw4g3KVeRFHRQjm6ujNxv7PtZS101dJrHArQUaw,496
|
|
69
69
|
odoo/addons/account_financial_report/tests/__init__.py,sha256=nK3uX5FGFUhgfElRqdLZVZ3Qh59WV6G4f0hyRMGndVE,351
|
|
70
70
|
odoo/addons/account_financial_report/tests/test_age_report_configuration.py,sha256=YRe_xyrN3FTKBsEpTMPrMJFLb40gfk6aiOaSZz7BoXs,1423
|
|
71
|
-
odoo/addons/account_financial_report/tests/test_aged_partner_balance.py,sha256=
|
|
72
|
-
odoo/addons/account_financial_report/tests/test_general_ledger.py,sha256=
|
|
73
|
-
odoo/addons/account_financial_report/tests/test_journal_ledger.py,sha256=
|
|
74
|
-
odoo/addons/account_financial_report/tests/test_open_items.py,sha256=
|
|
75
|
-
odoo/addons/account_financial_report/tests/test_trial_balance.py,sha256=
|
|
76
|
-
odoo/addons/account_financial_report/tests/test_vat_report.py,sha256=
|
|
71
|
+
odoo/addons/account_financial_report/tests/test_aged_partner_balance.py,sha256=ZfzXRFGWBpSr2-fEuqSL8Q2jKZ80eUVUbfYCCjjh_0s,4520
|
|
72
|
+
odoo/addons/account_financial_report/tests/test_general_ledger.py,sha256=Uz3DbAOUuFwI3BqrSbY2Djhum22dvI33Ivn5Z05fMSk,29162
|
|
73
|
+
odoo/addons/account_financial_report/tests/test_journal_ledger.py,sha256=sbOB-T8nFOx6_vo5WZaVAmOB0optIugriDi89oUZ8qw,11104
|
|
74
|
+
odoo/addons/account_financial_report/tests/test_open_items.py,sha256=cTsn_ALphkXFNRioLibY7m-eX66hdCfNY_IxaECQuKU,2536
|
|
75
|
+
odoo/addons/account_financial_report/tests/test_trial_balance.py,sha256=gfbLsraeS1pFldHC_4bi3eZXRdGJrElWPaR6-ZLuLeM,27788
|
|
76
|
+
odoo/addons/account_financial_report/tests/test_vat_report.py,sha256=yY4mOv_6FS5gNE-2JC3s3aFFosLLqKy1UtkDDMhDtH8,14705
|
|
77
77
|
odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml,sha256=xVTv70rbpp2i93mwYhGq6wI6B11_nsiMJSPexrHjxZM,1764
|
|
78
78
|
odoo/addons/account_financial_report/view/account_view.xml,sha256=9KKmGXEEvyUygmVrWIR3rvqJICCHvbGayGwZ40tI1iA,534
|
|
79
79
|
odoo/addons/account_financial_report/view/report_aged_partner_balance.xml,sha256=EUjo6LxHznk2wdKQCO9VR83YzPLAEFZ7DeiaHmtxvQQ,341
|
|
@@ -84,20 +84,20 @@ odoo/addons/account_financial_report/view/report_trial_balance.xml,sha256=QRzD5Z
|
|
|
84
84
|
odoo/addons/account_financial_report/view/report_vat_report.xml,sha256=Bc4DAlUg_g92GUgCRsLoC9Lf0yzfm6sh_ZrPtVACywA,321
|
|
85
85
|
odoo/addons/account_financial_report/view/res_config_settings_views.xml,sha256=ys8UruOoY09d4nNYIB9rrW8cnOwl1YfB3r8ifvA3t2Q,2514
|
|
86
86
|
odoo/addons/account_financial_report/wizard/__init__.py,sha256=5lngmjx-Vz-5k9nPILd25_1oVKKhUHnYhjAOMgdQHPY,243
|
|
87
|
-
odoo/addons/account_financial_report/wizard/abstract_wizard.py,sha256=
|
|
88
|
-
odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py,sha256=
|
|
87
|
+
odoo/addons/account_financial_report/wizard/abstract_wizard.py,sha256=XyRzzc1ZCqsjBXSIY8XZXLXKYXPmBc3fHWPReuH9b8M,2339
|
|
88
|
+
odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py,sha256=5Wlg8glISkWUeRn4fVqhtLk_r1Q8MWZS72ToqctvIeE,6171
|
|
89
89
|
odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml,sha256=P4y5oItOq_1xovOhpjCU-9JzIvT2HH00tXWYFmMhnMo,3996
|
|
90
|
-
odoo/addons/account_financial_report/wizard/general_ledger_wizard.py,sha256=
|
|
91
|
-
odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml,sha256=
|
|
92
|
-
odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py,sha256=
|
|
93
|
-
odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml,sha256=
|
|
94
|
-
odoo/addons/account_financial_report/wizard/open_items_wizard.py,sha256=
|
|
95
|
-
odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml,sha256=
|
|
96
|
-
odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256=
|
|
90
|
+
odoo/addons/account_financial_report/wizard/general_ledger_wizard.py,sha256=2qqgRS2YY-gY7nPfN538GJwUtAj611EvOqZJaZ4s9wA,12710
|
|
91
|
+
odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml,sha256=eoE8H_61c-3ZiSq_ZnAPwpGLuC9c17Nx6ByaDwiPSvY,7789
|
|
92
|
+
odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py,sha256=wpYPgDkWwju2I30Z_jzIZXQCcXZ-SK9FK5MuoXdHe38,5781
|
|
93
|
+
odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml,sha256=1CPPn9RNE0t0T7FmrThkPWOf8_7aKTJDrHJq0FjqdfI,3015
|
|
94
|
+
odoo/addons/account_financial_report/wizard/open_items_wizard.py,sha256=teW3_8o4V-eRyc8n0_sfXlDHmUKnXw2zzc_nympgFFU,7628
|
|
95
|
+
odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml,sha256=INn_LZdsT_sj2BpBx6aeZC0oU2z9E_xFTNaHaMKYsFk,4799
|
|
96
|
+
odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256=ynsDMmq6bGCRvoQC_geAiFbkB_FjAuw8bEsPereDf_4,11459
|
|
97
97
|
odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml,sha256=io5d8plYx9YktR79IJMoENQU1CV1HPwdBVamAN4zt7Y,7277
|
|
98
|
-
odoo/addons/account_financial_report/wizard/vat_report_wizard.py,sha256=
|
|
98
|
+
odoo/addons/account_financial_report/wizard/vat_report_wizard.py,sha256=uWfcEEjjtk2UTt2dgOcEaOwDwZLd7Ga7hZNjAEEEbOw,3659
|
|
99
99
|
odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml,sha256=T3P81O4csDGP7Jmf7eAtmbIIldja3IoXbBmweMMt8vA,2330
|
|
100
|
-
odoo_addon_account_financial_report-17.0.1.
|
|
101
|
-
odoo_addon_account_financial_report-17.0.1.
|
|
102
|
-
odoo_addon_account_financial_report-17.0.1.
|
|
103
|
-
odoo_addon_account_financial_report-17.0.1.
|
|
100
|
+
odoo_addon_account_financial_report-17.0.1.8.0.1.dist-info/METADATA,sha256=iZuKNWvvf9ztAc7F1uyjCsIy1f9hMUtWD-OJ2VSPHh0,7769
|
|
101
|
+
odoo_addon_account_financial_report-17.0.1.8.0.1.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
|
102
|
+
odoo_addon_account_financial_report-17.0.1.8.0.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
|
103
|
+
odoo_addon_account_financial_report-17.0.1.8.0.1.dist-info/RECORD,,
|
|
File without changes
|