odoo-addon-account-financial-report 18.0.1.3.0.4__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/i18n/fr_CH.po +210 -227
- 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.4.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.4.dist-info → odoo_addon_account_financial_report-18.0.1.4.0.dist-info}/RECORD +35 -35
- {odoo_addon_account_financial_report-18.0.1.3.0.4.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.4.dist-info → odoo_addon_account_financial_report-18.0.1.4.0.dist-info}/top_level.txt +0 -0
|
@@ -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
|
|
@@ -11,7 +11,7 @@ odoo/addons/account_financial_report/i18n/es.po,sha256=kV3WWQRULMPBUHiUSdKK1NhT4
|
|
|
11
11
|
odoo/addons/account_financial_report/i18n/es_AR.po,sha256=AXkI8E2vg69HWRfTy0YoAeL_aqhju6arzqlaptHJSGA,90114
|
|
12
12
|
odoo/addons/account_financial_report/i18n/es_MX.po,sha256=VMy3tDPWYzVM2UR1CcgVK-JbjZZYRN04G8Mx7_fA4bY,80825
|
|
13
13
|
odoo/addons/account_financial_report/i18n/fr.po,sha256=CqKi0cZWoJI_sLiHIPQ7qapXfqBKAQc8cC0qpD9v_wY,95086
|
|
14
|
-
odoo/addons/account_financial_report/i18n/fr_CH.po,sha256=
|
|
14
|
+
odoo/addons/account_financial_report/i18n/fr_CH.po,sha256=vhKWFWFwwydKqu8DBtFzh3cVu4r7vTDQem_AJJruJxc,93806
|
|
15
15
|
odoo/addons/account_financial_report/i18n/hr.po,sha256=vhpMBpW2RtwDj8fUr3sP_VS1GIODjCBlMme9BrTsZ-M,84155
|
|
16
16
|
odoo/addons/account_financial_report/i18n/hr_HR.po,sha256=a9Dd7D8a2lbW6NnMwDpqI5HSZu8jsxbkNDFcdvRM0kg,81683
|
|
17
17
|
odoo/addons/account_financial_report/i18n/it.po,sha256=viOiMEDw6y_yrlTHSvTK93juKRKw3Bu48H2rbnGbXtw,91889
|
|
@@ -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
|