odoo-addon-account-financial-report 16.0.1.15.2.2__py3-none-any.whl → 16.0.1.16.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 +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 +116 -52
- odoo/addons/account_financial_report/report/templates/journal_ledger.xml +79 -31
- odoo/addons/account_financial_report/report/templates/open_items.xml +51 -22
- odoo/addons/account_financial_report/report/trial_balance.py +30 -26
- odoo/addons/account_financial_report/report/vat_report.py +21 -16
- 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 +25 -1
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +17 -15
- odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +26 -23
- 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 +20 -18
- odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +67 -54
- 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-16.0.1.15.2.2.dist-info → odoo_addon_account_financial_report-16.0.1.16.0.dist-info}/METADATA +16 -3
- {odoo_addon_account_financial_report-16.0.1.15.2.2.dist-info → odoo_addon_account_financial_report-16.0.1.16.0.dist-info}/RECORD +43 -40
- {odoo_addon_account_financial_report-16.0.1.15.2.2.dist-info → odoo_addon_account_financial_report-16.0.1.16.0.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-16.0.1.15.2.2.dist-info → odoo_addon_account_financial_report-16.0.1.16.0.dist-info}/top_level.txt +0 -0
|
@@ -7,38 +7,54 @@
|
|
|
7
7
|
<field name="model">journal.ledger.report.wizard</field>
|
|
8
8
|
<field name="arch" type="xml">
|
|
9
9
|
<form>
|
|
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
|
-
|
|
10
|
+
<sheet>
|
|
11
|
+
<notebook>
|
|
12
|
+
<page string="Filters">
|
|
13
|
+
<group>
|
|
14
|
+
<field
|
|
15
|
+
name="company_id"
|
|
16
|
+
groups="base.group_multi_company"
|
|
17
|
+
/>
|
|
18
|
+
</group>
|
|
19
|
+
<separator string="Periods" />
|
|
20
|
+
<group>
|
|
21
|
+
<group>
|
|
22
|
+
<field name="date_range_id" />
|
|
23
|
+
<field name="date_from" />
|
|
24
|
+
<field name="date_to" />
|
|
25
|
+
</group>
|
|
26
|
+
<group />
|
|
27
|
+
</group>
|
|
28
|
+
<separator string="Options" />
|
|
29
|
+
<group name="options">
|
|
30
|
+
<group>
|
|
31
|
+
<field
|
|
32
|
+
name="move_target"
|
|
33
|
+
widget="radio"
|
|
34
|
+
options="{'horizontal': true}"
|
|
35
|
+
/>
|
|
36
|
+
<field name="sort_option" />
|
|
37
|
+
<field name="group_option" />
|
|
38
|
+
<field name="foreign_currency" />
|
|
39
|
+
<field name="with_account_name" />
|
|
40
|
+
<field name="with_auto_sequence" />
|
|
41
|
+
</group>
|
|
42
|
+
<group />
|
|
43
|
+
</group>
|
|
44
|
+
<separator string="Journals" />
|
|
45
|
+
<group>
|
|
46
|
+
<field name="journal_ids" widget="many2many_tags" />
|
|
47
|
+
</group>
|
|
48
|
+
</page>
|
|
49
|
+
<page string="Columns">
|
|
50
|
+
<field
|
|
51
|
+
name="column_ids"
|
|
52
|
+
context="{'default_res_name': 'journal.ledger.report.wizard'}"
|
|
53
|
+
widget="one2many"
|
|
54
|
+
/>
|
|
55
|
+
</page>
|
|
56
|
+
</notebook>
|
|
57
|
+
</sheet>
|
|
42
58
|
<footer>
|
|
43
59
|
<button
|
|
44
60
|
name="button_export_html"
|
|
@@ -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:
|
|
@@ -167,23 +167,25 @@ class OpenItemsReportWizard(models.TransientModel):
|
|
|
167
167
|
.report_action(self, data=data)
|
|
168
168
|
)
|
|
169
169
|
|
|
170
|
-
def
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
170
|
+
def _prepare_report_data(self):
|
|
171
|
+
res = super()._prepare_report_data()
|
|
172
|
+
res.update(
|
|
173
|
+
{
|
|
174
|
+
"date_at": fields.Date.to_string(self.date_at),
|
|
175
|
+
"date_from": self.date_from or False,
|
|
176
|
+
"only_posted_moves": self.target_move == "posted",
|
|
177
|
+
"hide_account_at_0": self.hide_account_at_0,
|
|
178
|
+
"foreign_currency": self.foreign_currency,
|
|
179
|
+
"show_partner_details": self.show_partner_details,
|
|
180
|
+
"company_id": self.company_id.id,
|
|
181
|
+
"target_move": self.target_move,
|
|
182
|
+
"account_ids": self.account_ids.ids,
|
|
183
|
+
"partner_ids": self.partner_ids.ids or [],
|
|
184
|
+
"account_financial_report_lang": self.env.lang,
|
|
185
|
+
"grouped_by": self.grouped_by,
|
|
186
|
+
}
|
|
187
|
+
)
|
|
188
|
+
return res
|
|
187
189
|
|
|
188
190
|
def _export(self, report_type):
|
|
189
191
|
return self._print_report(report_type)
|
|
@@ -6,62 +6,75 @@
|
|
|
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
|
-
|
|
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
|
+
</page>
|
|
69
|
+
<page string="Columns">
|
|
44
70
|
<field
|
|
45
|
-
name="
|
|
46
|
-
|
|
47
|
-
|
|
71
|
+
name="column_ids"
|
|
72
|
+
context="{'default_res_name': 'open.items.report.wizard'}"
|
|
73
|
+
widget="one2many"
|
|
48
74
|
/>
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
class="oe_inline"
|
|
53
|
-
options="{'no_create': True}"
|
|
54
|
-
/>
|
|
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>
|
|
75
|
+
</page>
|
|
76
|
+
</notebook>
|
|
77
|
+
</sheet>
|
|
65
78
|
<footer>
|
|
66
79
|
<button
|
|
67
80
|
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: 16.0.1.
|
|
3
|
+
Version: 16.0.1.16.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
|
|
@@ -28,7 +28,7 @@ Account Financial Reports
|
|
|
28
28
|
!! This file is generated by oca-gen-addon-readme !!
|
|
29
29
|
!! changes will be overwritten. !!
|
|
30
30
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
31
|
-
!! source digest: sha256:
|
|
31
|
+
!! source digest: sha256:2311452f4504c6892d30479b8e6fac1bc1ea626fc889d40c4e10910386df6c4d
|
|
32
32
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
33
33
|
|
|
34
34
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -59,6 +59,9 @@ Invoicing / Reporting / OCA accounting reports.
|
|
|
59
59
|
- VAT Report
|
|
60
60
|
- Journal Ledger
|
|
61
61
|
|
|
62
|
+
It is possible to select the columns to show and limit the size of some of them from the
|
|
63
|
+
columns page.
|
|
64
|
+
|
|
62
65
|
Currently General ledger, Trial Balance and Open Items are fully compatible with a foreign
|
|
63
66
|
currency set up in account in order to display balances. Moreover, any foreign
|
|
64
67
|
currency used in account move lines is properly shown.
|
|
@@ -115,10 +118,18 @@ Known issues / Roadmap
|
|
|
115
118
|
* It would be nice to have in reports a column indicating the
|
|
116
119
|
state of the entries when the option "All Entries" is selected
|
|
117
120
|
in "Target Moves" field in a wizard
|
|
121
|
+
* Adapt reports so that the order of the columns displayed is dynamic
|
|
122
|
+
* Remove duplicated options to show columns (it has not been made in a stable version so
|
|
123
|
+
as not to generate confusion in users)
|
|
118
124
|
|
|
119
125
|
Changelog
|
|
120
126
|
=========
|
|
121
127
|
|
|
128
|
+
15.0.3.2.3 (2025-02-17)
|
|
129
|
+
~~~~~~~~~~~~~~~~~~~~~~~
|
|
130
|
+
|
|
131
|
+
* Added the option to select columns to display and the ability to limit the width of the text
|
|
132
|
+
|
|
122
133
|
11.0.2.5.0 (2019-04-26)
|
|
123
134
|
~~~~~~~~~~~~~~~~~~~~~~~
|
|
124
135
|
|
|
@@ -159,6 +170,7 @@ Authors
|
|
|
159
170
|
* initOS GmbH
|
|
160
171
|
* redCOR AG
|
|
161
172
|
* ForgeFlow
|
|
173
|
+
* Tecnativa
|
|
162
174
|
|
|
163
175
|
Contributors
|
|
164
176
|
~~~~~~~~~~~~
|
|
@@ -190,6 +202,7 @@ Contributors
|
|
|
190
202
|
* Alexandre D. Díaz
|
|
191
203
|
* Víctor Martínez
|
|
192
204
|
* Carolina Fernandez
|
|
205
|
+
* Carlos Dauden
|
|
193
206
|
|
|
194
207
|
* `Sygel <https://www.sygel.es>`__:
|
|
195
208
|
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
odoo/addons/account_financial_report/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_financial_report/README.rst,sha256=6m7r5jMNRFkjeM_P46OLO7J_tEtfUEPyjcjWnYJVf0E,7616
|
|
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=-wxyeazE41TdpiQ_kpKfkgwOS45D1DVuPRNVJQ6wo10,2218
|
|
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=hM6KlmJp9fr-tnakH5EBJUoW1oPNvvi1g1FD0hPlmiI,93057
|
|
7
8
|
odoo/addons/account_financial_report/i18n/ar.po,sha256=qBc-egJUlg39yU-Uu9xBS-5wazbT3dCiARewGEsglZ8,93025
|
|
8
9
|
odoo/addons/account_financial_report/i18n/ca.po,sha256=pvCz1RGA_pFfwAFkBeUUuhykxham639ckyz7WyqEmVg,92110
|
|
9
10
|
odoo/addons/account_financial_report/i18n/de.po,sha256=gt4AZtqOTHoua3mDw4aVWhZnaVzWUbPwEjUaLJ1WUj8,95712
|
|
@@ -24,44 +25,45 @@ odoo/addons/account_financial_report/i18n/pt_BR.po,sha256=IsFxWTT_WgieOUAHRzqddK
|
|
|
24
25
|
odoo/addons/account_financial_report/i18n/ro.po,sha256=7ly9e_5pyvP3Fy2ptIqUeMx159COOHLTaUI7WIMKr9k,91737
|
|
25
26
|
odoo/addons/account_financial_report/i18n/sv.po,sha256=eo2Q0fQpyyvJ8TCfYAa7__9_QCzdpvQC_lU46C3L9Cs,90139
|
|
26
27
|
odoo/addons/account_financial_report/i18n/tr.po,sha256=SXZ9bO-UrzMmvxZMy7KuQ0du8w4ydPN0SLkkuofcdXA,90029
|
|
27
|
-
odoo/addons/account_financial_report/models/__init__.py,sha256=
|
|
28
|
+
odoo/addons/account_financial_report/models/__init__.py,sha256=fPDHZ9DSblaC5l5dMyfX_yyWKjJUfXkvetSyn2fRg4k,241
|
|
28
29
|
odoo/addons/account_financial_report/models/account.py,sha256=wqzI7oZ9H5XsJM6Ngo3WewQ7lExyX-fuKNzSljpj644,422
|
|
29
30
|
odoo/addons/account_financial_report/models/account_age_report_configuration.py,sha256=U5Xr0uAD696TohTCkKsY3HZDYAfVrlocTIGYzr2JlkA,1664
|
|
31
|
+
odoo/addons/account_financial_report/models/account_financial_report_column.py,sha256=3ACsViO0hrgTgZyn3Qyw6veEt3_BPvg7W9FP52sSUe0,618
|
|
30
32
|
odoo/addons/account_financial_report/models/account_group.py,sha256=AksYhOYes8y9h2JbPGzZUcJr9BCzX1CPrnFKpWdGRcc,2433
|
|
31
33
|
odoo/addons/account_financial_report/models/account_move_line.py,sha256=LNjmv_T5jhmiuVxMlNrEMKSULDGfJ0kznsYo1UJ-x1A,2705
|
|
32
34
|
odoo/addons/account_financial_report/models/ir_actions_report.py,sha256=wq-rx2bpI6odJ4-PQR5aellrM9740n5WN4tf1IKdlj0,1074
|
|
33
35
|
odoo/addons/account_financial_report/models/res_config_settings.py,sha256=MHWbS8idSkl-4VoakbWhUzpGGA8DB8i86r8UExaxSuk,1071
|
|
34
36
|
odoo/addons/account_financial_report/readme/CONFIGURE.rst,sha256=gTsDroUsSEy4stKQpIO7Y3inHh8YClbJ634HY7vREUg,901
|
|
35
|
-
odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst,sha256=
|
|
36
|
-
odoo/addons/account_financial_report/readme/DESCRIPTION.rst,sha256=
|
|
37
|
-
odoo/addons/account_financial_report/readme/HISTORY.rst,sha256=
|
|
38
|
-
odoo/addons/account_financial_report/readme/ROADMAP.rst,sha256=
|
|
37
|
+
odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst,sha256=YufvAupQBN_oED-__pHN4fZMccpNOSDl98tnjOdmCaU,1365
|
|
38
|
+
odoo/addons/account_financial_report/readme/DESCRIPTION.rst,sha256=wC9EG5-ELAHCpqJD9ZIkGVXBvpQMMYuzvFVVwnLpO-Q,863
|
|
39
|
+
odoo/addons/account_financial_report/readme/HISTORY.rst,sha256=HbqbHPZrseyJiuEblUs1hI4uqZuUm-MJGPCNwHveOzU,680
|
|
40
|
+
odoo/addons/account_financial_report/readme/ROADMAP.rst,sha256=TB76WZcK-5JtDM45DJmNTY0hho0C9sm3TqPy8NJIzl8,562
|
|
39
41
|
odoo/addons/account_financial_report/report/__init__.py,sha256=D-L2gAu6aAsGo9YtxVH14sulDEPHK0CEy7A2kTwewTE,618
|
|
40
|
-
odoo/addons/account_financial_report/report/abstract_report.py,sha256
|
|
42
|
+
odoo/addons/account_financial_report/report/abstract_report.py,sha256=-W_JbTZXVEzKiiFVRO1-vLlPbvaFqnCUqJEoWP_CCB4,6526
|
|
41
43
|
odoo/addons/account_financial_report/report/abstract_report_xlsx.py,sha256=tx3R8NNXKU6AEobYs5urvaVHNqOxXCOZTY3Rf80Ec0c,29932
|
|
42
|
-
odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=
|
|
44
|
+
odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=7Bwpqh_9vr5uoFqtloO2ghmqRiUE1fIs5IPczGYYpJo,19799
|
|
43
45
|
odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py,sha256=h_z-Jw_k46SBp5tWJh8iZU83-PGmKwGDZIyFRV--FNc,14334
|
|
44
|
-
odoo/addons/account_financial_report/report/general_ledger.py,sha256=
|
|
46
|
+
odoo/addons/account_financial_report/report/general_ledger.py,sha256=k89CZKcz4E1Y8voY7re9QJsaR8mH7RTxtXNibcSgIz0,37563
|
|
45
47
|
odoo/addons/account_financial_report/report/general_ledger_xlsx.py,sha256=t66UFbyoes_kIPoo5xFG7__WdpPPBR8yxQMZRkMcJuE,17349
|
|
46
|
-
odoo/addons/account_financial_report/report/journal_ledger.py,sha256=
|
|
48
|
+
odoo/addons/account_financial_report/report/journal_ledger.py,sha256=PNcejcmpPcOT6R12BvYyrOcGrgz-OsIAci95cYRTuxI,15654
|
|
47
49
|
odoo/addons/account_financial_report/report/journal_ledger_xlsx.py,sha256=Pp7iDkBjSk0BqZkSPAiKI2hBHNcjKYjZoBxuL_ENz5E,10126
|
|
48
|
-
odoo/addons/account_financial_report/report/open_items.py,sha256=
|
|
50
|
+
odoo/addons/account_financial_report/report/open_items.py,sha256=ScBvVg-m6paouJPw87Ag7oGOuGhdS3K7L99SL1EXy_A,12754
|
|
49
51
|
odoo/addons/account_financial_report/report/open_items_xlsx.py,sha256=iv32561UaRppS5XyclMnYwLHJ2icYUA1hNeUOkcl8ng,14960
|
|
50
|
-
odoo/addons/account_financial_report/report/trial_balance.py,sha256=
|
|
52
|
+
odoo/addons/account_financial_report/report/trial_balance.py,sha256=AANzqCF6YlzyQxZHih_AZ6lBfx-l4ZFQR4JDd8Ko_YE,42667
|
|
51
53
|
odoo/addons/account_financial_report/report/trial_balance_xlsx.py,sha256=iGn0bVz63eMNL6Xdnjk8r4JdZrX2ojnEm9E0BaOcDoY,13278
|
|
52
|
-
odoo/addons/account_financial_report/report/vat_report.py,sha256=
|
|
54
|
+
odoo/addons/account_financial_report/report/vat_report.py,sha256=cH-Bv1JxgsEpypCkaPD4V3-z3EOG3lCQZllgpz7qV_g,10543
|
|
53
55
|
odoo/addons/account_financial_report/report/vat_report_xlsx.py,sha256=aa0dLzYdywjmO63ONRYUBTpSGmsPfEjX60CkUbULuo8,2317
|
|
54
56
|
odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml,sha256=IfeLCmOIFqyaEsRnRihb0pXo-deJD41id5qgjE3_Ftw,41020
|
|
55
|
-
odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=
|
|
56
|
-
odoo/addons/account_financial_report/report/templates/journal_ledger.xml,sha256=
|
|
57
|
+
odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=BheKEydLki_7PfcewkJYoomQHKgZAIuBeC8VhUNm0XI,41846
|
|
58
|
+
odoo/addons/account_financial_report/report/templates/journal_ledger.xml,sha256=LM5vc32NapSVtQXqdKxKfu0gTnuwtew-SutK8EItK4s,23269
|
|
57
59
|
odoo/addons/account_financial_report/report/templates/layouts.xml,sha256=gCejPAn8GLrySSve8pGcs0fY5nr48C3mmyuoEJVZkJ4,1526
|
|
58
|
-
odoo/addons/account_financial_report/report/templates/open_items.xml,sha256=
|
|
60
|
+
odoo/addons/account_financial_report/report/templates/open_items.xml,sha256=qKI7CLpD2kAF9l2C6vynQ2Uyp8ni0gu44h4aHPfPBzg,22639
|
|
59
61
|
odoo/addons/account_financial_report/report/templates/trial_balance.xml,sha256=PPUAqjvhKiAbMNa4_oEw8l9YXXhPHEaZVmeLFLo7Tng,53386
|
|
60
62
|
odoo/addons/account_financial_report/report/templates/vat_report.xml,sha256=-xlvfxA0kPLQTbQ7PgiAFIM8u9r0rTXvzHXLn9biknQ,8190
|
|
61
|
-
odoo/addons/account_financial_report/security/ir.model.access.csv,sha256=
|
|
63
|
+
odoo/addons/account_financial_report/security/ir.model.access.csv,sha256=KDi6ri7JCnLjbEM1u3mT5SNY2pRVEwTdHoScf8xn1Lw,1324
|
|
62
64
|
odoo/addons/account_financial_report/security/security.xml,sha256=gpNJnzruXfeYskn26FqY9U04FiuTf8vgLCKEGY8PADM,422
|
|
63
65
|
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=
|
|
66
|
+
odoo/addons/account_financial_report/static/description/index.html,sha256=x6AxNIU6jF4C8faQE7Oo6dh1ChUES43PFjReiP6NxYM,20967
|
|
65
67
|
odoo/addons/account_financial_report/static/src/css/report.css,sha256=Cu4VmyY5tVXIddaojFDsg0Ute2qPCvKbLiimak_X9ik,2361
|
|
66
68
|
odoo/addons/account_financial_report/static/src/css/report_html.css,sha256=I1kX1RsThtjGNLOaNJEWCvMnB9iAFW6nGkcyFYZzJoA,135
|
|
67
69
|
odoo/addons/account_financial_report/static/src/js/report.esm.js,sha256=He488vLRaLv6IIuVaNSnNl8kJMIwJmMIv7GkmXyPJZs,2475
|
|
@@ -69,13 +71,14 @@ odoo/addons/account_financial_report/static/src/js/report_action.esm.js,sha256=e
|
|
|
69
71
|
odoo/addons/account_financial_report/static/src/xml/report.xml,sha256=m_YNhVgnMa3DmG0UyKhyJIWG1p1loLhGBbYQsx7QQUg,512
|
|
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=oZDnj0idupOsasHcvaGFYO3bpmQDj-MPD05XgXVbfGY,5842
|
|
75
|
+
odoo/addons/account_financial_report/tests/test_general_ledger.py,sha256=adBXUObC3RqoAdTgOmvVl9OtpH5LqRzg8Fxu_BYjDzA,30385
|
|
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=CU01kMsKF4maJpfCeaURr1_F_SNpxvqBdwgT4IvhDF0,3429
|
|
78
|
+
odoo/addons/account_financial_report/tests/test_trial_balance.py,sha256=gfbLsraeS1pFldHC_4bi3eZXRdGJrElWPaR6-ZLuLeM,27788
|
|
79
|
+
odoo/addons/account_financial_report/tests/test_vat_report.py,sha256=yY4mOv_6FS5gNE-2JC3s3aFFosLLqKy1UtkDDMhDtH8,14705
|
|
78
80
|
odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml,sha256=xVTv70rbpp2i93mwYhGq6wI6B11_nsiMJSPexrHjxZM,1764
|
|
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=Yw8x0Pqw9AhJ9jyXKiAm6-WM0PfEpb-cP0lcwl9h9lw,2970
|
|
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=9g2zVlpFzNq8vR0PaPR5pwlov6WxIVhjU41Va5S8pmM,2397
|
|
92
|
+
odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py,sha256=fVkGe30YLmSmQdXMp8cWDX0LgLvYc4QcMEG3IGqZbEs,5965
|
|
90
93
|
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=
|
|
94
|
+
odoo/addons/account_financial_report/wizard/general_ledger_wizard.py,sha256=P5qvxKIKWvoBgLst31r6tjRSU0yB_ZMeQGe7e4fX3Cg,12344
|
|
95
|
+
odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml,sha256=XaZXb8iOnNubHQ--ANuItX6WfAhAOKUmcg5RLKXOztA,8271
|
|
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=3AwVafYQrj8-xensx708yth-Ac1Kfy0ICfmNsYjYNdg,7454
|
|
99
|
+
odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml,sha256=g8enM2T7Hp2btafxy2mItnUOBsfifdjW5cw1qZV7TCw,5942
|
|
100
|
+
odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256=9cfjoSIcS_8FOgxKFUU6KhnrQEs9hMUzEOMRg2UOE0c,11072
|
|
98
101
|
odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml,sha256=5c2fn2T-rVoj_VYbibKphXVWh78ia-m4MoZW6P1hM8A,7904
|
|
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-16.0.1.
|
|
102
|
-
odoo_addon_account_financial_report-16.0.1.
|
|
103
|
-
odoo_addon_account_financial_report-16.0.1.
|
|
104
|
-
odoo_addon_account_financial_report-16.0.1.
|
|
104
|
+
odoo_addon_account_financial_report-16.0.1.16.0.dist-info/METADATA,sha256=UsmM_HZf9dp3irlxG6ssXn6DDxolqEhLMQ3luTz5Lbs,8304
|
|
105
|
+
odoo_addon_account_financial_report-16.0.1.16.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
106
|
+
odoo_addon_account_financial_report-16.0.1.16.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
107
|
+
odoo_addon_account_financial_report-16.0.1.16.0.dist-info/RECORD,,
|
|
File without changes
|