odoo-addon-account-financial-report 18.0.1.2.3.1__py3-none-any.whl → 18.0.1.2.4__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.

@@ -11,7 +11,7 @@ Account Financial Reports
11
11
  !! This file is generated by oca-gen-addon-readme !!
12
12
  !! changes will be overwritten. !!
13
13
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
14
- !! source digest: sha256:0757f57937ecafb5ac9b489064e9a545d3cc5ffb345ec835634f4f37f8b2cf9d
14
+ !! source digest: sha256:925aee9608d4b75d1287d1043de64fa1320038f12854c74903d6ea32b8b83ff4
15
15
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
16
16
 
17
17
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -6,7 +6,7 @@
6
6
  # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
7
7
  {
8
8
  "name": "Account Financial Reports",
9
- "version": "18.0.1.2.3",
9
+ "version": "18.0.1.2.4",
10
10
  "category": "Reporting",
11
11
  "summary": "OCA Financial Reports",
12
12
  "author": "Camptocamp,"
@@ -483,7 +483,8 @@ class GeneralLedgerReport(models.AbstractModel):
483
483
  for tax_id in move_line["tax_ids"]:
484
484
  taxes_ids.add(tax_id)
485
485
  for analytic_account in move_line["analytic_distribution"] or {}:
486
- analytic_ids.add(int(analytic_account))
486
+ for analytic_account_id in analytic_account.split(","):
487
+ analytic_ids.add(int(analytic_account_id))
487
488
  if move_line["full_reconcile_id"]:
488
489
  rec_id = move_line["full_reconcile_id"][0]
489
490
  if rec_id not in full_reconcile_ids:
@@ -195,16 +195,17 @@ class GeneralLedgerXslx(models.AbstractModel):
195
195
  taxes_description += taxes_data[tax_id]["tax_name"] + " "
196
196
  if line["tax_line_id"]:
197
197
  taxes_description += line["tax_line_id"][1]
198
- for account_id, value in line["analytic_distribution"].items():
199
- if value < 100:
200
- analytic_distribution += "%s %d%% " % (
201
- analytic_data[int(account_id)]["name"],
202
- value,
203
- )
204
- else:
205
- analytic_distribution += (
206
- f"{analytic_data[int(account_id)]['name']} "
207
- )
198
+ for account_ids, value in line["analytic_distribution"].items():
199
+ for account_id in account_ids.split(","):
200
+ if value < 100:
201
+ analytic_distribution += "%s %d%% " % (
202
+ analytic_data[int(account_id)]["name"],
203
+ value,
204
+ )
205
+ else:
206
+ analytic_distribution += (
207
+ f"{analytic_data[int(account_id)]['name']} "
208
+ )
208
209
  line.update(
209
210
  {
210
211
  "taxes_description": taxes_description,
@@ -303,18 +304,19 @@ class GeneralLedgerXslx(models.AbstractModel):
303
304
  taxes_description += (
304
305
  taxes_data[tax_id]["tax_name"] + " "
305
306
  )
306
- for account_id, value in line[
307
+ for account_ids, value in line[
307
308
  "analytic_distribution"
308
309
  ].items():
309
- if value < 100:
310
- analytic_distribution += "%s %d%% " % (
311
- analytic_data[int(account_id)]["name"],
312
- value,
313
- )
314
- else:
315
- analytic_distribution += (
316
- f"{analytic_data[int(account_id)]['name']} "
317
- )
310
+ for account_id in account_ids.split(","):
311
+ if value < 100:
312
+ analytic_distribution += "%s %d%% " % (
313
+ analytic_data[int(account_id)]["name"],
314
+ value,
315
+ )
316
+ else:
317
+ analytic_distribution += (
318
+ f"{analytic_data[int(account_id)]['name']} "
319
+ )
318
320
  line.update(
319
321
  {
320
322
  "taxes_description": taxes_description,
@@ -480,22 +480,27 @@
480
480
  t-as="analytic_id"
481
481
  >
482
482
  <div>
483
- <span
484
- t-att-res-id="analytic_id"
485
- res-model="account.analytic.account"
486
- view-type="form"
483
+ <t
484
+ t-foreach="analytic_id.split(',')"
485
+ t-as="analytic_account_id"
487
486
  >
488
- <t
489
- t-out="o._get_atr_from_dict(int(analytic_id), analytic_data, 'name')"
490
- />
491
- <t
492
- t-if="int(line['analytic_distribution'][analytic_id]) &lt; 100"
487
+ <span
488
+ t-att-res-id="analytic_account_id"
489
+ res-model="account.analytic.account"
490
+ view-type="form"
493
491
  >
494
492
  <t
495
- t-out="int(line['analytic_distribution'][analytic_id])"
496
- />%
497
- </t>
498
- </span>
493
+ t-out="o._get_atr_from_dict(int(analytic_account_id), analytic_data, 'name')"
494
+ />
495
+ <t
496
+ t-if="int(line['analytic_distribution'][analytic_id]) &lt; 100"
497
+ >
498
+ <t
499
+ t-out="int(line['analytic_distribution'][analytic_id])"
500
+ />%
501
+ </t>
502
+ </span>
503
+ </t>
499
504
  </div>
500
505
  </t>
501
506
  </div>
@@ -372,7 +372,7 @@ ul.auto-toc {
372
372
  !! This file is generated by oca-gen-addon-readme !!
373
373
  !! changes will be overwritten. !!
374
374
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
375
- !! source digest: sha256:0757f57937ecafb5ac9b489064e9a545d3cc5ffb345ec835634f4f37f8b2cf9d
375
+ !! source digest: sha256:925aee9608d4b75d1287d1043de64fa1320038f12854c74903d6ea32b8b83ff4
376
376
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
377
377
  <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/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/account-financial-reporting/tree/18.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-18-0/account-financial-reporting-18-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&amp;target_branch=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
378
378
  <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: 18.0.1.2.3.1
3
+ Version: 18.0.1.2.4
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: odoo-addon-date_range==18.0.*
6
6
  Requires-Dist: odoo-addon-report_xlsx==18.0.*
@@ -29,7 +29,7 @@ Account Financial Reports
29
29
  !! This file is generated by oca-gen-addon-readme !!
30
30
  !! changes will be overwritten. !!
31
31
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
32
- !! source digest: sha256:0757f57937ecafb5ac9b489064e9a545d3cc5ffb345ec835634f4f37f8b2cf9d
32
+ !! source digest: sha256:925aee9608d4b75d1287d1043de64fa1320038f12854c74903d6ea32b8b83ff4
33
33
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
34
34
 
35
35
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -1,6 +1,6 @@
1
- odoo/addons/account_financial_report/README.rst,sha256=NvRGzEbBqxvPpA-dWMOEy7NWQOxJFrIQDs-9jyns5UM,7202
1
+ odoo/addons/account_financial_report/README.rst,sha256=IJ7ZafG7GgsH3MsV42Ynpteim3helVVdr3Qs19uvGCg,7202
2
2
  odoo/addons/account_financial_report/__init__.py,sha256=YoL8hk5QxSifbFJL7gPzpOSk-3zB1OSHJBXyZK25G6Q,187
3
- odoo/addons/account_financial_report/__manifest__.py,sha256=xTzvYD6GvIA59brpCSEejZJgzu0TlBGb3FbCemzXSpA,2061
3
+ odoo/addons/account_financial_report/__manifest__.py,sha256=CQiNTi9hlfOYdNG7VVhnrqcxB4MelxnTviDBI0t5be0,2061
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=Kj9fu5spPXthOCeQYlRHBdY8Ls6Qm3bWipqBNbuGpSw,79880
@@ -41,8 +41,8 @@ odoo/addons/account_financial_report/report/abstract_report.py,sha256=Uob7klyEnR
41
41
  odoo/addons/account_financial_report/report/abstract_report_xlsx.py,sha256=QXkTf9MgAsTEvht73di6LrXeIRBeoZsBTNDS8Oj6tA0,29900
42
42
  odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=Nsdz7nR7GDzrps07hSrqrh8nQfxBJaH8_7vNHyTZt70,19823
43
43
  odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py,sha256=U5X3ajFLlWlD-WqxTBsjLa1TdntImyVIgrMBpvOiBkY,14525
44
- odoo/addons/account_financial_report/report/general_ledger.py,sha256=dsYvK5Gmeyyu__z47nBrxjXkc3M1KN7-IMu_P43ji60,37687
45
- odoo/addons/account_financial_report/report/general_ledger_xlsx.py,sha256=k9w51C5jlpnrfzrflFNVH3iiv8rGms-Uqxwk4dnKt6U,17335
44
+ odoo/addons/account_financial_report/report/general_ledger.py,sha256=yHP6utvegBy5dHYPvdTEXb8VRZVa-jIJlaEV0OSzqcc,37766
45
+ odoo/addons/account_financial_report/report/general_ledger_xlsx.py,sha256=PlLj8FMiFRIbniLzMzvaN-p2HUAr7KnJZktRnOpYO24,17553
46
46
  odoo/addons/account_financial_report/report/journal_ledger.py,sha256=HvE8TlzMHAXGcNvqN2C8sEYx9CBKLk3a1vsu9X_3xX4,15465
47
47
  odoo/addons/account_financial_report/report/journal_ledger_xlsx.py,sha256=gqulSBNfZY5chQFbBxXLUa1I11AlY_NbaIz3lHDeF70,10060
48
48
  odoo/addons/account_financial_report/report/open_items.py,sha256=bAplEfAFLLq9-H_mM5VTttfST3DusSPT8d4mkINGpnk,12218
@@ -52,7 +52,7 @@ odoo/addons/account_financial_report/report/trial_balance_xlsx.py,sha256=HqSKYcD
52
52
  odoo/addons/account_financial_report/report/vat_report.py,sha256=Si2hVaxJLwLXfMqzAF0N5dMdbc2eaQtCVM0UmwQMHc0,10249
53
53
  odoo/addons/account_financial_report/report/vat_report_xlsx.py,sha256=movkNhEiNi3kGlBf2VEmxxWKuqW_fzqM_QKOXw04ppU,2307
54
54
  odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml,sha256=LQzls20HTACZzucMI4ssvi7hJpDbZbYWjCZAA_8J6Hw,40970
55
- odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=MkMILran7cejhkwcu6TPaSIA0iVgS_vlMqe7__BJ_Do,39134
55
+ odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=t_fB_YVNuD0kZe6fR9Ny1qp_Su9ucpq_IjlEw6N6RNs,39474
56
56
  odoo/addons/account_financial_report/report/templates/journal_ledger.xml,sha256=Sc2es_Xi8WWimBFp9JY_QYyAP0mMYHQhPp6Lmn7XHkY,21231
57
57
  odoo/addons/account_financial_report/report/templates/layouts.xml,sha256=EDBF0KpmyUzYODauhSIU1QL3zFYjlg3Ynq41K30WqgY,1575
58
58
  odoo/addons/account_financial_report/report/templates/open_items.xml,sha256=ku84beB5mDed_np9YhZuNygaUsdl1E-_AnlUQpq4Yy4,14834
@@ -61,7 +61,7 @@ odoo/addons/account_financial_report/report/templates/vat_report.xml,sha256=2WeL
61
61
  odoo/addons/account_financial_report/security/ir.model.access.csv,sha256=S1VQLLwLeaOeAMYGqtoOqHUaZVrvDUVE4Z-0-SRjSGQ,1134
62
62
  odoo/addons/account_financial_report/security/security.xml,sha256=YQCXbOuTGHCWGYwGnXMie_0tnWG5zYJGdoeey3o1xaw,382
63
63
  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=1sWNDHYWY_XQU3fcwQxPf7Gib-adqTKrsR-BSyE5xJU,20388
64
+ odoo/addons/account_financial_report/static/description/index.html,sha256=6AxZ5INXBnous1TvqWYOB9NFgqs62qa83Zj-b1Hxays,20388
65
65
  odoo/addons/account_financial_report/static/src/css/report.css,sha256=UYlrKHXNvw3lcwlaTVNCxSQyMDi0JrizZjn4fS5cirw,2354
66
66
  odoo/addons/account_financial_report/static/src/css/report_html.css,sha256=WO4wfg0-z87dAqLlqz1LuA_rBizNjlGnCUCeMzSSSYs,149
67
67
  odoo/addons/account_financial_report/static/src/js/report.esm.js,sha256=bJcyov25ktGuF-eT_SUGkRLudz-6UNnKR0gmv3e-ZYc,2495
@@ -98,7 +98,7 @@ odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256=H5DOU
98
98
  odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml,sha256=aHKMVPiQUfrpfUT0sojCfLUG38Am0DuEZSOHTPTof3k,7221
99
99
  odoo/addons/account_financial_report/wizard/vat_report_wizard.py,sha256=SQOpKuTWKjU9F5zfc7NIG0HxhZRHt5Eullia45RA_wM,3430
100
100
  odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml,sha256=3cJ0it2_5w20iw5x8QtTp11HoBk5kqQup6XjgJMbv7U,2274
101
- odoo_addon_account_financial_report-18.0.1.2.3.1.dist-info/METADATA,sha256=mMmiDV-wtXrwJ5DHiE7q_DN1J3QVgCywv5JBnlle6L8,7890
102
- odoo_addon_account_financial_report-18.0.1.2.3.1.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
103
- odoo_addon_account_financial_report-18.0.1.2.3.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
104
- odoo_addon_account_financial_report-18.0.1.2.3.1.dist-info/RECORD,,
101
+ odoo_addon_account_financial_report-18.0.1.2.4.dist-info/METADATA,sha256=BIIqqw3blgaJNmDvKNHLdyQ367p2yKAHnc8r0bP8_SY,7888
102
+ odoo_addon_account_financial_report-18.0.1.2.4.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
103
+ odoo_addon_account_financial_report-18.0.1.2.4.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
104
+ odoo_addon_account_financial_report-18.0.1.2.4.dist-info/RECORD,,