odoo-addon-account-financial-report 15.0.3.2.1__py3-none-any.whl → 15.0.3.3.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 +14 -1
- odoo/addons/account_financial_report/__manifest__.py +5 -1
- odoo/addons/account_financial_report/data/report_column_data.xml +358 -0
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +125 -0
- odoo/addons/account_financial_report/models/__init__.py +1 -0
- odoo/addons/account_financial_report/models/account_financial_report_column.py +17 -0
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst +1 -0
- odoo/addons/account_financial_report/readme/DESCRIPTION.rst +3 -0
- odoo/addons/account_financial_report/readme/HISTORY.rst +5 -0
- odoo/addons/account_financial_report/readme/ROADMAP.rst +3 -0
- odoo/addons/account_financial_report/report/abstract_report.py +15 -0
- odoo/addons/account_financial_report/report/aged_partner_balance.py +16 -12
- odoo/addons/account_financial_report/report/general_ledger.py +29 -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 +116 -52
- odoo/addons/account_financial_report/report/templates/journal_ledger.xml +79 -31
- odoo/addons/account_financial_report/report/templates/open_items.xml +65 -24
- odoo/addons/account_financial_report/report/trial_balance.py +29 -25
- odoo/addons/account_financial_report/report/vat_report.py +17 -12
- odoo/addons/account_financial_report/security/ir.model.access.csv +1 -0
- odoo/addons/account_financial_report/static/description/index.html +33 -19
- 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/view/account_financial_report_column_view.xml +46 -0
- odoo/addons/account_financial_report/wizard/abstract_wizard.py +24 -1
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +19 -17
- odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +1 -5
- odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml +7 -0
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py +19 -17
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml +48 -32
- odoo/addons/account_financial_report/wizard/open_items_wizard.py +22 -20
- odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +79 -66
- odoo/addons/account_financial_report/wizard/trial_balance_wizard.py +26 -24
- odoo/addons/account_financial_report/wizard/vat_report_wizard.py +15 -13
- {odoo_addon_account_financial_report-15.0.3.2.1.dist-info → odoo_addon_account_financial_report-15.0.3.3.0.dist-info}/METADATA +16 -3
- {odoo_addon_account_financial_report-15.0.3.2.1.dist-info → odoo_addon_account_financial_report-15.0.3.3.0.dist-info}/RECORD +43 -40
- {odoo_addon_account_financial_report-15.0.3.2.1.dist-info → odoo_addon_account_financial_report-15.0.3.3.0.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-15.0.3.2.1.dist-info → odoo_addon_account_financial_report-15.0.3.3.0.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.
|
|
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
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
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
|
-
<
|
|
10
|
-
<
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
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="
|
|
52
|
-
|
|
53
|
-
|
|
83
|
+
name="column_ids"
|
|
84
|
+
context="{'default_res_name': 'open.items.report.wizard'}"
|
|
85
|
+
widget="one2many"
|
|
54
86
|
/>
|
|
55
|
-
</
|
|
56
|
-
</
|
|
57
|
-
|
|
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.
|
|
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
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
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.
|
|
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
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
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.
|
|
3
|
+
Version: 15.0.3.3.0
|
|
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:
|
|
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,9 +1,10 @@
|
|
|
1
|
-
odoo/addons/account_financial_report/README.rst,sha256=
|
|
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=
|
|
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/
|
|
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
|
|
7
8
|
odoo/addons/account_financial_report/i18n/ar.po,sha256=bihZISzHhgELfeIHhrekJttgJsTq-D-3T0YAXMoxWzQ,93182
|
|
8
9
|
odoo/addons/account_financial_report/i18n/ca.po,sha256=V1jky-Xj_Ju1xCS2JDSFO5rndKz43jWPY6tiyM6wYGI,90022
|
|
9
10
|
odoo/addons/account_financial_report/i18n/da.po,sha256=qaMeKCi-_c7hUjsYHSm3vf-DbrhP5njy-n2waDNLGmI,89254
|
|
@@ -23,44 +24,45 @@ odoo/addons/account_financial_report/i18n/nl_NL.po,sha256=ogD44RfLbhBbKp3pOSjRep
|
|
|
23
24
|
odoo/addons/account_financial_report/i18n/pt.po,sha256=GDf6y61DfBiy9_cS2i9iVUNkyxCaj23t1vjOdDL-TZA,90952
|
|
24
25
|
odoo/addons/account_financial_report/i18n/pt_BR.po,sha256=VKTfrqiVB0G3WdtDORHrAW9dQJm-oq-B140fAPEDhm4,98901
|
|
25
26
|
odoo/addons/account_financial_report/i18n/ro.po,sha256=vTzehKFDPpOSz3_Aqw_Qgc8xXhl7d5v8dRuOwA9Bl4U,91835
|
|
26
|
-
odoo/addons/account_financial_report/models/__init__.py,sha256=
|
|
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=
|
|
35
|
-
odoo/addons/account_financial_report/readme/DESCRIPTION.rst,sha256=
|
|
36
|
-
odoo/addons/account_financial_report/readme/HISTORY.rst,sha256=
|
|
37
|
-
odoo/addons/account_financial_report/readme/ROADMAP.rst,sha256=
|
|
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
|
|
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=
|
|
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
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
55
|
-
odoo/addons/account_financial_report/report/templates/journal_ledger.xml,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
89
|
-
odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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.
|
|
102
|
-
odoo_addon_account_financial_report-15.0.3.
|
|
103
|
-
odoo_addon_account_financial_report-15.0.3.
|
|
104
|
-
odoo_addon_account_financial_report-15.0.3.
|
|
104
|
+
odoo_addon_account_financial_report-15.0.3.3.0.dist-info/METADATA,sha256=pUr_iDgbiGbCFtiE3fTs-CtglrjQeJdfdeuz7zlIuDk,8054
|
|
105
|
+
odoo_addon_account_financial_report-15.0.3.3.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
106
|
+
odoo_addon_account_financial_report-15.0.3.3.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
107
|
+
odoo_addon_account_financial_report-15.0.3.3.0.dist-info/RECORD,,
|
|
File without changes
|