odoo-addon-account-financial-report 15.0.3.2.2__py3-none-any.whl → 15.0.3.3.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.

Files changed (62) hide show
  1. odoo/addons/account_financial_report/README.rst +14 -1
  2. odoo/addons/account_financial_report/__manifest__.py +5 -1
  3. odoo/addons/account_financial_report/data/report_column_data.xml +358 -0
  4. odoo/addons/account_financial_report/i18n/account_financial_report.pot +125 -0
  5. odoo/addons/account_financial_report/i18n/ar.po +125 -3
  6. odoo/addons/account_financial_report/i18n/ca.po +125 -0
  7. odoo/addons/account_financial_report/i18n/da.po +125 -0
  8. odoo/addons/account_financial_report/i18n/de.po +125 -3
  9. odoo/addons/account_financial_report/i18n/es.po +125 -0
  10. odoo/addons/account_financial_report/i18n/es_AR.po +125 -0
  11. odoo/addons/account_financial_report/i18n/es_MX.po +125 -0
  12. odoo/addons/account_financial_report/i18n/fr.po +125 -3
  13. odoo/addons/account_financial_report/i18n/fr_CH.po +125 -3
  14. odoo/addons/account_financial_report/i18n/fr_FR.po +125 -0
  15. odoo/addons/account_financial_report/i18n/hr.po +125 -0
  16. odoo/addons/account_financial_report/i18n/hr_HR.po +125 -0
  17. odoo/addons/account_financial_report/i18n/it.po +125 -3
  18. odoo/addons/account_financial_report/i18n/ja.po +125 -0
  19. odoo/addons/account_financial_report/i18n/nl.po +125 -3
  20. odoo/addons/account_financial_report/i18n/nl_NL.po +125 -0
  21. odoo/addons/account_financial_report/i18n/pt.po +125 -0
  22. odoo/addons/account_financial_report/i18n/pt_BR.po +125 -3
  23. odoo/addons/account_financial_report/i18n/ro.po +125 -3
  24. odoo/addons/account_financial_report/models/__init__.py +1 -0
  25. odoo/addons/account_financial_report/models/account_financial_report_column.py +17 -0
  26. odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst +1 -0
  27. odoo/addons/account_financial_report/readme/DESCRIPTION.rst +3 -0
  28. odoo/addons/account_financial_report/readme/HISTORY.rst +5 -0
  29. odoo/addons/account_financial_report/readme/ROADMAP.rst +3 -0
  30. odoo/addons/account_financial_report/report/abstract_report.py +15 -0
  31. odoo/addons/account_financial_report/report/aged_partner_balance.py +16 -12
  32. odoo/addons/account_financial_report/report/general_ledger.py +28 -24
  33. odoo/addons/account_financial_report/report/journal_ledger.py +27 -22
  34. odoo/addons/account_financial_report/report/open_items.py +24 -19
  35. odoo/addons/account_financial_report/report/templates/general_ledger.xml +116 -52
  36. odoo/addons/account_financial_report/report/templates/journal_ledger.xml +79 -31
  37. odoo/addons/account_financial_report/report/templates/open_items.xml +65 -24
  38. odoo/addons/account_financial_report/report/trial_balance.py +29 -25
  39. odoo/addons/account_financial_report/report/vat_report.py +17 -12
  40. odoo/addons/account_financial_report/security/ir.model.access.csv +1 -0
  41. odoo/addons/account_financial_report/static/description/index.html +33 -19
  42. odoo/addons/account_financial_report/tests/test_aged_partner_balance.py +4 -4
  43. odoo/addons/account_financial_report/tests/test_general_ledger.py +1 -1
  44. odoo/addons/account_financial_report/tests/test_journal_ledger.py +5 -5
  45. odoo/addons/account_financial_report/tests/test_open_items.py +1 -1
  46. odoo/addons/account_financial_report/tests/test_trial_balance.py +4 -4
  47. odoo/addons/account_financial_report/tests/test_vat_report.py +1 -1
  48. odoo/addons/account_financial_report/view/account_financial_report_column_view.xml +46 -0
  49. odoo/addons/account_financial_report/wizard/abstract_wizard.py +24 -1
  50. odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +19 -17
  51. odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +1 -5
  52. odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml +7 -0
  53. odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py +19 -17
  54. odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml +48 -32
  55. odoo/addons/account_financial_report/wizard/open_items_wizard.py +22 -20
  56. odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +79 -66
  57. odoo/addons/account_financial_report/wizard/trial_balance_wizard.py +26 -24
  58. odoo/addons/account_financial_report/wizard/vat_report_wizard.py +15 -13
  59. {odoo_addon_account_financial_report-15.0.3.2.2.dist-info → odoo_addon_account_financial_report-15.0.3.3.0.1.dist-info}/METADATA +16 -3
  60. {odoo_addon_account_financial_report-15.0.3.2.2.dist-info → odoo_addon_account_financial_report-15.0.3.3.0.1.dist-info}/RECORD +62 -59
  61. {odoo_addon_account_financial_report-15.0.3.2.2.dist-info → odoo_addon_account_financial_report-15.0.3.3.0.1.dist-info}/WHEEL +0 -0
  62. {odoo_addon_account_financial_report-15.0.3.2.2.dist-info → odoo_addon_account_financial_report-15.0.3.3.0.1.dist-info}/top_level.txt +0 -0
@@ -171,7 +171,7 @@ class OpenItemsReportWizard(models.TransientModel):
171
171
 
172
172
  def _print_report(self, report_type):
173
173
  self.ensure_one()
174
- data = self._prepare_report_open_items()
174
+ data = self._prepare_report_data()
175
175
  if report_type == "xlsx":
176
176
  report_name = "a_f_r.report_open_items_xlsx"
177
177
  else:
@@ -185,25 +185,27 @@ class OpenItemsReportWizard(models.TransientModel):
185
185
  .report_action(self, data=data)
186
186
  )
187
187
 
188
- def _prepare_report_open_items(self):
189
- self.ensure_one()
190
- return {
191
- "wizard_id": self.id,
192
- "date_at": fields.Date.to_string(self.date_at),
193
- "date_from": self.date_from or False,
194
- "only_posted_moves": self.target_move == "posted",
195
- "hide_account_at_0": self.hide_account_at_0,
196
- "foreign_currency": self.foreign_currency,
197
- "show_partner_details": self.show_partner_details,
198
- "company_id": self.company_id.id,
199
- "target_move": self.target_move,
200
- "account_ids": self.account_ids.ids,
201
- "partner_ids": self.partner_ids.ids or [],
202
- "analytic_account_ids": self.analytic_account_ids.ids or [],
203
- "account_financial_report_lang": self.env.lang,
204
- "grouped_by": self.grouped_by,
205
- "no_analytic": self.no_analytic,
206
- }
188
+ def _prepare_report_data(self):
189
+ res = super()._prepare_report_data()
190
+ res.update(
191
+ {
192
+ "date_at": fields.Date.to_string(self.date_at),
193
+ "date_from": self.date_from or False,
194
+ "only_posted_moves": self.target_move == "posted",
195
+ "hide_account_at_0": self.hide_account_at_0,
196
+ "foreign_currency": self.foreign_currency,
197
+ "show_partner_details": self.show_partner_details,
198
+ "company_id": self.company_id.id,
199
+ "target_move": self.target_move,
200
+ "account_ids": self.account_ids.ids,
201
+ "partner_ids": self.partner_ids.ids or [],
202
+ "analytic_account_ids": self.analytic_account_ids.ids or [],
203
+ "account_financial_report_lang": self.env.lang,
204
+ "grouped_by": self.grouped_by,
205
+ "no_analytic": self.no_analytic,
206
+ }
207
+ )
208
+ return res
207
209
 
208
210
  def _export(self, report_type):
209
211
  return self._print_report(report_type)
@@ -6,74 +6,87 @@
6
6
  <field name="model">open.items.report.wizard</field>
7
7
  <field name="arch" type="xml">
8
8
  <form>
9
- <group name="main_info">
10
- <field
11
- name="company_id"
12
- options="{'no_create': True}"
13
- groups="base.group_multi_company"
14
- />
15
- </group>
16
- <group name="filters">
17
- <group name="date_range">
18
- <field name="date_at" />
19
- <field name="date_from" />
20
- </group>
21
- <group name="other_filters">
22
- <field name="target_move" widget="radio" />
23
- <field name="show_partner_details" />
24
- <field name="grouped_by" />
25
- <field name="hide_account_at_0" />
26
- <field name="foreign_currency" />
27
- </group>
28
- </group>
29
- <group name="partner_filter" col="1">
30
- <label for="partner_ids" />
31
- <field
32
- name="partner_ids"
33
- nolabel="1"
34
- widget="many2many_tags"
35
- options="{'no_create': True}"
36
- />
37
- </group>
38
- <group name="account_filter" col="4">
39
- <field name="receivable_accounts_only" />
40
- <field name="payable_accounts_only" />
41
- <label for="account_code_from" string="From Code" />
42
- <div>
43
- <div class="o_row">
44
- <field
45
- name="account_code_from"
46
- class="oe_inline"
47
- options="{'no_create': True}"
48
- />
49
- <span class="oe_inline">To</span>
9
+ <sheet>
10
+ <notebook>
11
+ <page string="Filters">
12
+ <group name="main_info">
13
+ <field
14
+ name="company_id"
15
+ options="{'no_create': True}"
16
+ groups="base.group_multi_company"
17
+ />
18
+ </group>
19
+ <group name="filters">
20
+ <group name="date_range">
21
+ <field name="date_at" />
22
+ <field name="date_from" />
23
+ </group>
24
+ <group name="other_filters">
25
+ <field name="target_move" widget="radio" />
26
+ <field name="show_partner_details" />
27
+ <field name="grouped_by" />
28
+ <field name="hide_account_at_0" />
29
+ <field name="foreign_currency" />
30
+ </group>
31
+ </group>
32
+ <group name="partner_filter" col="1">
33
+ <label for="partner_ids" />
34
+ <field
35
+ name="partner_ids"
36
+ nolabel="1"
37
+ widget="many2many_tags"
38
+ options="{'no_create': True}"
39
+ />
40
+ </group>
41
+ <group name="account_filter" col="4">
42
+ <field name="receivable_accounts_only" />
43
+ <field name="payable_accounts_only" />
44
+ <label for="account_code_from" string="From Code" />
45
+ <div>
46
+ <div class="o_row">
47
+ <field
48
+ name="account_code_from"
49
+ class="oe_inline"
50
+ options="{'no_create': True}"
51
+ />
52
+ <span class="oe_inline">To</span>
53
+ <field
54
+ name="account_code_to"
55
+ class="oe_inline"
56
+ options="{'no_create': True}"
57
+ />
58
+ </div>
59
+ </div>
60
+ <field
61
+ name="account_ids"
62
+ nolabel="1"
63
+ widget="many2many_tags"
64
+ options="{'no_create': True}"
65
+ colspan="4"
66
+ />
67
+ </group>
68
+ <group
69
+ name="Filter analytic accounts"
70
+ groups="analytic.group_analytic_accounting"
71
+ >
72
+ <field
73
+ name="analytic_account_ids"
74
+ widget="many2many_tags"
75
+ options="{'no_create': True}"
76
+ />
77
+ <field name="no_analytic" />
78
+ <field name="all_analytic" />
79
+ </group>
80
+ </page>
81
+ <page string="Columns">
50
82
  <field
51
- name="account_code_to"
52
- class="oe_inline"
53
- options="{'no_create': True}"
83
+ name="column_ids"
84
+ context="{'default_res_name': 'open.items.report.wizard'}"
85
+ widget="one2many"
54
86
  />
55
- </div>
56
- </div>
57
- <field
58
- name="account_ids"
59
- nolabel="1"
60
- widget="many2many_tags"
61
- options="{'no_create': True}"
62
- colspan="4"
63
- />
64
- </group>
65
- <group
66
- name="Filter analytic accounts"
67
- groups="analytic.group_analytic_accounting"
68
- >
69
- <field
70
- name="analytic_account_ids"
71
- widget="many2many_tags"
72
- options="{'no_create': True}"
73
- />
74
- <field name="no_analytic" />
75
- <field name="all_analytic" />
76
- </group>
87
+ </page>
88
+ </notebook>
89
+ </sheet>
77
90
  <footer>
78
91
  <button
79
92
  name="button_export_html"
@@ -233,7 +233,7 @@ class TrialBalanceReportWizard(models.TransientModel):
233
233
 
234
234
  def _print_report(self, report_type):
235
235
  self.ensure_one()
236
- data = self._prepare_report_trial_balance()
236
+ data = self._prepare_report_data()
237
237
  if report_type == "xlsx":
238
238
  report_name = "a_f_r.report_trial_balance_xlsx"
239
239
  else:
@@ -247,29 +247,31 @@ class TrialBalanceReportWizard(models.TransientModel):
247
247
  .report_action(self, data=data)
248
248
  )
249
249
 
250
- def _prepare_report_trial_balance(self):
251
- self.ensure_one()
252
- return {
253
- "wizard_id": self.id,
254
- "date_from": self.date_from,
255
- "date_to": self.date_to,
256
- "only_posted_moves": self.target_move == "posted",
257
- "hide_account_at_0": self.hide_account_at_0,
258
- "foreign_currency": self.foreign_currency,
259
- "company_id": self.company_id.id,
260
- "account_ids": self.account_ids.ids or [],
261
- "partner_ids": self.partner_ids.ids or [],
262
- "journal_ids": self.journal_ids.ids or [],
263
- "fy_start_date": self.fy_start_date,
264
- "show_hierarchy": self.show_hierarchy,
265
- "limit_hierarchy_level": self.limit_hierarchy_level,
266
- "show_hierarchy_level": self.show_hierarchy_level,
267
- "hide_parent_hierarchy_level": self.hide_parent_hierarchy_level,
268
- "show_partner_details": self.show_partner_details,
269
- "unaffected_earnings_account": self.unaffected_earnings_account.id,
270
- "account_financial_report_lang": self.env.lang,
271
- "grouped_by": self.grouped_by,
272
- }
250
+ def _prepare_report_data(self):
251
+ res = super()._prepare_report_data()
252
+ res.update(
253
+ {
254
+ "date_from": self.date_from,
255
+ "date_to": self.date_to,
256
+ "only_posted_moves": self.target_move == "posted",
257
+ "hide_account_at_0": self.hide_account_at_0,
258
+ "foreign_currency": self.foreign_currency,
259
+ "company_id": self.company_id.id,
260
+ "account_ids": self.account_ids.ids or [],
261
+ "partner_ids": self.partner_ids.ids or [],
262
+ "journal_ids": self.journal_ids.ids or [],
263
+ "fy_start_date": self.fy_start_date,
264
+ "show_hierarchy": self.show_hierarchy,
265
+ "limit_hierarchy_level": self.limit_hierarchy_level,
266
+ "show_hierarchy_level": self.show_hierarchy_level,
267
+ "hide_parent_hierarchy_level": self.hide_parent_hierarchy_level,
268
+ "show_partner_details": self.show_partner_details,
269
+ "unaffected_earnings_account": self.unaffected_earnings_account.id,
270
+ "account_financial_report_lang": self.env.lang,
271
+ "grouped_by": self.grouped_by,
272
+ }
273
+ )
274
+ return res
273
275
 
274
276
  def _export(self, report_type):
275
277
  """Default export is PDF."""
@@ -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._prepare_vat_report()
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:
@@ -82,18 +82,20 @@ class VATReportWizard(models.TransientModel):
82
82
  .report_action(self, data=data)
83
83
  )
84
84
 
85
- def _prepare_vat_report(self):
86
- self.ensure_one()
87
- return {
88
- "wizard_id": self.id,
89
- "company_id": self.company_id.id,
90
- "date_from": self.date_from,
91
- "date_to": self.date_to,
92
- "based_on": self.based_on,
93
- "only_posted_moves": self.target_move == "posted",
94
- "tax_detail": self.tax_detail,
95
- "account_financial_report_lang": self.env.lang,
96
- }
85
+ def _prepare_report_data(self):
86
+ res = super()._prepare_report_data()
87
+ res.update(
88
+ {
89
+ "company_id": self.company_id.id,
90
+ "date_from": self.date_from,
91
+ "date_to": self.date_to,
92
+ "based_on": self.based_on,
93
+ "only_posted_moves": self.target_move == "posted",
94
+ "tax_detail": self.tax_detail,
95
+ "account_financial_report_lang": self.env.lang,
96
+ }
97
+ )
98
+ return res
97
99
 
98
100
  def _export(self, report_type):
99
101
  """Default export is PDF."""
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-account_financial_report
3
- Version: 15.0.3.2.2
3
+ Version: 15.0.3.3.0.1
4
4
  Summary: OCA Financial Reports
5
5
  Home-page: https://github.com/OCA/account-financial-reporting
6
- Author: Camptocamp,initOS GmbH,redCOR AG,ForgeFlow,Odoo Community Association (OCA)
6
+ Author: Camptocamp,initOS GmbH,redCOR AG,ForgeFlow,Tecnativa,Odoo Community Association (OCA)
7
7
  Author-email: support@odoo-community.org
8
8
  License: AGPL-3
9
9
  Classifier: Programming Language :: Python
@@ -24,7 +24,7 @@ Account Financial Reports
24
24
  !! This file is generated by oca-gen-addon-readme !!
25
25
  !! changes will be overwritten. !!
26
26
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
27
- !! source digest: sha256:4a2f118cba763f2c8bb858ccba9ade51e887b9c3dc43db9bf1b6b06aa6bca6b8
27
+ !! source digest: sha256:19c6a50b17dc525e27768d61a9be0e54bfde38f6cfcb359f3e72d5f7a69fbfc0
28
28
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29
29
 
30
30
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -55,6 +55,9 @@ Invoicing / Reporting / OCA accounting reports.
55
55
  - VAT Report
56
56
  - Journal Ledger
57
57
 
58
+ It is possible to select the columns to show and limit the size of some of them from the
59
+ columns page.
60
+
58
61
  Currently General ledger, Trial Balance and Open Items are fully compatible with a foreign
59
62
  currency set up in account in order to display balances. Moreover, any foreign
60
63
  currency used in account move lines is properly shown.
@@ -111,10 +114,18 @@ Known issues / Roadmap
111
114
  * It would be nice to have in reports a column indicating the
112
115
  state of the entries when the option "All Entries" is selected
113
116
  in "Target Moves" field in a wizard
117
+ * Adapt reports so that the order of the columns displayed is dynamic
118
+ * Remove duplicated options to show columns (it has not been made in a stable version so
119
+ as not to generate confusion in users)
114
120
 
115
121
  Changelog
116
122
  =========
117
123
 
124
+ 15.0.3.2.3 (2025-02-17)
125
+ ~~~~~~~~~~~~~~~~~~~~~~~
126
+
127
+ * Added the option to select columns to display and the ability to limit the width of the text
128
+
118
129
  11.0.2.5.0 (2019-04-26)
119
130
  ~~~~~~~~~~~~~~~~~~~~~~~
120
131
 
@@ -155,6 +166,7 @@ Authors
155
166
  * initOS GmbH
156
167
  * redCOR AG
157
168
  * ForgeFlow
169
+ * Tecnativa
158
170
 
159
171
  Contributors
160
172
  ~~~~~~~~~~~~
@@ -186,6 +198,7 @@ Contributors
186
198
  * Alexandre D. Díaz
187
199
  * Víctor Martínez
188
200
  * Carolina Fernandez
201
+ * Carlos Dauden
189
202
 
190
203
  * `Sygel <https://www.sygel.es>`__:
191
204
 
@@ -1,66 +1,68 @@
1
- odoo/addons/account_financial_report/README.rst,sha256=LEUbY6--WKI--yyIO1Zlzq5tdSUKpyfSTcnlXWJ8Q6w,6889
1
+ odoo/addons/account_financial_report/README.rst,sha256=jk2LXX6BzkKpkFcQCrYHFREN4tbsNyxeJ1hZLNf3Q5I,7368
2
2
  odoo/addons/account_financial_report/__init__.py,sha256=YoL8hk5QxSifbFJL7gPzpOSk-3zB1OSHJBXyZK25G6Q,187
3
- odoo/addons/account_financial_report/__manifest__.py,sha256=ipa6KTDXp9Z2k-dF9MBYZMdJyoyyqLzQdKkkjm_pVnA,2307
3
+ odoo/addons/account_financial_report/__manifest__.py,sha256=bv2AKOYgFgRw64VtoFUOPZcMK2gQxBsGOMXdiKuEOR4,2463
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=1xJDwfyAn4ULV3o6Tj0vpcIZJerwhmXfWF7tqKUskos,85459
7
- odoo/addons/account_financial_report/i18n/ar.po,sha256=bihZISzHhgELfeIHhrekJttgJsTq-D-3T0YAXMoxWzQ,93182
8
- odoo/addons/account_financial_report/i18n/ca.po,sha256=V1jky-Xj_Ju1xCS2JDSFO5rndKz43jWPY6tiyM6wYGI,90022
9
- odoo/addons/account_financial_report/i18n/da.po,sha256=qaMeKCi-_c7hUjsYHSm3vf-DbrhP5njy-n2waDNLGmI,89254
10
- odoo/addons/account_financial_report/i18n/de.po,sha256=28V7Da_9dB0UOyh-e_e-Hkvw5N-9WxkJ6VHu0fhgzj4,95814
11
- odoo/addons/account_financial_report/i18n/es.po,sha256=78qYu91LYmVJTIY8s--krVQOzlfdzU1Jjy-h6xqvaaw,90959
12
- odoo/addons/account_financial_report/i18n/es_AR.po,sha256=t-bs7ro-6J3V1emyLxyni8BiW4KugsJ0LO2NJWgjaxg,93657
13
- odoo/addons/account_financial_report/i18n/es_MX.po,sha256=y6KQlGhDae0jnC1EK9SOzwcz3pI6w0hv7lmICWKzrbk,83791
14
- odoo/addons/account_financial_report/i18n/fr.po,sha256=n4FUDKoWpAm0xhn4aMD2iyQD7-cfL8SLMgIcmC50i6A,96567
15
- odoo/addons/account_financial_report/i18n/fr_CH.po,sha256=mQRn7YWQvrmyk6TpkYUA_eFmdOJhU34p1OP6oW1LwBA,95345
16
- odoo/addons/account_financial_report/i18n/fr_FR.po,sha256=imD7-iwFXnx06ZbM2pYfIY-khk0mX_L8EIrsV1X3L60,90433
17
- odoo/addons/account_financial_report/i18n/hr.po,sha256=lDfO8Rg6B-FPHDd1bZTf9B_5poxb3vWJxBYmToI0rsg,83880
18
- odoo/addons/account_financial_report/i18n/hr_HR.po,sha256=tXNzaXYBOkrdMfkJLQelZWX7W0wpwgCoQkZ4FDAejA8,84641
19
- odoo/addons/account_financial_report/i18n/it.po,sha256=SBVLxTlDvgc0yEW9GFJalYtPrtBqH30fwvyLEyuV920,91048
20
- odoo/addons/account_financial_report/i18n/ja.po,sha256=fgTm4sI1be0tgkeYmDIl8FA2hoO5qZczfIZhPZ5SFlE,84402
21
- odoo/addons/account_financial_report/i18n/nl.po,sha256=q5AugkgeO2UGW1fyIvRUPuqWj0sfCN5UJb0Hx2G4vp8,95437
22
- odoo/addons/account_financial_report/i18n/nl_NL.po,sha256=ogD44RfLbhBbKp3pOSjRep_A7OXwtpRB8zd4xIkVZUY,84307
23
- odoo/addons/account_financial_report/i18n/pt.po,sha256=GDf6y61DfBiy9_cS2i9iVUNkyxCaj23t1vjOdDL-TZA,90952
24
- odoo/addons/account_financial_report/i18n/pt_BR.po,sha256=VKTfrqiVB0G3WdtDORHrAW9dQJm-oq-B140fAPEDhm4,98901
25
- odoo/addons/account_financial_report/i18n/ro.po,sha256=vTzehKFDPpOSz3_Aqw_Qgc8xXhl7d5v8dRuOwA9Bl4U,91835
26
- odoo/addons/account_financial_report/models/__init__.py,sha256=KCE4mRzM1HSu4Mjg3thvCgBOaEyw5w8VHB--Du-wXyE,195
6
+ odoo/addons/account_financial_report/data/report_column_data.xml,sha256=6AzEyI3_k76H_wCnr15RHw3lzx9xI8s2udoiPIBDMCA,14003
7
+ odoo/addons/account_financial_report/i18n/account_financial_report.pot,sha256=LNhhdPWKFn1WXMwKaU-8PhDmBetsy7gtfnv0zoMnStw,93407
8
+ odoo/addons/account_financial_report/i18n/ar.po,sha256=xI73iIFyQb_nMRau227U47gjpSJeojihrRmoaiLQreo,101099
9
+ odoo/addons/account_financial_report/i18n/ca.po,sha256=0mnyHSczfEAj4jYR5ZvGDni7SAyspfRNXwGAkX0qbBc,97970
10
+ odoo/addons/account_financial_report/i18n/da.po,sha256=FtzgatuGLkrBqXjrQ3NnrAp_FQdFPBQrMlz14mGsPK0,97202
11
+ odoo/addons/account_financial_report/i18n/de.po,sha256=JWV1Uw3JbwmYpheGil_mrWqq_x5BT-VZ54iZAt-xNY4,103731
12
+ odoo/addons/account_financial_report/i18n/es.po,sha256=LEp99Vnk6zfj_lji74vkmt4y09Un8PHLaIPLqr3PtVg,98907
13
+ odoo/addons/account_financial_report/i18n/es_AR.po,sha256=Gh4yUPOPDyYKwUx1nCSEsAvcdQyiC7YsR6U7tZRecz8,101605
14
+ odoo/addons/account_financial_report/i18n/es_MX.po,sha256=VRWbkZKf-qmfBCQuVsUo7HTILCQkaPFpbIFYdY0ikwo,91739
15
+ odoo/addons/account_financial_report/i18n/fr.po,sha256=RnpCfUkz7d4qpYmeHVd5LCXZgauv4qv9V0xD3Iawze0,104484
16
+ odoo/addons/account_financial_report/i18n/fr_CH.po,sha256=Ke8cnXRCPEsMviOgpeSuPwBr9_Be3D39sUTv0pgP2qo,103262
17
+ odoo/addons/account_financial_report/i18n/fr_FR.po,sha256=nghqxPykIWzu5BlDvPmTIWTdveCg1L9Iob4njF709Gc,98381
18
+ odoo/addons/account_financial_report/i18n/hr.po,sha256=iQ0wS8ZPCAvT6UxxSIpF03DqzusJHEt75A0BHE0_7CQ,91828
19
+ odoo/addons/account_financial_report/i18n/hr_HR.po,sha256=3jrKli0xseG8iTDlJlV9yS06GSAnY1P15Yi1nIvqGu0,92589
20
+ odoo/addons/account_financial_report/i18n/it.po,sha256=NAWEpvleQK1_2YiYaDlMjLRnjNBX4m78CAe40twhFYE,98965
21
+ odoo/addons/account_financial_report/i18n/ja.po,sha256=MVHKXtC6Gsj9OMbY8QL_hJyzya-iy3sLyewwM5uv5A8,92350
22
+ odoo/addons/account_financial_report/i18n/nl.po,sha256=n1DKa9HcuGTZ4MQWhAxaEdzNlci_YEKfbcgG8QzFZVU,103354
23
+ odoo/addons/account_financial_report/i18n/nl_NL.po,sha256=2ci5e7Q0bM6a0s2Lsi3aP2uB2SlyBlEhP57IbXbEgwk,92255
24
+ odoo/addons/account_financial_report/i18n/pt.po,sha256=Hy8Y2zVCipYfyRqUFqnDYclHL2TBQU1tnCkdS-7y63Q,98900
25
+ odoo/addons/account_financial_report/i18n/pt_BR.po,sha256=4XRSxKbDwh3gHswdGTHaoe1gFXW_LRz7R1d5_idXQYA,106818
26
+ odoo/addons/account_financial_report/i18n/ro.po,sha256=j7sLdJHXxYEt-jqBK65NBeGPir2QKKSPZte70fFY37U,99752
27
+ odoo/addons/account_financial_report/models/__init__.py,sha256=fPDHZ9DSblaC5l5dMyfX_yyWKjJUfXkvetSyn2fRg4k,241
27
28
  odoo/addons/account_financial_report/models/account.py,sha256=wqzI7oZ9H5XsJM6Ngo3WewQ7lExyX-fuKNzSljpj644,422
28
29
  odoo/addons/account_financial_report/models/account_age_report_configuration.py,sha256=U5Xr0uAD696TohTCkKsY3HZDYAfVrlocTIGYzr2JlkA,1664
30
+ odoo/addons/account_financial_report/models/account_financial_report_column.py,sha256=3ACsViO0hrgTgZyn3Qyw6veEt3_BPvg7W9FP52sSUe0,618
29
31
  odoo/addons/account_financial_report/models/account_group.py,sha256=uic9Nc_xSXvW-_BApnsLw9Sk3Qulh0W3ByWzZnVbAgc,2681
30
32
  odoo/addons/account_financial_report/models/account_move_line.py,sha256=s7uQ_2R25jyPmKzhDHDIvuJypqmwKOeVU77zkaOCjGw,1540
31
33
  odoo/addons/account_financial_report/models/ir_actions_report.py,sha256=_Z19npQQy6zB_0pvIWxjZvBSwWNsK5ogykvxQVauTMU,989
32
34
  odoo/addons/account_financial_report/models/res_config_settings.py,sha256=7b6qOl9jmC-eJF8vTA9wbefs6C8cn_Jp8hJBq_o6mvk,443
33
35
  odoo/addons/account_financial_report/readme/CONFIGURE.rst,sha256=gTsDroUsSEy4stKQpIO7Y3inHh8YClbJ634HY7vREUg,901
34
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst,sha256=mudh7BaCjZbrc6Tz5V7mIn56WRobuEYKUto5a3TlHXE,1264
35
- odoo/addons/account_financial_report/readme/DESCRIPTION.rst,sha256=84yTOFvIHu7_Zabth6laiQ5BXEeWjbwqJw5_lqBMFEo,759
36
- odoo/addons/account_financial_report/readme/HISTORY.rst,sha256=sgCgHPjX3fXH6T0ySBomUUFE_Z2ghfpfdtWrNfg0lCQ,535
37
- odoo/addons/account_financial_report/readme/ROADMAP.rst,sha256=CK1z_cr3bdtTPHyCOXliTBkAB0rqPL_srPhIkBj-6Xw,362
36
+ odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst,sha256=3_DASo6Z41Z2b2i9jrbfeogVp2Y8RTGH8s2jLdsNL3g,1282
37
+ odoo/addons/account_financial_report/readme/DESCRIPTION.rst,sha256=wC9EG5-ELAHCpqJD9ZIkGVXBvpQMMYuzvFVVwnLpO-Q,863
38
+ odoo/addons/account_financial_report/readme/HISTORY.rst,sha256=HbqbHPZrseyJiuEblUs1hI4uqZuUm-MJGPCNwHveOzU,680
39
+ odoo/addons/account_financial_report/readme/ROADMAP.rst,sha256=TB76WZcK-5JtDM45DJmNTY0hho0C9sm3TqPy8NJIzl8,562
38
40
  odoo/addons/account_financial_report/report/__init__.py,sha256=D-L2gAu6aAsGo9YtxVH14sulDEPHK0CEy7A2kTwewTE,618
39
- odoo/addons/account_financial_report/report/abstract_report.py,sha256=54-xtL4smXKwYIV9LkPS2OMbvVRTkZ-L7hXtgtOFixw,5959
41
+ odoo/addons/account_financial_report/report/abstract_report.py,sha256=-W_JbTZXVEzKiiFVRO1-vLlPbvaFqnCUqJEoWP_CCB4,6526
40
42
  odoo/addons/account_financial_report/report/abstract_report_xlsx.py,sha256=tx3R8NNXKU6AEobYs5urvaVHNqOxXCOZTY3Rf80Ec0c,29932
41
- odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=p-D_r-PA8dKl0tHYawEcP5QpvjwiBq7eSQm2kRBHY-A,20848
43
+ odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=wymCtiDXxfkp5Dq5tzPXqRaDZIK3ExJLSwZW_2rqgkM,20993
42
44
  odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py,sha256=9xB660H5Xv8aX65oy-1gDXBSjQERIpRrlJhbtXtyToQ,14492
43
- odoo/addons/account_financial_report/report/general_ledger.py,sha256=y4umLA0pvJZbfJXxV1FKMETdjY2nikZ-9ZwWtfbn-f8,38725
45
+ odoo/addons/account_financial_report/report/general_ledger.py,sha256=-4gxwD5acGT5vT2H-T7EL1ksffL3Flp7_ZP2zwYfZac,38918
44
46
  odoo/addons/account_financial_report/report/general_ledger_xlsx.py,sha256=tMM4_xbrT5ZkCsBmFapcg7ginACS2kXkaUybD1nK4pU,16527
45
- odoo/addons/account_financial_report/report/journal_ledger.py,sha256=j83-QCAONs7AAh1C3C7_3_nByKk43B7o3Atx42OhdOc,15362
47
+ odoo/addons/account_financial_report/report/journal_ledger.py,sha256=zfA1t92b_cGmdKn8K4FOzzbai87GXROwcfCGIkT0Spk,15612
46
48
  odoo/addons/account_financial_report/report/journal_ledger_xlsx.py,sha256=Pp7iDkBjSk0BqZkSPAiKI2hBHNcjKYjZoBxuL_ENz5E,10126
47
- odoo/addons/account_financial_report/report/open_items.py,sha256=ylazC_E-iYHWdYmSz8iC2gljSvOksSdB-b0weSqF0EM,14091
49
+ odoo/addons/account_financial_report/report/open_items.py,sha256=I_qBL-k5g2oo46c70owOPbYN8PcdwYg2usXuvGBhFqI,14284
48
50
  odoo/addons/account_financial_report/report/open_items_xlsx.py,sha256=a4HMQ97VkwTO_8tnxyzFIIlLkawaG1HBXnujgYUI_Ug,15119
49
- odoo/addons/account_financial_report/report/trial_balance.py,sha256=jVrUCrop4qgfu2nugeNP8g5X7pbLBU88XYCzzRXKUaY,40784
51
+ odoo/addons/account_financial_report/report/trial_balance.py,sha256=xYf_BgPtYOoViI7UYmFIkaT7natO5yKMIST85xdK5c8,40981
50
52
  odoo/addons/account_financial_report/report/trial_balance_xlsx.py,sha256=iGn0bVz63eMNL6Xdnjk8r4JdZrX2ojnEm9E0BaOcDoY,13278
51
- odoo/addons/account_financial_report/report/vat_report.py,sha256=mRr8zk3sTVvz7CFHQAzDL4Eexqzt7X6JVOEPD2axumM,10163
53
+ odoo/addons/account_financial_report/report/vat_report.py,sha256=td57Fkdaz_feJ5hg6eFDVT2KV405svzkoAObFq2pGt0,10373
52
54
  odoo/addons/account_financial_report/report/vat_report_xlsx.py,sha256=aa0dLzYdywjmO63ONRYUBTpSGmsPfEjX60CkUbULuo8,2317
53
55
  odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml,sha256=WNaWvMoBR74v6SGj13Tp6Eydxd-zk93Yf3x0dnRIj28,43416
54
- odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=se25p_W2iLo91mJgHsDAKiW3U2JJGWu8h5duVPSZKRg,38706
55
- odoo/addons/account_financial_report/report/templates/journal_ledger.xml,sha256=qPupJ-t85k2_H-o12pwOyvpYCpROBkVpSsGaib3mGkI,21619
56
+ odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=WTQ_T06pyEUGw9--K8iYhjQ8HRLnxajXKci6Ltk2h8o,41410
57
+ odoo/addons/account_financial_report/report/templates/journal_ledger.xml,sha256=Hub3KEc3t0Ii5atiQK8ryvMa32EkoSKfm8yS8cnG3uM,23314
56
58
  odoo/addons/account_financial_report/report/templates/layouts.xml,sha256=gCejPAn8GLrySSve8pGcs0fY5nr48C3mmyuoEJVZkJ4,1526
57
- odoo/addons/account_financial_report/report/templates/open_items.xml,sha256=OxyVnVzPa0UKGNuV2uqgWh7RxMwsWu8OzQbcIV0iDaE,22821
59
+ odoo/addons/account_financial_report/report/templates/open_items.xml,sha256=8w0DBoz2DsPjoziC9rJDybbu5r7CVsrhL7OFt6ddV9Y,24299
58
60
  odoo/addons/account_financial_report/report/templates/trial_balance.xml,sha256=u4MvCt5y7uCMCJajpm81miLD6e22w7sSBVIiC6xU86o,52685
59
61
  odoo/addons/account_financial_report/report/templates/vat_report.xml,sha256=F5hQzdM8NTuLW04mT6SMjbdush5r7C81_RXa7NByfAY,8128
60
- odoo/addons/account_financial_report/security/ir.model.access.csv,sha256=S1VQLLwLeaOeAMYGqtoOqHUaZVrvDUVE4Z-0-SRjSGQ,1134
62
+ odoo/addons/account_financial_report/security/ir.model.access.csv,sha256=KDi6ri7JCnLjbEM1u3mT5SNY2pRVEwTdHoScf8xn1Lw,1324
61
63
  odoo/addons/account_financial_report/security/security.xml,sha256=gpNJnzruXfeYskn26FqY9U04FiuTf8vgLCKEGY8PADM,422
62
64
  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=WmlstSdN4EPTHEsTNVsixnmf-PLL1YX1nIvsa8E-WhE,19748
65
+ odoo/addons/account_financial_report/static/description/index.html,sha256=1eZMjVnKRC5M5L28DfYK-VMst6w6idYcOIs1F0CfDf8,20468
64
66
  odoo/addons/account_financial_report/static/src/css/report.css,sha256=y0CysZUK3afkYSHgBaMi_qmh8da3XXEZwJDjRBg6HqQ,2335
65
67
  odoo/addons/account_financial_report/static/src/css/report_html.css,sha256=I1kX1RsThtjGNLOaNJEWCvMnB9iAFW6nGkcyFYZzJoA,135
66
68
  odoo/addons/account_financial_report/static/src/js/action_manager_report.js,sha256=g8aZkSRMgNcFzQ4f_3mmeKl7oNnoap_cDUxuyGxMT4M,1608
@@ -69,13 +71,14 @@ odoo/addons/account_financial_report/static/src/js/report.js,sha256=ZXfsWCGwbthi
69
71
  odoo/addons/account_financial_report/static/src/xml/report.xml,sha256=nbuKKbsWaqHOw-PCioD9_wukaJywCUhftcbIkqMfKyA,530
70
72
  odoo/addons/account_financial_report/tests/__init__.py,sha256=cbhcI5XU9FQX7eC4KT0dR7FEUAUbPuWAi1qBltppaXs,351
71
73
  odoo/addons/account_financial_report/tests/test_age_report_configuration.py,sha256=_Y89HWY2DIzQW1glgScdNJJssqTNvqYLvw06gpUoCVk,1376
72
- odoo/addons/account_financial_report/tests/test_aged_partner_balance.py,sha256=C_X7bLkWOK-5BVW5JhFG2poz4yfx3YYOvgkfhM5REnQ,5999
73
- odoo/addons/account_financial_report/tests/test_general_ledger.py,sha256=srPkrw2tLXVtzh9519_e_5EcMe-tcK45n6ZJ0b0nfoI,30599
74
- odoo/addons/account_financial_report/tests/test_journal_ledger.py,sha256=Nm7_JbaR69QqdGmEpttfmXNWGOg58bUliMPCTAU3__g,11154
75
- odoo/addons/account_financial_report/tests/test_open_items.py,sha256=WQ8MEyI-6lVcDbTaVCAHTUtWulCV7ZYMb_UvXMM72w0,3559
76
- odoo/addons/account_financial_report/tests/test_trial_balance.py,sha256=u6aIXSI86mmUcTFh2JC7hNsQpPt8A6Gn25orAw6RsEk,28163
77
- odoo/addons/account_financial_report/tests/test_vat_report.py,sha256=jgO2_4LjK9GpYVBkBAkCd-0xjvCCWAXDrSn2k5Vf6vk,14788
74
+ odoo/addons/account_financial_report/tests/test_aged_partner_balance.py,sha256=ZHhQm9D_o4obsARyZd8NmaGXK8cd3SA35q1RqhRJLbA,5935
75
+ odoo/addons/account_financial_report/tests/test_general_ledger.py,sha256=5PzMgC8og48Q1Ce_cOJsXqMalITEhHNHJGH4lUB0xF8,30589
76
+ odoo/addons/account_financial_report/tests/test_journal_ledger.py,sha256=sbOB-T8nFOx6_vo5WZaVAmOB0optIugriDi89oUZ8qw,11104
77
+ odoo/addons/account_financial_report/tests/test_open_items.py,sha256=wAhR56K3NCHqyO_FPHtMcugm5ObR1XeaM4x7ECWFXi0,3553
78
+ odoo/addons/account_financial_report/tests/test_trial_balance.py,sha256=iYPu1NcYai_I4OkOLujD5lc3k4D6DYCnVdDw8vmYabE,28127
79
+ odoo/addons/account_financial_report/tests/test_vat_report.py,sha256=7op_kZGnD2nM8Y3KZ6LcIaZKrPpqEfxs3VIUVdZgKoE,14789
78
80
  odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml,sha256=T-BtevIo1gxvr7usSzpXISIqDAl7b2rd2LFCkB3TVQE,1767
81
+ odoo/addons/account_financial_report/view/account_financial_report_column_view.xml,sha256=GQIQ9vJY8Duanc6ust-5iGlQQh1PR9pmeiJgLUL4PqY,1978
79
82
  odoo/addons/account_financial_report/view/account_view.xml,sha256=9KKmGXEEvyUygmVrWIR3rvqJICCHvbGayGwZ40tI1iA,534
80
83
  odoo/addons/account_financial_report/view/report_aged_partner_balance.xml,sha256=EUjo6LxHznk2wdKQCO9VR83YzPLAEFZ7DeiaHmtxvQQ,341
81
84
  odoo/addons/account_financial_report/view/report_general_ledger.xml,sha256=d4MnPj3DaDa4xnREMHYOitPiaDF3T6OvzZayOpdSKiM,329
@@ -85,20 +88,20 @@ odoo/addons/account_financial_report/view/report_trial_balance.xml,sha256=QRzD5Z
85
88
  odoo/addons/account_financial_report/view/report_vat_report.xml,sha256=Bc4DAlUg_g92GUgCRsLoC9Lf0yzfm6sh_ZrPtVACywA,321
86
89
  odoo/addons/account_financial_report/view/res_config_settings_views.xml,sha256=GtTwacwa_GzueCBOfAU_yYAns_y7yrCUo9CM_dxFiFw,2986
87
90
  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=RLvXJzFA-75Ui-AokPwzZ9yGWfuMQvVPXhhEgQMH26E,1584
89
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py,sha256=aDy76jXJg3MvbtdRWSxN5WClfZ_uiFgZ3EcY7giXghs,6829
91
+ odoo/addons/account_financial_report/wizard/abstract_wizard.py,sha256=VM2MTYj57aYxv2LT3I2YqsFhH47LNmu96ZjP5ZSzGdU,2373
92
+ odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py,sha256=8549TclPFWogGtDkP6ijGsPpNb5HtFthuSjK0rAHlZI,6876
90
93
  odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml,sha256=cgY9-5tpkWOEwL39Z5kHDNREITYAxaUSADRhwzaUJFE,4481
91
- odoo/addons/account_financial_report/wizard/general_ledger_wizard.py,sha256=ZilX5D6MqXZDda_8UlQ0D7cRuqdJoIwwJvDzKI3wppc,11504
92
- odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml,sha256=P_0_TvjXIlyCI7zdAJhNi8RTWd6h5tGtElDoEg-339U,8356
93
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py,sha256=CA44N2yVdZbAttw3JUK6hueMOQc__wY5Abc2hDW49_0,5546
94
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml,sha256=s3go3x-VSCcr1xNAE3Lzj1FnymyS76hxzazuWtNc91k,2957
95
- odoo/addons/account_financial_report/wizard/open_items_wizard.py,sha256=JUOLiUNl6jyGDQACf70hqsBykN5Bax8pGSOTQk2beu8,8247
96
- odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml,sha256=B6AEXvVHm02J5Dz75SirpdszyqdPDtpB_7AvSW2X7nE,5226
97
- odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256=rq4knziPEVaMM2Jl0jXB1q_Zt4HKzTmZ2jeWVAewEEE,11052
94
+ odoo/addons/account_financial_report/wizard/general_ledger_wizard.py,sha256=yV8c9OcRC8X5A39qGVE1HzGngSjbA_oeEDsVeSCTrnc,11383
95
+ odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml,sha256=lBb2S2zNs7yBXEnJXf79Q8ZEI_otx0Siy_Qn4LDZqJw,8712
96
+ odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py,sha256=mgjlJTrnoy-sfQL_vhzE7lTL3eq8Jx5GZp3zzXl0u4M,5605
97
+ odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml,sha256=G21Nk1IbcSai78gRAwm0jJ_VspGNrNbOJ-H-pFOm7zo,3976
98
+ odoo/addons/account_financial_report/wizard/open_items_wizard.py,sha256=hneYB_7F6vreJFRBu212__64JCrtQ-Dai_6UGQpcf14,8326
99
+ odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml,sha256=7xgjw3qoADL87k9JjSSf13Cc6X16WllcyVjYQa95zkg,6571
100
+ odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256=yED2cNXE5vaIowHCBtCxhU8tVCc4HQMAHlGJOPC5ytI,11141
98
101
  odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml,sha256=kzsselPX_jYDWQEbDSXIS5K2vKuyzjTZMdinH0976c0,7413
99
- odoo/addons/account_financial_report/wizard/vat_report_wizard.py,sha256=pJATDNWLcEWvctby5e5yvv4Kz7YDfCTi7YZP7slA8a4,3424
102
+ odoo/addons/account_financial_report/wizard/vat_report_wizard.py,sha256=yKzow23QPvRLz7Fp1ZwyCiW1p64w7wFXZAtG-srRkpU,3489
100
103
  odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml,sha256=T3P81O4csDGP7Jmf7eAtmbIIldja3IoXbBmweMMt8vA,2330
101
- odoo_addon_account_financial_report-15.0.3.2.2.dist-info/METADATA,sha256=L3JJPzmpeObLMdR65xNZ6lVSQC6fy4L3_T257S30IDI,7565
102
- odoo_addon_account_financial_report-15.0.3.2.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
103
- odoo_addon_account_financial_report-15.0.3.2.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
104
- odoo_addon_account_financial_report-15.0.3.2.2.dist-info/RECORD,,
104
+ odoo_addon_account_financial_report-15.0.3.3.0.1.dist-info/METADATA,sha256=RCHaX0CIWVhxzAiVII-_qxWt-wSSj2JBLKVwX-UQCFw,8056
105
+ odoo_addon_account_financial_report-15.0.3.3.0.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
106
+ odoo_addon_account_financial_report-15.0.3.3.0.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
107
+ odoo_addon_account_financial_report-15.0.3.3.0.1.dist-info/RECORD,,