odoo-addon-account-financial-report 15.0.3.1.0__py3-none-any.whl → 15.0.3.2.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/report/general_ledger.py +56 -0
- odoo/addons/account_financial_report/report/general_ledger_xlsx.py +3 -2
- odoo/addons/account_financial_report/report/templates/general_ledger.xml +50 -50
- odoo/addons/account_financial_report/static/description/index.html +1 -1
- {odoo_addon_account_financial_report-15.0.3.1.0.dist-info → odoo_addon_account_financial_report-15.0.3.2.1.dist-info}/METADATA +2 -2
- {odoo_addon_account_financial_report-15.0.3.1.0.dist-info → odoo_addon_account_financial_report-15.0.3.2.1.dist-info}/RECORD +10 -10
- {odoo_addon_account_financial_report-15.0.3.1.0.dist-info → odoo_addon_account_financial_report-15.0.3.2.1.dist-info}/WHEEL +1 -1
- {odoo_addon_account_financial_report-15.0.3.1.0.dist-info → odoo_addon_account_financial_report-15.0.3.2.1.dist-info}/top_level.txt +0 -0
|
@@ -7,7 +7,7 @@ Account Financial Reports
|
|
|
7
7
|
!! This file is generated by oca-gen-addon-readme !!
|
|
8
8
|
!! changes will be overwritten. !!
|
|
9
9
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
-
!! source digest: sha256:
|
|
10
|
+
!! source digest: sha256:38cde881f8c26d6d2a7431dc276221a23540bbc88f3402efa98725db912e43d9
|
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
12
|
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -774,6 +774,7 @@ class GeneralLedgerReport(models.AbstractModel):
|
|
|
774
774
|
list_centralized_ml += list(centralized_ml[jnl_id].values())
|
|
775
775
|
return list_centralized_ml
|
|
776
776
|
|
|
777
|
+
# flake8: noqa: C901
|
|
777
778
|
def _get_report_values(self, docids, data):
|
|
778
779
|
wizard_id = data["wizard_id"]
|
|
779
780
|
wizard = self.env["general.ledger.report.wizard"].browse(wizard_id)
|
|
@@ -852,6 +853,61 @@ class GeneralLedgerReport(models.AbstractModel):
|
|
|
852
853
|
account[grouped_by] = False
|
|
853
854
|
del account["list_grouped"]
|
|
854
855
|
general_ledger = sorted(general_ledger, key=lambda k: k["code"])
|
|
856
|
+
# Set the bal_curr of the initial balance to 0 if it does not correspond
|
|
857
|
+
# (reducing the corresponding of the bal_curr of the initial balance).
|
|
858
|
+
for gl_item in general_ledger:
|
|
859
|
+
if not foreign_currency:
|
|
860
|
+
continue
|
|
861
|
+
if (
|
|
862
|
+
not gl_item["currency_id"]
|
|
863
|
+
or gl_item["currency_id"] != company.currency_id
|
|
864
|
+
):
|
|
865
|
+
gl_item["fin_bal"]["bal_curr"] -= gl_item["init_bal"]["bal_curr"]
|
|
866
|
+
gl_item["init_bal"]["bal_curr"] = 0
|
|
867
|
+
if "list_grouped" in gl_item:
|
|
868
|
+
for lg_item in gl_item["list_grouped"]:
|
|
869
|
+
lg_item["fin_bal"]["bal_curr"] -= lg_item["init_bal"][
|
|
870
|
+
"bal_curr"
|
|
871
|
+
]
|
|
872
|
+
lg_item["init_bal"]["bal_curr"] = 0
|
|
873
|
+
# Set the fin_bal_currency_id value if the account does not have it set
|
|
874
|
+
# and there are move lines in a currency different from that of
|
|
875
|
+
# the company (USD for example).
|
|
876
|
+
for gl_item in general_ledger:
|
|
877
|
+
fin_bal_currency_ids = []
|
|
878
|
+
fin_bal_currency_id = gl_item["currency_id"]
|
|
879
|
+
if gl_item["currency_id"] or not foreign_currency:
|
|
880
|
+
continue
|
|
881
|
+
gl_item["fin_bal"]["bal_curr"] = gl_item["init_bal"]["bal_curr"]
|
|
882
|
+
if "move_lines" in gl_item:
|
|
883
|
+
for ml in gl_item["move_lines"]:
|
|
884
|
+
ml_currency_id = (
|
|
885
|
+
ml["currency_id"][0] if ml["currency_id"] else False
|
|
886
|
+
)
|
|
887
|
+
if ml_currency_id and ml_currency_id != company.currency_id.id:
|
|
888
|
+
gl_item["fin_bal"]["bal_curr"] += ml["bal_curr"]
|
|
889
|
+
if ml_currency_id not in fin_bal_currency_ids:
|
|
890
|
+
fin_bal_currency_ids.append(ml_currency_id)
|
|
891
|
+
elif "list_grouped" in gl_item:
|
|
892
|
+
fin_bal_currency_ids = []
|
|
893
|
+
for lg_item in gl_item["list_grouped"]:
|
|
894
|
+
lg_item["fin_bal"]["bal_curr"] = lg_item["init_bal"]["bal_curr"]
|
|
895
|
+
for ml in lg_item["move_lines"]:
|
|
896
|
+
ml_currency_id = (
|
|
897
|
+
ml["currency_id"][0] if ml["currency_id"] else False
|
|
898
|
+
)
|
|
899
|
+
if ml_currency_id and ml_currency_id != company.currency_id.id:
|
|
900
|
+
lg_item["fin_bal"]["bal_curr"] += ml["bal_curr"]
|
|
901
|
+
gl_item["fin_bal"]["bal_curr"] += ml["bal_curr"]
|
|
902
|
+
if ml_currency_id not in fin_bal_currency_ids:
|
|
903
|
+
fin_bal_currency_ids.append(ml_currency_id)
|
|
904
|
+
# If there is only 1 currency, we set that one as fin_bal_currency_id
|
|
905
|
+
# The use of different move lines with different currencies (EUR + GBP)
|
|
906
|
+
# will be excluded. We use a different field to avoid showing the initial
|
|
907
|
+
# balance and/or distorting data.
|
|
908
|
+
if not gl_item["currency_id"] and len(fin_bal_currency_ids) == 1:
|
|
909
|
+
fin_bal_currency_id = fin_bal_currency_ids[0]
|
|
910
|
+
gl_item["fin_bal_currency_id"] = fin_bal_currency_id
|
|
855
911
|
return {
|
|
856
912
|
"doc_ids": [wizard_id],
|
|
857
913
|
"doc_model": "general.ledger.report.wizard",
|
|
@@ -347,10 +347,11 @@ class GeneralLedgerXslx(models.AbstractModel):
|
|
|
347
347
|
"final_balance": account["fin_bal"]["balance"],
|
|
348
348
|
}
|
|
349
349
|
)
|
|
350
|
-
if foreign_currency and account["
|
|
350
|
+
if foreign_currency and account["fin_bal_currency_id"]:
|
|
351
351
|
account.update(
|
|
352
352
|
{
|
|
353
|
-
"final_bal_curr":
|
|
353
|
+
"final_bal_curr": total_bal_curr,
|
|
354
|
+
"currency_id": account["fin_bal_currency_id"],
|
|
354
355
|
}
|
|
355
356
|
)
|
|
356
357
|
self.write_ending_balance_from_dict(account, report_data)
|
|
@@ -16,15 +16,15 @@
|
|
|
16
16
|
<!-- Defines global variables used by internal layout -->
|
|
17
17
|
<t t-set="title">
|
|
18
18
|
General Ledger -
|
|
19
|
-
<t t-
|
|
19
|
+
<t t-out="company_name" />
|
|
20
20
|
-
|
|
21
|
-
<t t-
|
|
21
|
+
<t t-out="currency_name" />
|
|
22
22
|
</t>
|
|
23
23
|
<div class="page">
|
|
24
24
|
<div class="row">
|
|
25
25
|
<h4
|
|
26
26
|
class="mt0"
|
|
27
|
-
t-
|
|
27
|
+
t-out="title or 'Odoo Report'"
|
|
28
28
|
style="text-align: center;"
|
|
29
29
|
/>
|
|
30
30
|
</div>
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
<!-- Display account header -->
|
|
36
36
|
<div class="act_as_table list_table" style="margin-top: 10px;" />
|
|
37
37
|
<div class="act_as_caption account_title" style="width: 100%">
|
|
38
|
-
<span t-
|
|
39
|
-
t-
|
|
38
|
+
<span t-out="account['code']" /> - <span
|
|
39
|
+
t-out="account['name']"
|
|
40
40
|
/>
|
|
41
41
|
</div>
|
|
42
42
|
<t t-if="'list_grouped' not in account">
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
<div class="page_break">
|
|
63
63
|
<!-- Display partner header -->
|
|
64
64
|
<div class="act_as_caption account_title">
|
|
65
|
-
<span t-
|
|
65
|
+
<span t-out="group_item['name']" />
|
|
66
66
|
</div>
|
|
67
67
|
<!-- Display partner move lines -->
|
|
68
68
|
<t
|
|
@@ -114,9 +114,9 @@
|
|
|
114
114
|
<div class="act_as_row">
|
|
115
115
|
<div class="act_as_cell">
|
|
116
116
|
From:
|
|
117
|
-
<span t-
|
|
117
|
+
<span t-out="date_from" />
|
|
118
118
|
To:
|
|
119
|
-
<span t-
|
|
119
|
+
<span t-out="date_to" />
|
|
120
120
|
</div>
|
|
121
121
|
<div class="act_as_cell">
|
|
122
122
|
<t t-if="only_posted_moves">All posted entries</t>
|
|
@@ -246,7 +246,7 @@
|
|
|
246
246
|
res-model="account.move.line"
|
|
247
247
|
>
|
|
248
248
|
<t
|
|
249
|
-
t-
|
|
249
|
+
t-out="account_or_group_item_object['init_bal']['debit']"
|
|
250
250
|
t-options="{'widget': 'monetary', 'display_currency': company_currency}"
|
|
251
251
|
/>
|
|
252
252
|
</span>
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
res-model="account.move.line"
|
|
258
258
|
>
|
|
259
259
|
<t
|
|
260
|
-
t-
|
|
260
|
+
t-out="account_or_group_item_object['init_bal']['debit']"
|
|
261
261
|
t-options="{'widget': 'monetary', 'display_currency': company_currency}"
|
|
262
262
|
/>
|
|
263
263
|
</span>
|
|
@@ -272,7 +272,7 @@
|
|
|
272
272
|
res-model="account.move.line"
|
|
273
273
|
>
|
|
274
274
|
<t
|
|
275
|
-
t-
|
|
275
|
+
t-out="account_or_group_item_object['init_bal']['credit']"
|
|
276
276
|
t-options="{'widget': 'monetary', 'display_currency': company_currency}"
|
|
277
277
|
/>
|
|
278
278
|
</span>
|
|
@@ -283,7 +283,7 @@
|
|
|
283
283
|
res-model="account.move.line"
|
|
284
284
|
>
|
|
285
285
|
<t
|
|
286
|
-
t-
|
|
286
|
+
t-out="account_or_group_item_object['init_bal']['credit']"
|
|
287
287
|
t-options="{'widget': 'monetary', 'display_currency': company_currency}"
|
|
288
288
|
/>
|
|
289
289
|
</span>
|
|
@@ -294,7 +294,7 @@
|
|
|
294
294
|
<t t-if="type == 'account_type'">
|
|
295
295
|
<span t-att-domain="misc_domain" res-model="account.move.line">
|
|
296
296
|
<t
|
|
297
|
-
t-
|
|
297
|
+
t-out="account_or_group_item_object['init_bal']['balance']"
|
|
298
298
|
t-options="{'widget': 'monetary', 'display_currency': company_currency}"
|
|
299
299
|
/>
|
|
300
300
|
</span>
|
|
@@ -305,7 +305,7 @@
|
|
|
305
305
|
res-model="account.move.line"
|
|
306
306
|
>
|
|
307
307
|
<t
|
|
308
|
-
t-
|
|
308
|
+
t-out="account_or_group_item_object['init_bal']['balance']"
|
|
309
309
|
t-options="{'widget': 'monetary', 'display_currency': company_currency}"
|
|
310
310
|
/>
|
|
311
311
|
</span>
|
|
@@ -324,7 +324,7 @@
|
|
|
324
324
|
res-model="account.move.line"
|
|
325
325
|
>
|
|
326
326
|
<t
|
|
327
|
-
t-
|
|
327
|
+
t-out="account_or_group_item_object['init_bal']['bal_curr']"
|
|
328
328
|
t-options="{'widget': 'monetary', 'display_currency': account_currency}"
|
|
329
329
|
/>
|
|
330
330
|
</span>
|
|
@@ -335,7 +335,7 @@
|
|
|
335
335
|
res-model="account.move.line"
|
|
336
336
|
>
|
|
337
337
|
<t
|
|
338
|
-
t-
|
|
338
|
+
t-out="account_or_group_item_object['init_bal']['bal_curr']"
|
|
339
339
|
t-options="{'widget': 'monetary', 'display_currency': account_currency}"
|
|
340
340
|
/>
|
|
341
341
|
</span>
|
|
@@ -348,7 +348,7 @@
|
|
|
348
348
|
res-model="account.move.line"
|
|
349
349
|
>
|
|
350
350
|
<t
|
|
351
|
-
t-
|
|
351
|
+
t-out="account_or_group_item_object['init_bal']['bal_curr']"
|
|
352
352
|
t-options="{'widget': 'monetary', 'display_currency': account_currency}"
|
|
353
353
|
/>
|
|
354
354
|
</span>
|
|
@@ -359,7 +359,7 @@
|
|
|
359
359
|
res-model="account.move.line"
|
|
360
360
|
>
|
|
361
361
|
<t
|
|
362
|
-
t-
|
|
362
|
+
t-out="account_or_group_item_object['init_bal']['bal_curr']"
|
|
363
363
|
t-options="{'widget': 'monetary', 'display_currency': account_currency}"
|
|
364
364
|
/>
|
|
365
365
|
</span>
|
|
@@ -387,7 +387,7 @@
|
|
|
387
387
|
view-type="form"
|
|
388
388
|
>
|
|
389
389
|
<t
|
|
390
|
-
t-
|
|
390
|
+
t-out="line['date']"
|
|
391
391
|
t-options="{'widget': 'date'}"
|
|
392
392
|
/>
|
|
393
393
|
</span>
|
|
@@ -396,7 +396,7 @@
|
|
|
396
396
|
<span>
|
|
397
397
|
<!--## We don't use t-field because it throws an error on click -->
|
|
398
398
|
<t
|
|
399
|
-
t-
|
|
399
|
+
t-out="line['date']"
|
|
400
400
|
t-options="{'widget': 'date'}"
|
|
401
401
|
/>
|
|
402
402
|
</span>
|
|
@@ -410,7 +410,7 @@
|
|
|
410
410
|
res-model="account.move"
|
|
411
411
|
view-type="form"
|
|
412
412
|
>
|
|
413
|
-
<t t-
|
|
413
|
+
<t t-out="line['entry']" />
|
|
414
414
|
</span>
|
|
415
415
|
</t>
|
|
416
416
|
</div>
|
|
@@ -422,7 +422,7 @@
|
|
|
422
422
|
view-type="form"
|
|
423
423
|
>
|
|
424
424
|
<t
|
|
425
|
-
t-
|
|
425
|
+
t-out="o._get_atr_from_dict(line['journal_id'], journals_data, 'code')"
|
|
426
426
|
/>
|
|
427
427
|
</span>
|
|
428
428
|
</div>
|
|
@@ -433,7 +433,7 @@
|
|
|
433
433
|
res-model="account.account"
|
|
434
434
|
view-type="form"
|
|
435
435
|
>
|
|
436
|
-
<t t-
|
|
436
|
+
<t t-out="account['code']" />
|
|
437
437
|
</span>
|
|
438
438
|
</div>
|
|
439
439
|
<!--## taxes-->
|
|
@@ -441,12 +441,12 @@
|
|
|
441
441
|
<t t-if="taxes_data and line['tax_ids']">
|
|
442
442
|
<t t-foreach="line['tax_ids']" t-as="tax_id">
|
|
443
443
|
<span
|
|
444
|
-
t-
|
|
444
|
+
t-out="o._get_atr_from_dict(tax_id, taxes_data, 'tax_name')"
|
|
445
445
|
/>
|
|
446
446
|
</t>
|
|
447
447
|
</t>
|
|
448
448
|
<t t-if="line['tax_line_id']">
|
|
449
|
-
<span t-
|
|
449
|
+
<span t-out="line['tax_line_id'][1]" />
|
|
450
450
|
</t>
|
|
451
451
|
</div>
|
|
452
452
|
<!--## partner-->
|
|
@@ -457,7 +457,7 @@
|
|
|
457
457
|
res-model="res.partner"
|
|
458
458
|
view-type="form"
|
|
459
459
|
>
|
|
460
|
-
<t t-
|
|
460
|
+
<t t-out="line['partner_name']" />
|
|
461
461
|
</span>
|
|
462
462
|
</t>
|
|
463
463
|
</div>
|
|
@@ -469,12 +469,12 @@
|
|
|
469
469
|
res-model="account.move.line"
|
|
470
470
|
view-type="form"
|
|
471
471
|
>
|
|
472
|
-
<t t-
|
|
472
|
+
<t t-out="line['ref_label']" />
|
|
473
473
|
</span>
|
|
474
474
|
</t>
|
|
475
475
|
<t t-else="">
|
|
476
476
|
<span>
|
|
477
|
-
<t t-
|
|
477
|
+
<t t-out="line['ref_label']" />
|
|
478
478
|
</span>
|
|
479
479
|
</t>
|
|
480
480
|
</div>
|
|
@@ -487,7 +487,7 @@
|
|
|
487
487
|
res-model="account.analytic.account"
|
|
488
488
|
view-type="form"
|
|
489
489
|
>
|
|
490
|
-
<t t-
|
|
490
|
+
<t t-out="line['analytic_account']" />
|
|
491
491
|
</span>
|
|
492
492
|
</t>
|
|
493
493
|
</div>
|
|
@@ -498,7 +498,7 @@
|
|
|
498
498
|
<t t-if="line['tag_ids']">
|
|
499
499
|
<t t-foreach="line['tag_ids']" t-as="tag_id">
|
|
500
500
|
<span
|
|
501
|
-
t-
|
|
501
|
+
t-out="o._get_atr_from_dict(tag_id, tags_data, 'name')"
|
|
502
502
|
/>
|
|
503
503
|
</t>
|
|
504
504
|
</t>
|
|
@@ -512,7 +512,7 @@
|
|
|
512
512
|
res-model="account.full.reconcile"
|
|
513
513
|
view-type="form"
|
|
514
514
|
>
|
|
515
|
-
<t t-
|
|
515
|
+
<t t-out="line['rec_name']" />
|
|
516
516
|
</span>
|
|
517
517
|
</t>
|
|
518
518
|
</div>
|
|
@@ -525,7 +525,7 @@
|
|
|
525
525
|
view-type="form"
|
|
526
526
|
>
|
|
527
527
|
<t
|
|
528
|
-
t-
|
|
528
|
+
t-out="line['debit']"
|
|
529
529
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
530
530
|
/>
|
|
531
531
|
</span>
|
|
@@ -533,7 +533,7 @@
|
|
|
533
533
|
<t t-else="">
|
|
534
534
|
<span>
|
|
535
535
|
<t
|
|
536
|
-
t-
|
|
536
|
+
t-out="line['debit']"
|
|
537
537
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
538
538
|
/>
|
|
539
539
|
</span>
|
|
@@ -548,7 +548,7 @@
|
|
|
548
548
|
view-type="form"
|
|
549
549
|
>
|
|
550
550
|
<t
|
|
551
|
-
t-
|
|
551
|
+
t-out="line['credit']"
|
|
552
552
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
553
553
|
/>
|
|
554
554
|
</span>
|
|
@@ -556,7 +556,7 @@
|
|
|
556
556
|
<t t-else="">
|
|
557
557
|
<span>
|
|
558
558
|
<t
|
|
559
|
-
t-
|
|
559
|
+
t-out="line['credit']"
|
|
560
560
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
561
561
|
/>
|
|
562
562
|
</span>
|
|
@@ -571,7 +571,7 @@
|
|
|
571
571
|
view-type="form"
|
|
572
572
|
>
|
|
573
573
|
<t
|
|
574
|
-
t-
|
|
574
|
+
t-out="line['balance']"
|
|
575
575
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
576
576
|
/>
|
|
577
577
|
</span>
|
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
<t t-else="">
|
|
580
580
|
<span>
|
|
581
581
|
<t
|
|
582
|
-
t-
|
|
582
|
+
t-out="line['balance']"
|
|
583
583
|
t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
|
|
584
584
|
/>
|
|
585
585
|
</span>
|
|
@@ -602,7 +602,7 @@
|
|
|
602
602
|
t-att-res-id="line['id']"
|
|
603
603
|
res-model="account.move.line"
|
|
604
604
|
view-type="form"
|
|
605
|
-
t-
|
|
605
|
+
t-out="line['bal_curr']"
|
|
606
606
|
t-options="{'widget': 'monetary', 'display_currency': line_currency}"
|
|
607
607
|
t-if="line_currency!=company_currency"
|
|
608
608
|
/>
|
|
@@ -613,7 +613,7 @@
|
|
|
613
613
|
t-att-res-id="line['id']"
|
|
614
614
|
res-model="account.move.line"
|
|
615
615
|
view-type="form"
|
|
616
|
-
t-
|
|
616
|
+
t-out="total_bal_curr"
|
|
617
617
|
t-options="{'widget': 'monetary', 'display_currency': line_currency}"
|
|
618
618
|
t-if="line_currency!=company_currency"
|
|
619
619
|
/>
|
|
@@ -637,8 +637,8 @@
|
|
|
637
637
|
<!--## date-->
|
|
638
638
|
<t t-if='type == "account_type"'>
|
|
639
639
|
<div class="act_as_cell first_column" style="width: 41.32%;">
|
|
640
|
-
<span t-
|
|
641
|
-
t-
|
|
640
|
+
<span t-out="account['code']" /> - <span
|
|
641
|
+
t-out="account['name']"
|
|
642
642
|
/>
|
|
643
643
|
</div>
|
|
644
644
|
<div
|
|
@@ -666,21 +666,21 @@
|
|
|
666
666
|
<!--## debit-->
|
|
667
667
|
<div class="act_as_cell amount" style="width: 8.02%;">
|
|
668
668
|
<span
|
|
669
|
-
t-
|
|
669
|
+
t-out="account_or_group_item_object['fin_bal']['debit']"
|
|
670
670
|
t-options="{'widget': 'monetary', 'display_currency': company_currency}"
|
|
671
671
|
/>
|
|
672
672
|
</div>
|
|
673
673
|
<!--## credit-->
|
|
674
674
|
<div class="act_as_cell amount" style="width: 8.02%;">
|
|
675
675
|
<span
|
|
676
|
-
t-
|
|
676
|
+
t-out="account_or_group_item_object['fin_bal']['credit']"
|
|
677
677
|
t-options="{'widget': 'monetary', 'display_currency': company_currency}"
|
|
678
678
|
/>
|
|
679
679
|
</div>
|
|
680
680
|
<!--## balance cumulated-->
|
|
681
681
|
<div class="act_as_cell amount" style="width: 8.02%;">
|
|
682
682
|
<span
|
|
683
|
-
t-
|
|
683
|
+
t-out="account_or_group_item_object['fin_bal']['balance']"
|
|
684
684
|
t-options="{'widget': 'monetary', 'display_currency': company_currency}"
|
|
685
685
|
/>
|
|
686
686
|
</div>
|
|
@@ -696,10 +696,10 @@
|
|
|
696
696
|
/>
|
|
697
697
|
<t t-set="misc_grouped_domain" t-value="[]" t-else="" />
|
|
698
698
|
<t t-if="foreign_currency">
|
|
699
|
-
<t t-if="account['
|
|
699
|
+
<t t-if="account['fin_bal_currency_id']">
|
|
700
700
|
<t
|
|
701
701
|
t-set="account_currency"
|
|
702
|
-
t-value="currency_model.browse(account['
|
|
702
|
+
t-value="currency_model.browse(account['fin_bal_currency_id'])"
|
|
703
703
|
/>
|
|
704
704
|
<div class="act_as_cell amount" style="width: 3.63%;">
|
|
705
705
|
<t t-if="type == 'account_type'">
|
|
@@ -711,7 +711,7 @@
|
|
|
711
711
|
style="color: black;"
|
|
712
712
|
>
|
|
713
713
|
<t
|
|
714
|
-
t-
|
|
714
|
+
t-out="account_or_group_item_object['fin_bal']['bal_curr']"
|
|
715
715
|
t-options="{'widget': 'monetary', 'display_currency': account_currency}"
|
|
716
716
|
/>
|
|
717
717
|
</a>
|
|
@@ -726,7 +726,7 @@
|
|
|
726
726
|
style="color: black;"
|
|
727
727
|
>
|
|
728
728
|
<t
|
|
729
|
-
t-
|
|
729
|
+
t-out="account_or_group_item_object['fin_bal']['bal_curr']"
|
|
730
730
|
t-options="{'widget': 'monetary', 'display_currency': account_currency}"
|
|
731
731
|
/>
|
|
732
732
|
</a>
|
|
@@ -743,7 +743,7 @@
|
|
|
743
743
|
style="color: black;"
|
|
744
744
|
>
|
|
745
745
|
<t
|
|
746
|
-
t-
|
|
746
|
+
t-out="account_or_group_item_object['fin_bal']['bal_curr']"
|
|
747
747
|
t-options="{'widget': 'monetary', 'display_currency': account_currency}"
|
|
748
748
|
/>
|
|
749
749
|
</a>
|
|
@@ -758,7 +758,7 @@
|
|
|
758
758
|
style="color: black;"
|
|
759
759
|
>
|
|
760
760
|
<t
|
|
761
|
-
t-
|
|
761
|
+
t-out="account_or_group_item_object['fin_bal']['bal_curr']"
|
|
762
762
|
t-options="{'widget': 'monetary', 'display_currency': account_currency}"
|
|
763
763
|
/>
|
|
764
764
|
</a>
|
|
@@ -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:38cde881f8c26d6d2a7431dc276221a23540bbc88f3402efa98725db912e43d9
|
|
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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-account_financial_report
|
|
3
|
-
Version: 15.0.3.1
|
|
3
|
+
Version: 15.0.3.2.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:38cde881f8c26d6d2a7431dc276221a23540bbc88f3402efa98725db912e43d9
|
|
28
28
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
29
29
|
|
|
30
30
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
odoo/addons/account_financial_report/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_financial_report/README.rst,sha256=YZc5_Gl3k4IXV__UlAV8SD6doSiRkhKrmqPJ-1nvcNY,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=KXJvyqRIIASJ6goZdvX2UjOCcUssIbf3rYO7k68Fhu0,2307
|
|
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
6
|
odoo/addons/account_financial_report/i18n/account_financial_report.pot,sha256=1xJDwfyAn4ULV3o6Tj0vpcIZJerwhmXfWF7tqKUskos,85459
|
|
@@ -40,8 +40,8 @@ odoo/addons/account_financial_report/report/abstract_report.py,sha256=54-xtL4smX
|
|
|
40
40
|
odoo/addons/account_financial_report/report/abstract_report_xlsx.py,sha256=tx3R8NNXKU6AEobYs5urvaVHNqOxXCOZTY3Rf80Ec0c,29932
|
|
41
41
|
odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=p-D_r-PA8dKl0tHYawEcP5QpvjwiBq7eSQm2kRBHY-A,20848
|
|
42
42
|
odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py,sha256=9xB660H5Xv8aX65oy-1gDXBSjQERIpRrlJhbtXtyToQ,14492
|
|
43
|
-
odoo/addons/account_financial_report/report/general_ledger.py,sha256=
|
|
44
|
-
odoo/addons/account_financial_report/report/general_ledger_xlsx.py,sha256=
|
|
43
|
+
odoo/addons/account_financial_report/report/general_ledger.py,sha256=9-zI3KFf2GZBOVVSCZM9kcwE7txtnE-gJIYYkF1y9kY,38656
|
|
44
|
+
odoo/addons/account_financial_report/report/general_ledger_xlsx.py,sha256=tMM4_xbrT5ZkCsBmFapcg7ginACS2kXkaUybD1nK4pU,16527
|
|
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
47
|
odoo/addons/account_financial_report/report/open_items.py,sha256=ylazC_E-iYHWdYmSz8iC2gljSvOksSdB-b0weSqF0EM,14091
|
|
@@ -51,7 +51,7 @@ odoo/addons/account_financial_report/report/trial_balance_xlsx.py,sha256=iGn0bVz
|
|
|
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
53
|
odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml,sha256=WNaWvMoBR74v6SGj13Tp6Eydxd-zk93Yf3x0dnRIj28,43416
|
|
54
|
-
odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=
|
|
54
|
+
odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=se25p_W2iLo91mJgHsDAKiW3U2JJGWu8h5duVPSZKRg,38706
|
|
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
57
|
odoo/addons/account_financial_report/report/templates/open_items.xml,sha256=OxyVnVzPa0UKGNuV2uqgWh7RxMwsWu8OzQbcIV0iDaE,22821
|
|
@@ -60,7 +60,7 @@ odoo/addons/account_financial_report/report/templates/vat_report.xml,sha256=F5hQ
|
|
|
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=g1EkYGN_fJ_0VTjbQCQ0m3JnO-usOowfNNUus5MYmY4,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
|
|
@@ -98,7 +98,7 @@ odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256=rq4kn
|
|
|
98
98
|
odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml,sha256=kzsselPX_jYDWQEbDSXIS5K2vKuyzjTZMdinH0976c0,7413
|
|
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.3.1.
|
|
102
|
-
odoo_addon_account_financial_report-15.0.3.1.
|
|
103
|
-
odoo_addon_account_financial_report-15.0.3.1.
|
|
104
|
-
odoo_addon_account_financial_report-15.0.3.1.
|
|
101
|
+
odoo_addon_account_financial_report-15.0.3.2.1.dist-info/METADATA,sha256=1s_DITRbq23btR_E2DPSWBzOGYS32LuVWIMudMIfNto,7565
|
|
102
|
+
odoo_addon_account_financial_report-15.0.3.2.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
103
|
+
odoo_addon_account_financial_report-15.0.3.2.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
104
|
+
odoo_addon_account_financial_report-15.0.3.2.1.dist-info/RECORD,,
|