odoo-addon-account-financial-report 17.0.1.0.0.13__py3-none-any.whl → 17.0.1.1.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 +38 -1
- odoo/addons/account_financial_report/__manifest__.py +4 -1
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +111 -13
- odoo/addons/account_financial_report/i18n/ar.po +159 -28
- odoo/addons/account_financial_report/i18n/ca.po +159 -25
- odoo/addons/account_financial_report/i18n/de.po +163 -32
- odoo/addons/account_financial_report/i18n/es.po +164 -26
- odoo/addons/account_financial_report/i18n/es_AR.po +159 -25
- odoo/addons/account_financial_report/i18n/es_MX.po +111 -13
- odoo/addons/account_financial_report/i18n/fr.po +159 -28
- odoo/addons/account_financial_report/i18n/fr_CH.po +155 -24
- odoo/addons/account_financial_report/i18n/fr_FR.po +159 -25
- odoo/addons/account_financial_report/i18n/hr.po +159 -25
- odoo/addons/account_financial_report/i18n/hr_HR.po +111 -13
- odoo/addons/account_financial_report/i18n/it.po +159 -28
- odoo/addons/account_financial_report/i18n/ja.po +111 -13
- odoo/addons/account_financial_report/i18n/nl.po +159 -28
- odoo/addons/account_financial_report/i18n/nl_NL.po +111 -13
- odoo/addons/account_financial_report/i18n/pt.po +155 -21
- odoo/addons/account_financial_report/i18n/pt_BR.po +159 -28
- odoo/addons/account_financial_report/i18n/ro.po +159 -28
- odoo/addons/account_financial_report/i18n/sv.po +159 -25
- odoo/addons/account_financial_report/i18n/tr.po +111 -13
- odoo/addons/account_financial_report/models/__init__.py +2 -0
- odoo/addons/account_financial_report/models/account_age_report_configuration.py +47 -0
- odoo/addons/account_financial_report/models/res_config_settings.py +14 -0
- odoo/addons/account_financial_report/readme/CONFIGURE.md +26 -0
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.md +1 -0
- odoo/addons/account_financial_report/readme/DESCRIPTION.md +4 -0
- odoo/addons/account_financial_report/report/aged_partner_balance.py +79 -3
- odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +144 -104
- odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +428 -333
- odoo/addons/account_financial_report/security/ir.model.access.csv +2 -0
- odoo/addons/account_financial_report/security/security.xml +8 -0
- odoo/addons/account_financial_report/static/description/index.html +47 -21
- odoo/addons/account_financial_report/tests/__init__.py +1 -0
- odoo/addons/account_financial_report/tests/test_age_report_configuration.py +42 -0
- odoo/addons/account_financial_report/tests/test_aged_partner_balance.py +84 -5
- odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +41 -0
- odoo/addons/account_financial_report/view/res_config_settings_views.xml +51 -0
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +4 -0
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml +2 -3
- {odoo_addon_account_financial_report-17.0.1.0.0.13.dist-info → odoo_addon_account_financial_report-17.0.1.1.0.1.dist-info}/METADATA +39 -2
- {odoo_addon_account_financial_report-17.0.1.0.0.13.dist-info → odoo_addon_account_financial_report-17.0.1.1.0.1.dist-info}/RECORD +46 -39
- {odoo_addon_account_financial_report-17.0.1.0.0.13.dist-info → odoo_addon_account_financial_report-17.0.1.1.0.1.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-17.0.1.0.0.13.dist-info → odoo_addon_account_financial_report-17.0.1.1.0.1.dist-info}/top_level.txt +0 -0
|
@@ -116,16 +116,22 @@
|
|
|
116
116
|
<div class="act_as_cell" style="width: 9.64%;">Residual</div>
|
|
117
117
|
<!--## current-->
|
|
118
118
|
<div class="act_as_cell" style="width: 9.64%;">Not due</div>
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
119
|
+
<t t-if="not age_partner_config">
|
|
120
|
+
<!--## age_30_days-->
|
|
121
|
+
<div class="act_as_cell" style="width: 9.64%;">1 - 30 d.</div>
|
|
122
|
+
<!--## age_60_days-->
|
|
123
|
+
<div class="act_as_cell" style="width: 9.64%;">31 - 60 d.</div>
|
|
124
|
+
<!--## age_90_days-->
|
|
125
|
+
<div class="act_as_cell" style="width: 9.64%;">61 - 90 d.</div>
|
|
126
|
+
<!--## age_120_days-->
|
|
127
|
+
<div class="act_as_cell" style="width: 9.64%;">91 - 120 d.</div>
|
|
128
|
+
<!--## older-->
|
|
129
|
+
<div class="act_as_cell" style="width: 9.64%;">> 120 d.</div>
|
|
130
|
+
</t>
|
|
131
|
+
<!--## dynamic columns-->
|
|
132
|
+
<t t-foreach="age_partner_config.line_ids" t-as="column_dynamic">
|
|
133
|
+
<div class="act_as_cell"><span t-out="column_dynamic.name" /></div>
|
|
134
|
+
</t>
|
|
129
135
|
</div>
|
|
130
136
|
</div>
|
|
131
137
|
</template>
|
|
@@ -143,48 +149,58 @@
|
|
|
143
149
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
144
150
|
/>
|
|
145
151
|
</div>
|
|
146
|
-
|
|
152
|
+
<!--## current-->
|
|
147
153
|
<div class="act_as_cell amount">
|
|
148
|
-
|
|
154
|
+
<span
|
|
149
155
|
t-esc="partner['current']"
|
|
150
156
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
151
157
|
/>
|
|
152
158
|
</div>
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
<
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
<
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
<
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
<
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
<
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
159
|
+
<t t-if="not age_partner_config">
|
|
160
|
+
<!--## age_30_days-->
|
|
161
|
+
<div class="act_as_cell amount">
|
|
162
|
+
<span
|
|
163
|
+
t-esc="partner['30_days']"
|
|
164
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
165
|
+
/>
|
|
166
|
+
</div>
|
|
167
|
+
<!--## age_60_days-->
|
|
168
|
+
<div class="act_as_cell amount">
|
|
169
|
+
<span
|
|
170
|
+
t-esc="partner['60_days']"
|
|
171
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
172
|
+
/>
|
|
173
|
+
</div>
|
|
174
|
+
<!--## age_90_days-->
|
|
175
|
+
<div class="act_as_cell amount">
|
|
176
|
+
<span
|
|
177
|
+
t-esc="partner['90_days']"
|
|
178
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
179
|
+
/>
|
|
180
|
+
</div>
|
|
181
|
+
<!--## age_120_days-->
|
|
182
|
+
<div class="act_as_cell amount">
|
|
183
|
+
<span
|
|
184
|
+
t-esc="partner['120_days']"
|
|
185
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
186
|
+
/>
|
|
187
|
+
</div>
|
|
188
|
+
<!--## older-->
|
|
189
|
+
<div class="act_as_cell amount">
|
|
190
|
+
<span
|
|
191
|
+
t-esc="partner['older']"
|
|
192
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
193
|
+
/>
|
|
194
|
+
</div>
|
|
195
|
+
</t>
|
|
196
|
+
<t t-foreach="age_partner_config.line_ids" t-as="column_dynamic">
|
|
197
|
+
<div class="act_as_cell amount">
|
|
198
|
+
<span
|
|
199
|
+
t-out="partner[column_dynamic]"
|
|
200
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
201
|
+
/>
|
|
202
|
+
</div>
|
|
203
|
+
</t>
|
|
188
204
|
</div>
|
|
189
205
|
</template>
|
|
190
206
|
<template id="report_aged_partner_balance_move_lines">
|
|
@@ -218,28 +234,36 @@
|
|
|
218
234
|
<div class="act_as_cell" style="width: 6.00%;">Residual</div>
|
|
219
235
|
<!--## current-->
|
|
220
236
|
<div class="act_as_cell" style="width: 6.00%;">Current</div>
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
237
|
+
<t t-if="not age_partner_config">
|
|
238
|
+
<!--## age_30_days-->
|
|
239
|
+
<div class="act_as_cell" style="width: 6.00%;">
|
|
240
|
+
Age ≤ 30
|
|
241
|
+
d.
|
|
242
|
+
</div>
|
|
243
|
+
<!--## age_60_days-->
|
|
244
|
+
<div class="act_as_cell" style="width: 6.00%;">
|
|
245
|
+
Age ≤ 60
|
|
246
|
+
d.
|
|
247
|
+
</div>
|
|
248
|
+
<!--## age_90_days-->
|
|
249
|
+
<div class="act_as_cell" style="width: 6.00%;">
|
|
250
|
+
Age ≤ 90
|
|
251
|
+
d.
|
|
252
|
+
</div>
|
|
253
|
+
<!--## age_120_days-->
|
|
254
|
+
<div class="act_as_cell" style="width: 6.00%;">
|
|
255
|
+
Age ≤ 120
|
|
256
|
+
d.
|
|
257
|
+
</div>
|
|
258
|
+
<!--## older-->
|
|
259
|
+
<div class="act_as_cell" style="width: 6.00%;">Older</div>
|
|
260
|
+
</t>
|
|
261
|
+
<!--## current-->
|
|
262
|
+
<t t-foreach="age_partner_config.line_ids" t-as="column_dynamic">
|
|
263
|
+
<div class="act_as_cell">
|
|
264
|
+
<span t-esc="column_dynamic.name" />
|
|
265
|
+
</div>
|
|
266
|
+
</t>
|
|
243
267
|
</div>
|
|
244
268
|
</div>
|
|
245
269
|
<!-- Display each move lines -->
|
|
@@ -333,126 +357,149 @@
|
|
|
333
357
|
/>
|
|
334
358
|
</span>
|
|
335
359
|
</div>
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
360
|
+
<!--## current-->
|
|
361
|
+
<div class="act_as_cell amount">
|
|
362
|
+
<t t-if="line['current'] == 0">
|
|
363
|
+
<span
|
|
340
364
|
t-esc="line['current']"
|
|
341
365
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
342
366
|
/>
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
367
|
+
</t>
|
|
368
|
+
<t t-else="">
|
|
369
|
+
<span
|
|
346
370
|
domain="[('id', 'in', (line['line_rec'] | line['line_rec'].matched_debit_ids.mapped('debit_move_id') | line['line_rec'].matched_credit_ids.mapped('credit_move_id')).ids)]"
|
|
347
371
|
res-model="account.move.line"
|
|
348
372
|
>
|
|
349
|
-
|
|
373
|
+
<t
|
|
350
374
|
t-out="line['current']"
|
|
351
375
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
352
376
|
/>
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
<
|
|
359
|
-
<
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
/>
|
|
363
|
-
</t>
|
|
364
|
-
<t t-else="">
|
|
365
|
-
<span
|
|
366
|
-
domain="[('id', 'in', (line['line_rec'] | line['line_rec'].matched_debit_ids.mapped('debit_move_id') | line['line_rec'].matched_credit_ids.mapped('credit_move_id')).ids)]"
|
|
367
|
-
res-model="account.move.line"
|
|
368
|
-
>
|
|
369
|
-
<t
|
|
370
|
-
t-out="line['30_days']"
|
|
377
|
+
</span>
|
|
378
|
+
</t>
|
|
379
|
+
</div>
|
|
380
|
+
<t t-if="not age_partner_config">
|
|
381
|
+
<!--## age_30_days-->
|
|
382
|
+
<div class="act_as_cell amount">
|
|
383
|
+
<t t-if="line['30_days'] == 0">
|
|
384
|
+
<span
|
|
385
|
+
t-esc="line['30_days']"
|
|
371
386
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
372
387
|
/>
|
|
373
|
-
</
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
>
|
|
389
|
-
<
|
|
390
|
-
t-
|
|
388
|
+
</t>
|
|
389
|
+
<t t-else="">
|
|
390
|
+
<span
|
|
391
|
+
domain="[('id', 'in', (line['line_rec'] | line['line_rec'].matched_debit_ids.mapped('debit_move_id') | line['line_rec'].matched_credit_ids.mapped('credit_move_id')).ids)]"
|
|
392
|
+
res-model="account.move.line"
|
|
393
|
+
>
|
|
394
|
+
<t
|
|
395
|
+
t-out="line['30_days']"
|
|
396
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
397
|
+
/>
|
|
398
|
+
</span>
|
|
399
|
+
</t>
|
|
400
|
+
</div>
|
|
401
|
+
<!--## age_60_days-->
|
|
402
|
+
<div class="act_as_cell amount">
|
|
403
|
+
<t t-if="line['60_days'] == 0">
|
|
404
|
+
<span
|
|
405
|
+
t-esc="line['60_days']"
|
|
391
406
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
392
407
|
/>
|
|
393
|
-
</
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
>
|
|
409
|
-
<
|
|
410
|
-
t-
|
|
408
|
+
</t>
|
|
409
|
+
<t t-else="">
|
|
410
|
+
<span
|
|
411
|
+
domain="[('id', 'in', (line['line_rec'] | line['line_rec'].matched_debit_ids.mapped('debit_move_id') | line['line_rec'].matched_credit_ids.mapped('credit_move_id')).ids)]"
|
|
412
|
+
res-model="account.move.line"
|
|
413
|
+
>
|
|
414
|
+
<t
|
|
415
|
+
t-out="line['60_days']"
|
|
416
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
417
|
+
/>
|
|
418
|
+
</span>
|
|
419
|
+
</t>
|
|
420
|
+
</div>
|
|
421
|
+
<!--## age_90_days-->
|
|
422
|
+
<div class="act_as_cell amount">
|
|
423
|
+
<t t-if="line['90_days'] == 0">
|
|
424
|
+
<span
|
|
425
|
+
t-esc="line['90_days']"
|
|
411
426
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
412
427
|
/>
|
|
413
|
-
</
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
>
|
|
429
|
-
<
|
|
430
|
-
t-
|
|
428
|
+
</t>
|
|
429
|
+
<t t-else="">
|
|
430
|
+
<span
|
|
431
|
+
domain="[('id', 'in', (line['line_rec'] | line['line_rec'].matched_debit_ids.mapped('debit_move_id') | line['line_rec'].matched_credit_ids.mapped('credit_move_id')).ids)]"
|
|
432
|
+
res-model="account.move.line"
|
|
433
|
+
>
|
|
434
|
+
<t
|
|
435
|
+
t-out="line['90_days']"
|
|
436
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
437
|
+
/>
|
|
438
|
+
</span>
|
|
439
|
+
</t>
|
|
440
|
+
</div>
|
|
441
|
+
<!--## age_120_days-->
|
|
442
|
+
<div class="act_as_cell amount">
|
|
443
|
+
<t t-if="line['120_days'] == 0">
|
|
444
|
+
<span
|
|
445
|
+
t-esc="line['120_days']"
|
|
431
446
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
432
447
|
/>
|
|
433
|
-
</
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
>
|
|
449
|
-
<
|
|
450
|
-
t-
|
|
448
|
+
</t>
|
|
449
|
+
<t t-else="">
|
|
450
|
+
<span
|
|
451
|
+
domain="[('id', 'in', (line['line_rec'] | line['line_rec'].matched_debit_ids.mapped('debit_move_id') | line['line_rec'].matched_credit_ids.mapped('credit_move_id')).ids)]"
|
|
452
|
+
res-model="account.move.line"
|
|
453
|
+
>
|
|
454
|
+
<t
|
|
455
|
+
t-out="line['120_days']"
|
|
456
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
457
|
+
/>
|
|
458
|
+
</span>
|
|
459
|
+
</t>
|
|
460
|
+
</div>
|
|
461
|
+
<!--## older-->
|
|
462
|
+
<div class="act_as_cell amount">
|
|
463
|
+
<t t-if="line['older'] == 0">
|
|
464
|
+
<span
|
|
465
|
+
t-esc="line['older']"
|
|
451
466
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
452
467
|
/>
|
|
453
|
-
</
|
|
454
|
-
|
|
455
|
-
|
|
468
|
+
</t>
|
|
469
|
+
<t t-else="">
|
|
470
|
+
<span
|
|
471
|
+
domain="[('id', 'in', (line['line_rec'] | line['line_rec'].matched_debit_ids.mapped('debit_move_id') | line['line_rec'].matched_credit_ids.mapped('credit_move_id')).ids)]"
|
|
472
|
+
res-model="account.move.line"
|
|
473
|
+
>
|
|
474
|
+
<t
|
|
475
|
+
t-out="line['older']"
|
|
476
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
477
|
+
/>
|
|
478
|
+
</span>
|
|
479
|
+
</t>
|
|
480
|
+
</div>
|
|
481
|
+
</t>
|
|
482
|
+
<t t-foreach="age_partner_config.line_ids" t-as="column_dynamic">
|
|
483
|
+
<div class="act_as_cell amount">
|
|
484
|
+
<t t-if="line[column_dynamic] == 0">
|
|
485
|
+
<span
|
|
486
|
+
t-esc="line[column_dynamic]"
|
|
487
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
488
|
+
/>
|
|
489
|
+
</t>
|
|
490
|
+
<t t-else="">
|
|
491
|
+
<span
|
|
492
|
+
domain="[('id', 'in', (line['line_rec'] | line['line_rec'].matched_debit_ids.mapped('debit_move_id') | line['line_rec'].matched_credit_ids.mapped('credit_move_id')).ids)]"
|
|
493
|
+
res-model="account.move.line"
|
|
494
|
+
>
|
|
495
|
+
<t
|
|
496
|
+
t-out="line[column_dynamic]"
|
|
497
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
498
|
+
/>
|
|
499
|
+
</span>
|
|
500
|
+
</t>
|
|
501
|
+
</div>
|
|
502
|
+
</t>
|
|
456
503
|
</div>
|
|
457
504
|
</t>
|
|
458
505
|
</div>
|
|
@@ -475,107 +522,127 @@
|
|
|
475
522
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
476
523
|
/>
|
|
477
524
|
</div>
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
525
|
+
<!--## current-->
|
|
526
|
+
<div class="act_as_cell amount" style="width: 6.00%;">
|
|
527
|
+
<span
|
|
481
528
|
t-esc="partner_cumul_line['current']"
|
|
482
529
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
483
530
|
/>
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
<
|
|
488
|
-
t-esc="partner_cumul_line['30_days']"
|
|
489
|
-
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
490
|
-
/>
|
|
491
|
-
</div>
|
|
492
|
-
<!--## age_60_days-->
|
|
493
|
-
<div class="act_as_cell amount" style="width: 6.00%;">
|
|
494
|
-
<span
|
|
495
|
-
t-esc="partner_cumul_line['60_days']"
|
|
496
|
-
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
497
|
-
/>
|
|
498
|
-
</div>
|
|
499
|
-
<!--## age_90_days-->
|
|
500
|
-
<div class="act_as_cell amount" style="width: 6.00%;">
|
|
501
|
-
<span
|
|
502
|
-
t-esc="partner_cumul_line['90_days']"
|
|
503
|
-
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
504
|
-
/>
|
|
505
|
-
</div>
|
|
506
|
-
<!--## age_120_days-->
|
|
507
|
-
<div class="act_as_cell amount" style="width: 6.00%;">
|
|
508
|
-
<span
|
|
509
|
-
t-esc="partner_cumul_line['120_days']"
|
|
510
|
-
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
511
|
-
/>
|
|
512
|
-
</div>
|
|
513
|
-
<!--## older-->
|
|
514
|
-
<div class="act_as_cell amount" style="width: 6.00%;">
|
|
515
|
-
<span
|
|
516
|
-
t-esc="partner_cumul_line['older']"
|
|
517
|
-
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
518
|
-
/>
|
|
519
|
-
</div>
|
|
520
|
-
</div>
|
|
521
|
-
</div>
|
|
522
|
-
</template>
|
|
523
|
-
<template id="report_aged_partner_balance_account_ending_cumul">
|
|
524
|
-
<!-- Display ending balance line for account -->
|
|
525
|
-
<div class="act_as_table list_table" style="width: 100%;">
|
|
526
|
-
<div class="act_as_row lines" style="font-weight: bold;">
|
|
527
|
-
<t t-if="not show_move_line_details">
|
|
528
|
-
<!--## total-->
|
|
529
|
-
<div class="act_as_cell right" style="width: 32.52%;">Total</div>
|
|
530
|
-
<!--## amount_residual-->
|
|
531
|
-
<div class="act_as_cell amount" style="width: 9.64%;">
|
|
531
|
+
</div>
|
|
532
|
+
<t t-if="not age_partner_config">
|
|
533
|
+
<!--## age_30_days-->
|
|
534
|
+
<div class="act_as_cell amount" style="width: 6.00%;">
|
|
532
535
|
<span
|
|
533
|
-
t-esc="
|
|
536
|
+
t-esc="partner_cumul_line['30_days']"
|
|
534
537
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
535
538
|
/>
|
|
536
539
|
</div>
|
|
537
|
-
<!--##
|
|
538
|
-
<div class="act_as_cell amount" style="width:
|
|
540
|
+
<!--## age_60_days-->
|
|
541
|
+
<div class="act_as_cell amount" style="width: 6.00%;">
|
|
539
542
|
<span
|
|
540
|
-
t-esc="
|
|
543
|
+
t-esc="partner_cumul_line['60_days']"
|
|
541
544
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
542
545
|
/>
|
|
543
546
|
</div>
|
|
544
|
-
<!--##
|
|
545
|
-
<div class="act_as_cell amount" style="width:
|
|
547
|
+
<!--## age_90_days-->
|
|
548
|
+
<div class="act_as_cell amount" style="width: 6.00%;">
|
|
546
549
|
<span
|
|
547
|
-
t-esc="
|
|
550
|
+
t-esc="partner_cumul_line['90_days']"
|
|
548
551
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
549
552
|
/>
|
|
550
553
|
</div>
|
|
551
|
-
<!--##
|
|
552
|
-
<div class="act_as_cell amount" style="width:
|
|
554
|
+
<!--## age_120_days-->
|
|
555
|
+
<div class="act_as_cell amount" style="width: 6.00%;">
|
|
553
556
|
<span
|
|
554
|
-
t-esc="
|
|
557
|
+
t-esc="partner_cumul_line['120_days']"
|
|
555
558
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
556
559
|
/>
|
|
557
560
|
</div>
|
|
558
|
-
<!--##
|
|
559
|
-
<div class="act_as_cell amount" style="width:
|
|
561
|
+
<!--## older-->
|
|
562
|
+
<div class="act_as_cell amount" style="width: 6.00%;">
|
|
560
563
|
<span
|
|
561
|
-
t-esc="
|
|
564
|
+
t-esc="partner_cumul_line['older']"
|
|
562
565
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
563
566
|
/>
|
|
564
567
|
</div>
|
|
565
|
-
|
|
566
|
-
|
|
568
|
+
</t>
|
|
569
|
+
<t t-foreach="age_partner_config.line_ids" t-as="column_dynamic">
|
|
570
|
+
<div class="act_as_cell amount">
|
|
567
571
|
<span
|
|
568
|
-
t-esc="
|
|
572
|
+
t-esc="partner_cumul_line[column_dynamic]"
|
|
569
573
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
570
574
|
/>
|
|
571
575
|
</div>
|
|
572
|
-
|
|
576
|
+
</t>
|
|
577
|
+
</div>
|
|
578
|
+
</div>
|
|
579
|
+
</template>
|
|
580
|
+
<template id="report_aged_partner_balance_account_ending_cumul">
|
|
581
|
+
<!-- Display ending balance line for account -->
|
|
582
|
+
<div class="act_as_table list_table" style="width: 100%;">
|
|
583
|
+
<div class="act_as_row lines" style="font-weight: bold;">
|
|
584
|
+
<t t-if="not show_move_line_details">
|
|
585
|
+
<!--## total-->
|
|
586
|
+
<div class="act_as_cell right" style="width: 32.52%;">Total</div>
|
|
587
|
+
<!--## amount_residual-->
|
|
573
588
|
<div class="act_as_cell amount" style="width: 9.64%;">
|
|
574
589
|
<span
|
|
575
|
-
t-esc="account['
|
|
590
|
+
t-esc="account['residual']"
|
|
576
591
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
577
592
|
/>
|
|
578
593
|
</div>
|
|
594
|
+
<!--## current-->
|
|
595
|
+
<div class="act_as_cell amount" style="width: 9.64%;">
|
|
596
|
+
<span
|
|
597
|
+
t-esc="account['current']"
|
|
598
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
599
|
+
/>
|
|
600
|
+
</div>
|
|
601
|
+
<t t-if="not age_partner_config">
|
|
602
|
+
<!--## age_30_days-->
|
|
603
|
+
<div class="act_as_cell amount" style="width: 9.64%;">
|
|
604
|
+
<span
|
|
605
|
+
t-esc="account['30_days']"
|
|
606
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
607
|
+
/>
|
|
608
|
+
</div>
|
|
609
|
+
<!--## age_60_days-->
|
|
610
|
+
<div class="act_as_cell amount" style="width: 9.64%;">
|
|
611
|
+
<span
|
|
612
|
+
t-esc="account['60_days']"
|
|
613
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
614
|
+
/>
|
|
615
|
+
</div>
|
|
616
|
+
<!--## age_90_days-->
|
|
617
|
+
<div class="act_as_cell amount" style="width: 9.64%;">
|
|
618
|
+
<span
|
|
619
|
+
t-esc="account['90_days']"
|
|
620
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
621
|
+
/>
|
|
622
|
+
</div>
|
|
623
|
+
<!--## age_120_days-->
|
|
624
|
+
<div class="act_as_cell amount" style="width: 9.64%;">
|
|
625
|
+
<span
|
|
626
|
+
t-esc="account['120_days']"
|
|
627
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
628
|
+
/>
|
|
629
|
+
</div>
|
|
630
|
+
<!--## older-->
|
|
631
|
+
<div class="act_as_cell amount" style="width: 9.64%;">
|
|
632
|
+
<span
|
|
633
|
+
t-esc="account['older']"
|
|
634
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
635
|
+
/>
|
|
636
|
+
</div>
|
|
637
|
+
</t>
|
|
638
|
+
<t t-foreach="age_partner_config.line_ids" t-as="column_dynamic">
|
|
639
|
+
<div class="act_as_cell amount">
|
|
640
|
+
<span
|
|
641
|
+
t-esc="account[column_dynamic]"
|
|
642
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
643
|
+
/>
|
|
644
|
+
</div>
|
|
645
|
+
</t>
|
|
579
646
|
</t>
|
|
580
647
|
<t t-if="show_move_line_details">
|
|
581
648
|
<!--## total-->
|
|
@@ -589,48 +656,58 @@
|
|
|
589
656
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
590
657
|
/>
|
|
591
658
|
</div>
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
659
|
+
<!--## current-->
|
|
660
|
+
<div class="act_as_cell amount" style="width: 6.00%">
|
|
661
|
+
<span
|
|
595
662
|
t-esc="account['current']"
|
|
596
663
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
597
664
|
/>
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
<
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
<
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
<
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
<
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
<
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
665
|
+
</div>
|
|
666
|
+
<t t-if="not age_partner_config">
|
|
667
|
+
<!--## age_30_days-->
|
|
668
|
+
<div class="act_as_cell amount" style="width: 6.00%">
|
|
669
|
+
<span
|
|
670
|
+
t-esc="account['30_days']"
|
|
671
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
672
|
+
/>
|
|
673
|
+
</div>
|
|
674
|
+
<!--## age_60_days-->
|
|
675
|
+
<div class="act_as_cell amount" style="width: 6.00%">
|
|
676
|
+
<span
|
|
677
|
+
t-esc="account['60_days']"
|
|
678
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
679
|
+
/>
|
|
680
|
+
</div>
|
|
681
|
+
<!--## age_90_days-->
|
|
682
|
+
<div class="act_as_cell amount" style="width: 6.00%">
|
|
683
|
+
<span
|
|
684
|
+
t-esc="account['90_days']"
|
|
685
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
686
|
+
/>
|
|
687
|
+
</div>
|
|
688
|
+
<!--## age_120_days-->
|
|
689
|
+
<div class="act_as_cell amount" style="width: 6.00%">
|
|
690
|
+
<span
|
|
691
|
+
t-esc="account['120_days']"
|
|
692
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
693
|
+
/>
|
|
694
|
+
</div>
|
|
695
|
+
<!--## older-->
|
|
696
|
+
<div class="act_as_cell amount" style="width: 6.00%">
|
|
697
|
+
<span
|
|
698
|
+
t-esc="account['older']"
|
|
699
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
700
|
+
/>
|
|
701
|
+
</div>
|
|
702
|
+
</t>
|
|
703
|
+
<t t-foreach="age_partner_config.line_ids" t-as="column_dynamic">
|
|
704
|
+
<div class="act_as_cell amount">
|
|
705
|
+
<span
|
|
706
|
+
t-esc="account[column_dynamic]"
|
|
707
|
+
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
708
|
+
/>
|
|
709
|
+
</div>
|
|
710
|
+
</t>
|
|
634
711
|
</t>
|
|
635
712
|
</div>
|
|
636
713
|
<div class="act_as_row" style="font-weight: bold; font-style: italic;">
|
|
@@ -642,33 +719,42 @@
|
|
|
642
719
|
<!--## current-->
|
|
643
720
|
<div class="act_as_cell amount" style="width: 9.64%;">
|
|
644
721
|
<span t-esc="account['percent_current']" />
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
<
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
<
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
<
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
<
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
<
|
|
670
|
-
|
|
671
|
-
|
|
722
|
+
%
|
|
723
|
+
</div>
|
|
724
|
+
<t t-if="not age_partner_config">
|
|
725
|
+
<!--## age_30_days-->
|
|
726
|
+
<div class="act_as_cell amount" style="width: 9.64%;">
|
|
727
|
+
<span t-esc="account['percent_30_days']" />
|
|
728
|
+
%
|
|
729
|
+
</div>
|
|
730
|
+
<!--## age_60_days-->
|
|
731
|
+
<div class="act_as_cell amount" style="width: 9.64%;">
|
|
732
|
+
<span t-esc="account['percent_60_days']" />
|
|
733
|
+
%
|
|
734
|
+
</div>
|
|
735
|
+
<!--## age_90_days-->
|
|
736
|
+
<div class="act_as_cell amount" style="width: 9.64%;">
|
|
737
|
+
<span t-esc="account['percent_90_days']" />
|
|
738
|
+
%
|
|
739
|
+
</div>
|
|
740
|
+
<!--## age_120_days-->
|
|
741
|
+
<div class="act_as_cell amount" style="width: 9.64%;">
|
|
742
|
+
<span t-esc="account['percent_120_days']" />
|
|
743
|
+
%
|
|
744
|
+
</div>
|
|
745
|
+
<!--## older-->
|
|
746
|
+
<div class="act_as_cell amount" style="width: 9.64%;">
|
|
747
|
+
<span t-esc="account['percent_older']" />
|
|
748
|
+
%
|
|
749
|
+
</div>
|
|
750
|
+
</t>
|
|
751
|
+
<!--## current-->
|
|
752
|
+
<t t-foreach="age_partner_config.line_ids" t-as="column_dynamic">
|
|
753
|
+
<div class="act_as_cell amount">
|
|
754
|
+
<span t-esc="account['percent_'+str(column_dynamic.id)]" />
|
|
755
|
+
%
|
|
756
|
+
</div>
|
|
757
|
+
</t>
|
|
672
758
|
</t>
|
|
673
759
|
<t t-if="show_move_line_details">
|
|
674
760
|
<!--## total-->
|
|
@@ -680,34 +766,43 @@
|
|
|
680
766
|
<!--## current-->
|
|
681
767
|
<div class="act_as_cell amount" style="width: 6.00%">
|
|
682
768
|
<span t-esc="account['percent_current']" />
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
<
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
<
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
<
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
<
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
<
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
769
|
+
%
|
|
770
|
+
</div>
|
|
771
|
+
<t t-if="not age_partner_config">
|
|
772
|
+
<!--## age_30_days-->
|
|
773
|
+
<div class="act_as_cell amount" style="width: 6.00%">
|
|
774
|
+
<span t-esc="account['percent_30_days']" />
|
|
775
|
+
%
|
|
776
|
+
</div>
|
|
777
|
+
<!--## age_60_days-->
|
|
778
|
+
<div class="act_as_cell amount" style="width: 6.00%">
|
|
779
|
+
<span t-esc="account['percent_60_days']" />
|
|
780
|
+
%
|
|
781
|
+
</div>
|
|
782
|
+
<!--## age_90_days-->
|
|
783
|
+
<div class="act_as_cell amount" style="width: 6.00%">
|
|
784
|
+
<span t-esc="account['percent_90_days']" />
|
|
785
|
+
%
|
|
786
|
+
</div>
|
|
787
|
+
<!--## age_120_days-->
|
|
788
|
+
<div class="act_as_cell amount" style="width: 6.00%">
|
|
789
|
+
<span t-esc="account['percent_120_days']" />
|
|
790
|
+
%
|
|
791
|
+
</div>
|
|
792
|
+
<!--## older-->
|
|
793
|
+
<div class="act_as_cell amount" style="width: 6.00%">
|
|
794
|
+
<span t-esc="account['percent_older']" />
|
|
795
|
+
%
|
|
796
|
+
</div>
|
|
797
|
+
</t>
|
|
798
|
+
<!--## current-->
|
|
799
|
+
<t t-foreach="age_partner_config.line_ids" t-as="column_dynamic">
|
|
800
|
+
<div class="act_as_cell amount">
|
|
801
|
+
<span t-esc="account['percent_'+str(column_dynamic.id)]" />
|
|
802
|
+
%
|
|
803
|
+
</div>
|
|
804
|
+
</t>
|
|
805
|
+
</t>
|
|
711
806
|
</div>
|
|
712
807
|
</div>
|
|
713
808
|
</template>
|