odoo-addon-account-financial-report 15.0.2.11.0.1__py3-none-any.whl → 15.0.2.12.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of odoo-addon-account-financial-report might be problematic. Click here for more details.
- odoo/addons/account_financial_report/README.rst +1 -1
- odoo/addons/account_financial_report/__manifest__.py +1 -1
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +26 -3
- odoo/addons/account_financial_report/i18n/ar.po +33 -5
- odoo/addons/account_financial_report/i18n/ca.po +34 -6
- odoo/addons/account_financial_report/i18n/da.po +34 -6
- odoo/addons/account_financial_report/i18n/de.po +34 -6
- odoo/addons/account_financial_report/i18n/es.po +35 -7
- odoo/addons/account_financial_report/i18n/es_AR.po +34 -6
- odoo/addons/account_financial_report/i18n/es_MX.po +26 -3
- odoo/addons/account_financial_report/i18n/fr.po +34 -6
- odoo/addons/account_financial_report/i18n/fr_CH.po +34 -6
- odoo/addons/account_financial_report/i18n/fr_FR.po +33 -5
- odoo/addons/account_financial_report/i18n/hr.po +26 -3
- odoo/addons/account_financial_report/i18n/hr_HR.po +26 -3
- odoo/addons/account_financial_report/i18n/it.po +34 -6
- odoo/addons/account_financial_report/i18n/ja.po +26 -3
- odoo/addons/account_financial_report/i18n/nl.po +34 -6
- odoo/addons/account_financial_report/i18n/nl_NL.po +26 -3
- odoo/addons/account_financial_report/i18n/pt.po +34 -6
- odoo/addons/account_financial_report/i18n/pt_BR.po +34 -6
- odoo/addons/account_financial_report/i18n/ro.po +32 -4
- odoo/addons/account_financial_report/report/aged_partner_balance.py +39 -0
- odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +9 -4
- odoo/addons/account_financial_report/report/open_items.py +45 -1
- odoo/addons/account_financial_report/report/open_items_xlsx.py +12 -7
- odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +77 -27
- odoo/addons/account_financial_report/report/templates/open_items.xml +38 -7
- odoo/addons/account_financial_report/static/description/index.html +1 -1
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +28 -2
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml +12 -0
- odoo/addons/account_financial_report/wizard/open_items_wizard.py +23 -1
- odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +12 -0
- {odoo_addon_account_financial_report-15.0.2.11.0.1.dist-info → odoo_addon_account_financial_report-15.0.2.12.0.1.dist-info}/METADATA +2 -2
- {odoo_addon_account_financial_report-15.0.2.11.0.1.dist-info → odoo_addon_account_financial_report-15.0.2.12.0.1.dist-info}/RECORD +37 -37
- {odoo_addon_account_financial_report-15.0.2.11.0.1.dist-info → odoo_addon_account_financial_report-15.0.2.12.0.1.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-15.0.2.11.0.1.dist-info → odoo_addon_account_financial_report-15.0.2.12.0.1.dist-info}/top_level.txt +0 -0
|
@@ -27,15 +27,20 @@ class OpenItemsXslx(models.AbstractModel):
|
|
|
27
27
|
2: {"header": _("Journal"), "field": "journal", "width": 8},
|
|
28
28
|
3: {"header": _("Account"), "field": "account", "width": 9},
|
|
29
29
|
4: {"header": _("Partner"), "field": "partner_name", "width": 25},
|
|
30
|
-
5: {
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
5: {
|
|
31
|
+
"header": _("Analytic Account"),
|
|
32
|
+
"field": "analytic_account_id",
|
|
33
|
+
"width": 25,
|
|
34
|
+
},
|
|
35
|
+
6: {"header": _("Ref - Label"), "field": "ref_label", "width": 40},
|
|
36
|
+
7: {"header": _("Due date"), "field": "date_maturity", "width": 11},
|
|
37
|
+
8: {
|
|
33
38
|
"header": _("Original"),
|
|
34
39
|
"field": "original",
|
|
35
40
|
"type": "amount",
|
|
36
41
|
"width": 14,
|
|
37
42
|
},
|
|
38
|
-
|
|
43
|
+
9: {
|
|
39
44
|
"header": _("Residual"),
|
|
40
45
|
"field": "amount_residual",
|
|
41
46
|
"field_final_balance": "residual",
|
|
@@ -45,21 +50,21 @@ class OpenItemsXslx(models.AbstractModel):
|
|
|
45
50
|
}
|
|
46
51
|
if report.foreign_currency:
|
|
47
52
|
foreign_currency = {
|
|
48
|
-
|
|
53
|
+
10: {
|
|
49
54
|
"header": _("Cur."),
|
|
50
55
|
"field": "currency_name",
|
|
51
56
|
"field_currency_balance": "currency_name",
|
|
52
57
|
"type": "currency_name",
|
|
53
58
|
"width": 7,
|
|
54
59
|
},
|
|
55
|
-
|
|
60
|
+
11: {
|
|
56
61
|
"header": _("Cur. Original"),
|
|
57
62
|
"field": "amount_currency",
|
|
58
63
|
"field_final_balance": "amount_currency",
|
|
59
64
|
"type": "amount_currency",
|
|
60
65
|
"width": 14,
|
|
61
66
|
},
|
|
62
|
-
|
|
67
|
+
12: {
|
|
63
68
|
"header": _("Cur. Residual"),
|
|
64
69
|
"field": "amount_residual_currency",
|
|
65
70
|
"field_final_balance": "amount_currency",
|
|
@@ -218,13 +218,29 @@
|
|
|
218
218
|
<div class="act_as_cell" style="width: 5.00%;">Journal</div>
|
|
219
219
|
<!--## account code-->
|
|
220
220
|
<div class="act_as_cell" style="width: 6.00%;">Account</div>
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
221
|
+
<t t-if="analytic_account_ids">
|
|
222
|
+
<!--## partner-->
|
|
223
|
+
<div class="act_as_cell" style="width: 9.50%;">Partner</div>
|
|
224
|
+
<!--## analytic account -->
|
|
225
|
+
<div
|
|
226
|
+
class="act_as_cell"
|
|
227
|
+
style="width: 9.50%;"
|
|
228
|
+
>Analytic Account</div>
|
|
229
|
+
<!--## ref - label-->
|
|
230
|
+
<div class="act_as_cell" style="width: 9.50%;">
|
|
231
|
+
Ref -
|
|
232
|
+
Label
|
|
233
|
+
</div>
|
|
234
|
+
</t>
|
|
235
|
+
<t t-else="">
|
|
236
|
+
<!--## partner-->
|
|
237
|
+
<div class="act_as_cell" style="width: 10.50%;">Partner</div>
|
|
238
|
+
<!--## ref - label-->
|
|
239
|
+
<div class="act_as_cell" style="width: 18.00%;">
|
|
240
|
+
Ref -
|
|
241
|
+
Label
|
|
242
|
+
</div>
|
|
243
|
+
</t>
|
|
228
244
|
<!--## date_due-->
|
|
229
245
|
<div class="act_as_cell" style="width: 6.00%;">
|
|
230
246
|
Due
|
|
@@ -311,26 +327,60 @@
|
|
|
311
327
|
<t t-out="line['account']" />
|
|
312
328
|
</span>
|
|
313
329
|
</div>
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
<
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
<
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
330
|
+
<t t-if="analytic_account_ids">
|
|
331
|
+
<!--## partner-->
|
|
332
|
+
<div class="act_as_cell left">
|
|
333
|
+
<span
|
|
334
|
+
t-att-res-id="line['line_rec'].partner_id.id"
|
|
335
|
+
res-model="res.partner"
|
|
336
|
+
view-type="form"
|
|
337
|
+
>
|
|
338
|
+
<t t-out="line['partner']" />
|
|
339
|
+
</span>
|
|
340
|
+
</div>
|
|
341
|
+
<!-- ANAL -->
|
|
342
|
+
<div class="act_as_cell left">
|
|
343
|
+
<span
|
|
344
|
+
t-att-res-id="line['line_rec'].analytic_account_id.id"
|
|
345
|
+
res-model="analytic_account_id"
|
|
346
|
+
view-type="form"
|
|
347
|
+
>
|
|
348
|
+
<t t-out="line['analytic_account_id']" />
|
|
349
|
+
</span>
|
|
350
|
+
</div>
|
|
351
|
+
<!--## ref - label-->
|
|
352
|
+
<div class="act_as_cell left">
|
|
353
|
+
<span
|
|
354
|
+
t-att-res-id="line['line_rec'].id"
|
|
355
|
+
res-model="account.move.line"
|
|
356
|
+
view-type="form"
|
|
357
|
+
>
|
|
358
|
+
<t t-out="line['ref_label']" />
|
|
359
|
+
</span>
|
|
360
|
+
</div>
|
|
361
|
+
</t>
|
|
362
|
+
<t t-else="">
|
|
363
|
+
<!--## partner-->
|
|
364
|
+
<div class="act_as_cell left">
|
|
365
|
+
<span
|
|
366
|
+
t-att-res-id="line['line_rec'].partner_id.id"
|
|
367
|
+
res-model="res.partner"
|
|
368
|
+
view-type="form"
|
|
369
|
+
>
|
|
370
|
+
<t t-out="line['partner']" />
|
|
371
|
+
</span>
|
|
372
|
+
</div>
|
|
373
|
+
<!--## ref - label-->
|
|
374
|
+
<div class="act_as_cell left">
|
|
375
|
+
<span
|
|
376
|
+
t-att-res-id="line['line_rec'].id"
|
|
377
|
+
res-model="account.move.line"
|
|
378
|
+
view-type="form"
|
|
379
|
+
>
|
|
380
|
+
<t t-out="line['ref_label']" />
|
|
381
|
+
</span>
|
|
382
|
+
</div>
|
|
383
|
+
</t>
|
|
334
384
|
<!--## date_due-->
|
|
335
385
|
<div class="act_as_cell left">
|
|
336
386
|
<span
|
|
@@ -245,13 +245,30 @@
|
|
|
245
245
|
<div class="act_as_cell" style="width: 4.78%;">Journal</div>
|
|
246
246
|
<!--## account code-->
|
|
247
247
|
<div class="act_as_cell" style="width: 5.38%;">Account</div>
|
|
248
|
-
|
|
249
|
-
<
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
248
|
+
|
|
249
|
+
<t t-if="analytic_account_ids">
|
|
250
|
+
<!--## partner-->
|
|
251
|
+
<div class="act_as_cell" style="width: 13.19%;">Partner</div>
|
|
252
|
+
<!--## analytic_account-->
|
|
253
|
+
<div
|
|
254
|
+
class="act_as_cell"
|
|
255
|
+
style="width: 13.19%;"
|
|
256
|
+
>Analytic Account</div>
|
|
257
|
+
<!--## ref - label-->
|
|
258
|
+
<div class="act_as_cell" style="width: 13.19%;">
|
|
259
|
+
Ref -
|
|
260
|
+
Label
|
|
261
|
+
</div>
|
|
262
|
+
</t>
|
|
263
|
+
<t t-else="">
|
|
264
|
+
<!--## partner-->
|
|
265
|
+
<div class="act_as_cell" style="width: 15.07%;">Partner</div>
|
|
266
|
+
<!--## ref - label-->
|
|
267
|
+
<div class="act_as_cell" style="width: 24.5%;">
|
|
268
|
+
Ref -
|
|
269
|
+
Label
|
|
270
|
+
</div>
|
|
271
|
+
</t>
|
|
255
272
|
<!--## date_due-->
|
|
256
273
|
<div class="act_as_cell" style="width: 6.47%;">
|
|
257
274
|
Due
|
|
@@ -324,6 +341,20 @@
|
|
|
324
341
|
<t t-esc="line['partner_name']" />
|
|
325
342
|
</span>
|
|
326
343
|
</div>
|
|
344
|
+
<!--## cost_center-->
|
|
345
|
+
<t t-if="analytic_account_ids">
|
|
346
|
+
<div class="act_as_cell left">
|
|
347
|
+
<t t-if="line['analytic_account_id']">
|
|
348
|
+
<span
|
|
349
|
+
t-att-res-id="line['analytic_account_id']"
|
|
350
|
+
res-model="account.analytic.account"
|
|
351
|
+
view-type="form"
|
|
352
|
+
>
|
|
353
|
+
<t t-raw="line['analytic_account_id']" />
|
|
354
|
+
</span>
|
|
355
|
+
</t>
|
|
356
|
+
</div>
|
|
357
|
+
</t>
|
|
327
358
|
<!--## ref - label-->
|
|
328
359
|
<div class="act_as_cell left">
|
|
329
360
|
<span t-esc="line['ref_label']" />
|
|
@@ -367,7 +367,7 @@ ul.auto-toc {
|
|
|
367
367
|
!! This file is generated by oca-gen-addon-readme !!
|
|
368
368
|
!! changes will be overwritten. !!
|
|
369
369
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
370
|
-
!! source digest: sha256:
|
|
370
|
+
!! source digest: sha256:3e1a8bbac6b3e242b624c4e52ba3ad09f08f480b024387c3396c06894f86b76d
|
|
371
371
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
372
372
|
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/account-financial-reporting/tree/15.0/account_financial_report"><img alt="OCA/account-financial-reporting" src="https://img.shields.io/badge/github-OCA%2Faccount--financial--reporting-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/account-financial-reporting-15-0/account-financial-reporting-15-0-account_financial_report"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/account-financial-reporting&target_branch=15.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
373
373
|
<p>This module adds a set of financial reports. They are accessible under
|
|
@@ -43,6 +43,20 @@ class AgedPartnerBalanceWizard(models.TransientModel):
|
|
|
43
43
|
age_partner_config_id = fields.Many2one(
|
|
44
44
|
"account.age.report.configuration", string="Intervals configuration"
|
|
45
45
|
)
|
|
46
|
+
analytic_account_ids = fields.Many2many(
|
|
47
|
+
comodel_name="account.analytic.account", string="Filter analytic accounts"
|
|
48
|
+
)
|
|
49
|
+
no_analytic = fields.Boolean("Only no analytic items")
|
|
50
|
+
all_analytic = fields.Boolean("All analytic items")
|
|
51
|
+
|
|
52
|
+
@api.onchange("all_analytic", "no_analytic")
|
|
53
|
+
def on_change_all_analytic(self):
|
|
54
|
+
if self.all_analytic:
|
|
55
|
+
all_aa = self.env["account.analytic.account"].search([])
|
|
56
|
+
self.analytic_account_ids = all_aa
|
|
57
|
+
self.no_analytic = False
|
|
58
|
+
else:
|
|
59
|
+
self.analytic_account_ids = False
|
|
46
60
|
|
|
47
61
|
@api.onchange("account_code_from", "account_code_to")
|
|
48
62
|
def on_change_account_range(self):
|
|
@@ -86,17 +100,27 @@ class AgedPartnerBalanceWizard(models.TransientModel):
|
|
|
86
100
|
self.account_ids = self.account_ids.filtered(
|
|
87
101
|
lambda a: a.company_id == self.company_id
|
|
88
102
|
)
|
|
89
|
-
res = {
|
|
103
|
+
res = {
|
|
104
|
+
"domain": {"account_ids": [], "partner_ids": [], "analytic_account_ids": []}
|
|
105
|
+
}
|
|
90
106
|
if not self.company_id:
|
|
91
107
|
return res
|
|
92
108
|
else:
|
|
93
109
|
res["domain"]["account_ids"] += [("company_id", "=", self.company_id.id)]
|
|
94
110
|
res["domain"]["partner_ids"] += self._get_partner_ids_domain()
|
|
111
|
+
res["domain"]["analytic_account_ids"] += [
|
|
112
|
+
("company_id", "=", self.company_id.id)
|
|
113
|
+
]
|
|
95
114
|
return res
|
|
96
115
|
|
|
97
116
|
@api.onchange("account_ids")
|
|
98
117
|
def onchange_account_ids(self):
|
|
99
|
-
return {
|
|
118
|
+
return {
|
|
119
|
+
"domain": {
|
|
120
|
+
"account_ids": [("reconcile", "=", True)],
|
|
121
|
+
"analytic_account_ids": [],
|
|
122
|
+
}
|
|
123
|
+
}
|
|
100
124
|
|
|
101
125
|
@api.onchange("receivable_accounts_only", "payable_accounts_only")
|
|
102
126
|
def onchange_type_accounts_only(self):
|
|
@@ -142,6 +166,8 @@ class AgedPartnerBalanceWizard(models.TransientModel):
|
|
|
142
166
|
"show_move_line_details": self.show_move_line_details,
|
|
143
167
|
"account_financial_report_lang": self.env.lang,
|
|
144
168
|
"age_partner_config_id": self.age_partner_config_id.id,
|
|
169
|
+
"analytic_account_ids": self.analytic_account_ids.ids or [],
|
|
170
|
+
"no_analytic": self.no_analytic,
|
|
145
171
|
}
|
|
146
172
|
|
|
147
173
|
def _export(self, report_type):
|
|
@@ -62,6 +62,18 @@
|
|
|
62
62
|
colspan="4"
|
|
63
63
|
/>
|
|
64
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>
|
|
65
77
|
<footer>
|
|
66
78
|
<button
|
|
67
79
|
name="button_export_html"
|
|
@@ -63,6 +63,21 @@ class OpenItemsReportWizard(models.TransientModel):
|
|
|
63
63
|
selection=[("partners", "Partners"), ("salesperson", "Partner Salesperson")],
|
|
64
64
|
default="partners",
|
|
65
65
|
)
|
|
66
|
+
analytic_account_ids = fields.Many2many(
|
|
67
|
+
comodel_name="account.analytic.account", string="Filter analytic accounts"
|
|
68
|
+
)
|
|
69
|
+
no_analytic = fields.Boolean("Only no analytic items")
|
|
70
|
+
only_analytic = fields.Boolean("Only analytic items")
|
|
71
|
+
all_analytic = fields.Boolean("All analytic items")
|
|
72
|
+
|
|
73
|
+
@api.onchange("all_analytic", "no_analytic")
|
|
74
|
+
def on_change_all_analytic(self):
|
|
75
|
+
if self.all_analytic:
|
|
76
|
+
all_aa = self.env["account.analytic.account"].search([])
|
|
77
|
+
self.analytic_account_ids = all_aa
|
|
78
|
+
self.no_analytic = False
|
|
79
|
+
else:
|
|
80
|
+
self.analytic_account_ids = False
|
|
66
81
|
|
|
67
82
|
@api.onchange("account_code_from", "account_code_to")
|
|
68
83
|
def on_change_account_range(self):
|
|
@@ -109,12 +124,17 @@ class OpenItemsReportWizard(models.TransientModel):
|
|
|
109
124
|
self.account_ids = self.account_ids.filtered(
|
|
110
125
|
lambda a: a.company_id == self.company_id
|
|
111
126
|
)
|
|
112
|
-
res = {
|
|
127
|
+
res = {
|
|
128
|
+
"domain": {"account_ids": [], "partner_ids": [], "analytic_account_ids": []}
|
|
129
|
+
}
|
|
113
130
|
if not self.company_id:
|
|
114
131
|
return res
|
|
115
132
|
else:
|
|
116
133
|
res["domain"]["account_ids"] += [("company_id", "=", self.company_id.id)]
|
|
117
134
|
res["domain"]["partner_ids"] += self._get_partner_ids_domain()
|
|
135
|
+
res["domain"]["analytic_account_ids"] += [
|
|
136
|
+
("company_id", "=", self.company_id.id)
|
|
137
|
+
]
|
|
118
138
|
return res
|
|
119
139
|
|
|
120
140
|
@api.onchange("account_ids")
|
|
@@ -179,8 +199,10 @@ class OpenItemsReportWizard(models.TransientModel):
|
|
|
179
199
|
"target_move": self.target_move,
|
|
180
200
|
"account_ids": self.account_ids.ids,
|
|
181
201
|
"partner_ids": self.partner_ids.ids or [],
|
|
202
|
+
"analytic_account_ids": self.analytic_account_ids.ids or [],
|
|
182
203
|
"account_financial_report_lang": self.env.lang,
|
|
183
204
|
"grouped_by": self.grouped_by,
|
|
205
|
+
"no_analytic": self.no_analytic,
|
|
184
206
|
}
|
|
185
207
|
|
|
186
208
|
def _export(self, report_type):
|
|
@@ -62,6 +62,18 @@
|
|
|
62
62
|
colspan="4"
|
|
63
63
|
/>
|
|
64
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>
|
|
65
77
|
<footer>
|
|
66
78
|
<button
|
|
67
79
|
name="button_export_html"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-account_financial_report
|
|
3
|
-
Version: 15.0.2.
|
|
3
|
+
Version: 15.0.2.12.0.1
|
|
4
4
|
Summary: OCA Financial Reports
|
|
5
5
|
Home-page: https://github.com/OCA/account-financial-reporting
|
|
6
6
|
Author: Camptocamp,initOS GmbH,redCOR AG,ForgeFlow,Odoo Community Association (OCA)
|
|
@@ -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:3e1a8bbac6b3e242b624c4e52ba3ad09f08f480b024387c3396c06894f86b76d
|
|
28
28
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
29
29
|
|
|
30
30
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
odoo/addons/account_financial_report/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_financial_report/README.rst,sha256=lD56w613Cb7XS7Wt9eL_qQWc3nOFaQtNPyhggdGn34U,6889
|
|
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=aItQoGE7CNEFIsySltC72TKPeOMBCYyr2ptK5ZPw-i0,2308
|
|
4
4
|
odoo/addons/account_financial_report/menuitems.xml,sha256=k20N6cNRlDsnPhc378MVs7jwzJhbbJQ2k-P3WdsmF_M,1206
|
|
5
5
|
odoo/addons/account_financial_report/reports.xml,sha256=c2KamS250rNzHUInjNwC0G2dhwiIqtYgbked51PtmVw,9254
|
|
6
|
-
odoo/addons/account_financial_report/i18n/account_financial_report.pot,sha256=
|
|
7
|
-
odoo/addons/account_financial_report/i18n/ar.po,sha256=
|
|
8
|
-
odoo/addons/account_financial_report/i18n/ca.po,sha256=
|
|
9
|
-
odoo/addons/account_financial_report/i18n/da.po,sha256=
|
|
10
|
-
odoo/addons/account_financial_report/i18n/de.po,sha256=
|
|
11
|
-
odoo/addons/account_financial_report/i18n/es.po,sha256=
|
|
12
|
-
odoo/addons/account_financial_report/i18n/es_AR.po,sha256=
|
|
13
|
-
odoo/addons/account_financial_report/i18n/es_MX.po,sha256=
|
|
14
|
-
odoo/addons/account_financial_report/i18n/fr.po,sha256=
|
|
15
|
-
odoo/addons/account_financial_report/i18n/fr_CH.po,sha256=
|
|
16
|
-
odoo/addons/account_financial_report/i18n/fr_FR.po,sha256=
|
|
17
|
-
odoo/addons/account_financial_report/i18n/hr.po,sha256=
|
|
18
|
-
odoo/addons/account_financial_report/i18n/hr_HR.po,sha256=
|
|
19
|
-
odoo/addons/account_financial_report/i18n/it.po,sha256=
|
|
20
|
-
odoo/addons/account_financial_report/i18n/ja.po,sha256=
|
|
21
|
-
odoo/addons/account_financial_report/i18n/nl.po,sha256=
|
|
22
|
-
odoo/addons/account_financial_report/i18n/nl_NL.po,sha256=
|
|
23
|
-
odoo/addons/account_financial_report/i18n/pt.po,sha256=
|
|
24
|
-
odoo/addons/account_financial_report/i18n/pt_BR.po,sha256=
|
|
25
|
-
odoo/addons/account_financial_report/i18n/ro.po,sha256=
|
|
6
|
+
odoo/addons/account_financial_report/i18n/account_financial_report.pot,sha256=6iqE5_K5jkKvTdP_azbWriMLqkyTzoCPZ9gkGJntJDU,84679
|
|
7
|
+
odoo/addons/account_financial_report/i18n/ar.po,sha256=7pgMgE8RLP1lAX8EfbTrrmRnBm65aCB-nNcvID0vs4Q,92468
|
|
8
|
+
odoo/addons/account_financial_report/i18n/ca.po,sha256=LzR1WTsoZmU4Bisu0f-YBMCRQFvP2w9qQFKV65A3i9M,89308
|
|
9
|
+
odoo/addons/account_financial_report/i18n/da.po,sha256=voBEBQsebZ00a6ThQ4AdXbY4rJtPrAvMkf1TQGNiyc0,88540
|
|
10
|
+
odoo/addons/account_financial_report/i18n/de.po,sha256=ayipTUm1sa8jXaSOkAyEtH-flPfvG5l_-XLNJP4HgZM,95100
|
|
11
|
+
odoo/addons/account_financial_report/i18n/es.po,sha256=nCJWk3X_d9DlYLbP8qk60HQV3aMCAtQ10WWwjZ9ILBw,90245
|
|
12
|
+
odoo/addons/account_financial_report/i18n/es_AR.po,sha256=Z0AbD7Fld3SoDs0rWXkTGd6h33yXylhdxqycxqxKOis,92943
|
|
13
|
+
odoo/addons/account_financial_report/i18n/es_MX.po,sha256=sZT7tMnRdAKQDMgG8t3_dgFlkCgIBFOZ03Q9jT0I0ZU,83077
|
|
14
|
+
odoo/addons/account_financial_report/i18n/fr.po,sha256=i46BbLReMYavV1dPtFJkWitdQBq7XqiJjnAdwf670M4,95853
|
|
15
|
+
odoo/addons/account_financial_report/i18n/fr_CH.po,sha256=e35Jlk1lXdG1WFy-9dZiCdePb0w6YsqzJ8qbBaJrob8,94631
|
|
16
|
+
odoo/addons/account_financial_report/i18n/fr_FR.po,sha256=7si5FqylPi-OK_tsCoKyy50DYVgPIslc0249SOfvqzA,89719
|
|
17
|
+
odoo/addons/account_financial_report/i18n/hr.po,sha256=9tcnrOR9eqEA3PP7x3v6URjkDFjjKLiR1Da0w9gz2Gk,83166
|
|
18
|
+
odoo/addons/account_financial_report/i18n/hr_HR.po,sha256=adIAHeXVG2FcDG2yVV7xV8B3e8GIKIicj1RxkWkU1fM,83927
|
|
19
|
+
odoo/addons/account_financial_report/i18n/it.po,sha256=WMooFDeRryAnCR2Q6JlNxbAGBiNIab6otiwVNEYHr_M,90307
|
|
20
|
+
odoo/addons/account_financial_report/i18n/ja.po,sha256=8AO9QURV2diSWhYhiFQjbyuxc8I3wyny9KhTYgWnVzM,83688
|
|
21
|
+
odoo/addons/account_financial_report/i18n/nl.po,sha256=5-Vn36kSt8ZFuHm5baasK0CCecIyD-3B2C2jpMP8zEw,94723
|
|
22
|
+
odoo/addons/account_financial_report/i18n/nl_NL.po,sha256=Qw0tbFsqOzVaaCsuCiNpCfbQtiXciCyMsifVoXVJw6E,83593
|
|
23
|
+
odoo/addons/account_financial_report/i18n/pt.po,sha256=ZGZlbAss-Vbd7Q4aIkTC3_eE90h4H70wjbcnTe1E68g,90238
|
|
24
|
+
odoo/addons/account_financial_report/i18n/pt_BR.po,sha256=WLdyNV2tdNznKhHTGSbq8neZnhXXFehOZ4gAtTJuTC0,98187
|
|
25
|
+
odoo/addons/account_financial_report/i18n/ro.po,sha256=I8IWJaTq5bB2uaX2vTg0KaYJxfexXyoTmOJ-soKeFgo,91121
|
|
26
26
|
odoo/addons/account_financial_report/models/__init__.py,sha256=KCE4mRzM1HSu4Mjg3thvCgBOaEyw5w8VHB--Du-wXyE,195
|
|
27
27
|
odoo/addons/account_financial_report/models/account.py,sha256=wqzI7oZ9H5XsJM6Ngo3WewQ7lExyX-fuKNzSljpj644,422
|
|
28
28
|
odoo/addons/account_financial_report/models/account_age_report_configuration.py,sha256=U5Xr0uAD696TohTCkKsY3HZDYAfVrlocTIGYzr2JlkA,1664
|
|
@@ -38,29 +38,29 @@ odoo/addons/account_financial_report/readme/ROADMAP.rst,sha256=CK1z_cr3bdtTPHyCO
|
|
|
38
38
|
odoo/addons/account_financial_report/report/__init__.py,sha256=D-L2gAu6aAsGo9YtxVH14sulDEPHK0CEy7A2kTwewTE,618
|
|
39
39
|
odoo/addons/account_financial_report/report/abstract_report.py,sha256=EuQxVQq5NmwhyrgNiOXHGA5NfSAcE2F1wPSePyk7-cc,5965
|
|
40
40
|
odoo/addons/account_financial_report/report/abstract_report_xlsx.py,sha256=ugty0nle8yhqdxCdi6aBjxEh8vN2u2KRz9hTsrpJgT0,29911
|
|
41
|
-
odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=
|
|
42
|
-
odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py,sha256=
|
|
41
|
+
odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=p-D_r-PA8dKl0tHYawEcP5QpvjwiBq7eSQm2kRBHY-A,20848
|
|
42
|
+
odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py,sha256=9xB660H5Xv8aX65oy-1gDXBSjQERIpRrlJhbtXtyToQ,14492
|
|
43
43
|
odoo/addons/account_financial_report/report/general_ledger.py,sha256=wRXeQsrMlaZtGbjcSDDCyN5EjGM3Wlp4CGfmWIhcQmE,35441
|
|
44
44
|
odoo/addons/account_financial_report/report/general_ledger_xlsx.py,sha256=EHkkVgdt2_Vpw01KjqVb6RKZBfEKWBqdsXvMBu3iRPY,15599
|
|
45
45
|
odoo/addons/account_financial_report/report/journal_ledger.py,sha256=j83-QCAONs7AAh1C3C7_3_nByKk43B7o3Atx42OhdOc,15362
|
|
46
46
|
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=
|
|
48
|
-
odoo/addons/account_financial_report/report/open_items_xlsx.py,sha256=
|
|
47
|
+
odoo/addons/account_financial_report/report/open_items.py,sha256=7iIrnkCLuH17Lx0I98Nvt0KfYpcyhVcNRSJMr9i_PS8,13788
|
|
48
|
+
odoo/addons/account_financial_report/report/open_items_xlsx.py,sha256=a4HMQ97VkwTO_8tnxyzFIIlLkawaG1HBXnujgYUI_Ug,15119
|
|
49
49
|
odoo/addons/account_financial_report/report/trial_balance.py,sha256=ERrdWkQugXtRX_4lURibQCdPsW_52ggbyLOrMDSSTrg,30737
|
|
50
50
|
odoo/addons/account_financial_report/report/trial_balance_xlsx.py,sha256=phPDqy4pXbd94oFmwjPNe_XKoMCgcTXPE6HOkGJJDko,12060
|
|
51
51
|
odoo/addons/account_financial_report/report/vat_report.py,sha256=mRr8zk3sTVvz7CFHQAzDL4Eexqzt7X6JVOEPD2axumM,10163
|
|
52
52
|
odoo/addons/account_financial_report/report/vat_report_xlsx.py,sha256=aa0dLzYdywjmO63ONRYUBTpSGmsPfEjX60CkUbULuo8,2317
|
|
53
|
-
odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml,sha256=
|
|
53
|
+
odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml,sha256=WNaWvMoBR74v6SGj13Tp6Eydxd-zk93Yf3x0dnRIj28,43416
|
|
54
54
|
odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=BTJ8k7_pX2StHGP3BgRaqktx3NYeqdV1tTJ0KqmHjeo,38690
|
|
55
55
|
odoo/addons/account_financial_report/report/templates/journal_ledger.xml,sha256=qPupJ-t85k2_H-o12pwOyvpYCpROBkVpSsGaib3mGkI,21619
|
|
56
56
|
odoo/addons/account_financial_report/report/templates/layouts.xml,sha256=gCejPAn8GLrySSve8pGcs0fY5nr48C3mmyuoEJVZkJ4,1526
|
|
57
|
-
odoo/addons/account_financial_report/report/templates/open_items.xml,sha256=
|
|
57
|
+
odoo/addons/account_financial_report/report/templates/open_items.xml,sha256=OxyVnVzPa0UKGNuV2uqgWh7RxMwsWu8OzQbcIV0iDaE,22821
|
|
58
58
|
odoo/addons/account_financial_report/report/templates/trial_balance.xml,sha256=q-ShNar7AifnJpSzhkv5OYmc-ydkF9ub_VlsLnOVKPI,47168
|
|
59
59
|
odoo/addons/account_financial_report/report/templates/vat_report.xml,sha256=F5hQzdM8NTuLW04mT6SMjbdush5r7C81_RXa7NByfAY,8128
|
|
60
60
|
odoo/addons/account_financial_report/security/ir.model.access.csv,sha256=S1VQLLwLeaOeAMYGqtoOqHUaZVrvDUVE4Z-0-SRjSGQ,1134
|
|
61
61
|
odoo/addons/account_financial_report/security/security.xml,sha256=gpNJnzruXfeYskn26FqY9U04FiuTf8vgLCKEGY8PADM,422
|
|
62
62
|
odoo/addons/account_financial_report/static/description/icon.png,sha256=WW-eOIjW5-jo7tgBieNv6K2DUKMoHFSVctnp0htstHI,15230
|
|
63
|
-
odoo/addons/account_financial_report/static/description/index.html,sha256=
|
|
63
|
+
odoo/addons/account_financial_report/static/description/index.html,sha256=k0Qi5LnZH9zNBKjfd2ovhSomoldVlsS181qqEu1Rt70,19748
|
|
64
64
|
odoo/addons/account_financial_report/static/src/css/report.css,sha256=y0CysZUK3afkYSHgBaMi_qmh8da3XXEZwJDjRBg6HqQ,2335
|
|
65
65
|
odoo/addons/account_financial_report/static/src/css/report_html.css,sha256=I1kX1RsThtjGNLOaNJEWCvMnB9iAFW6nGkcyFYZzJoA,135
|
|
66
66
|
odoo/addons/account_financial_report/static/src/js/action_manager_report.js,sha256=g8aZkSRMgNcFzQ4f_3mmeKl7oNnoap_cDUxuyGxMT4M,1608
|
|
@@ -86,19 +86,19 @@ odoo/addons/account_financial_report/view/report_vat_report.xml,sha256=Bc4DAlUg_
|
|
|
86
86
|
odoo/addons/account_financial_report/view/res_config_settings_views.xml,sha256=GtTwacwa_GzueCBOfAU_yYAns_y7yrCUo9CM_dxFiFw,2986
|
|
87
87
|
odoo/addons/account_financial_report/wizard/__init__.py,sha256=5lngmjx-Vz-5k9nPILd25_1oVKKhUHnYhjAOMgdQHPY,243
|
|
88
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=
|
|
90
|
-
odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml,sha256=
|
|
89
|
+
odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py,sha256=aDy76jXJg3MvbtdRWSxN5WClfZ_uiFgZ3EcY7giXghs,6829
|
|
90
|
+
odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml,sha256=cgY9-5tpkWOEwL39Z5kHDNREITYAxaUSADRhwzaUJFE,4481
|
|
91
91
|
odoo/addons/account_financial_report/wizard/general_ledger_wizard.py,sha256=ZilX5D6MqXZDda_8UlQ0D7cRuqdJoIwwJvDzKI3wppc,11504
|
|
92
92
|
odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml,sha256=P_0_TvjXIlyCI7zdAJhNi8RTWd6h5tGtElDoEg-339U,8356
|
|
93
93
|
odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py,sha256=CA44N2yVdZbAttw3JUK6hueMOQc__wY5Abc2hDW49_0,5546
|
|
94
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=
|
|
96
|
-
odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml,sha256=
|
|
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
97
|
odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256=hFaHYfWsbJiKZczJJyUhcyuDuvLx69KEePV1zOvVLcE,10652
|
|
98
98
|
odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml,sha256=7oNGPs3s8DVw3movVGe2ryRUNl1MtN7O76UH8zaFFtI,7048
|
|
99
99
|
odoo/addons/account_financial_report/wizard/vat_report_wizard.py,sha256=pJATDNWLcEWvctby5e5yvv4Kz7YDfCTi7YZP7slA8a4,3424
|
|
100
100
|
odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml,sha256=T3P81O4csDGP7Jmf7eAtmbIIldja3IoXbBmweMMt8vA,2330
|
|
101
|
-
odoo_addon_account_financial_report-15.0.2.
|
|
102
|
-
odoo_addon_account_financial_report-15.0.2.
|
|
103
|
-
odoo_addon_account_financial_report-15.0.2.
|
|
104
|
-
odoo_addon_account_financial_report-15.0.2.
|
|
101
|
+
odoo_addon_account_financial_report-15.0.2.12.0.1.dist-info/METADATA,sha256=DUbYy0YHaQSkx_jjD759YxXy7GqxkmdmwDx8_AmlBzM,7571
|
|
102
|
+
odoo_addon_account_financial_report-15.0.2.12.0.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
103
|
+
odoo_addon_account_financial_report-15.0.2.12.0.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
104
|
+
odoo_addon_account_financial_report-15.0.2.12.0.1.dist-info/RECORD,,
|
|
File without changes
|