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

@@ -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:364d2befa5ed719dd02c59973a24c82ea5405e46db31a964981b46363d3ace68
10
+ !! source digest: sha256:cb628456fefe33b0fd81a9140719a400a6f9a0de213d34a1083731f50cc47694
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |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.0.3",
9
+ "version": "18.0.1.0.5",
10
10
  "category": "Reporting",
11
11
  "summary": "OCA Financial Reports",
12
12
  "author": "Camptocamp,"
@@ -18,11 +18,12 @@ class GeneralLedgerReport(models.AbstractModel):
18
18
 
19
19
  def _get_analytic_data(self, account_ids):
20
20
  analytic_accounts = self.env["account.analytic.account"].search_fetch(
21
- [("id", "in", account_ids)], ["name"]
21
+ [("id", "in", account_ids)], ["name", "code"]
22
22
  )
23
23
  analytic_data = {}
24
24
  for account in analytic_accounts:
25
- analytic_data.update({account.id: {"name": account.name}})
25
+ name = f"[{account.code}] {account.name}" if account.code else account.name
26
+ analytic_data.update({account.id: {"name": name}})
26
27
  return analytic_data
27
28
 
28
29
  def _get_taxes_data(self, taxes_ids):
@@ -52,12 +52,12 @@
52
52
  <t
53
53
  t-set="aml_domain_extra"
54
54
  t-if="grouped_item['id'] > 0"
55
- t-value="[('analytic_account_id', '=', grouped_item['id'])]"
55
+ t-value="[('analytic_account_ids', '=', grouped_item['id'])]"
56
56
  />
57
57
  <t
58
58
  t-set="aml_domain_extra"
59
59
  t-else=""
60
- t-value="[('analytic_account_id', '=', False)]"
60
+ t-value="[('analytic_account_ids', '=', False)]"
61
61
  />
62
62
  <div class="act_as_table data_table" style="width: 100%;">
63
63
  <t
@@ -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:364d2befa5ed719dd02c59973a24c82ea5405e46db31a964981b46363d3ace68
370
+ !! source digest: sha256:cb628456fefe33b0fd81a9140719a400a6f9a0de213d34a1083731f50cc47694
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/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>
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: 18.0.1.0.3
3
+ Version: 18.0.1.0.5
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.*
@@ -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:364d2befa5ed719dd02c59973a24c82ea5405e46db31a964981b46363d3ace68
27
+ !! source digest: sha256:cb628456fefe33b0fd81a9140719a400a6f9a0de213d34a1083731f50cc47694
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=4cI5BlQvcEod2oOpvJ39b7KYe4MOvqifMnspMT5BGKE,7037
1
+ odoo/addons/account_financial_report/README.rst,sha256=8mcg39u67M8GXvZ16LXqc7Z8w9lW2PNBeQiMCRhCFho,7037
2
2
  odoo/addons/account_financial_report/__init__.py,sha256=YoL8hk5QxSifbFJL7gPzpOSk-3zB1OSHJBXyZK25G6Q,187
3
- odoo/addons/account_financial_report/__manifest__.py,sha256=c0Zrz06dDAfl9u6xw5KYwpI60YY-gci9fG3HwPQRdR4,2119
3
+ odoo/addons/account_financial_report/__manifest__.py,sha256=PEHw-_xHtd6an86LykEZx2-33lRx5iRcmm3TEXnJAck,2119
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=0OSpF-whWjhVRJKbwm5VZEPpGdq60pYqU9JxrgyEcjs,79628
@@ -41,7 +41,7 @@ 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=YMvOVAHqkbIj6LZVz9TTi4LoC7Bf2qc8vyWs19I2ZrE,38405
44
+ odoo/addons/account_financial_report/report/general_ledger.py,sha256=lAjBhv4_tX4XD5hc2KHf8g1aozgr99Dvkmffj0ZLPXM,38493
45
45
  odoo/addons/account_financial_report/report/general_ledger_xlsx.py,sha256=k9w51C5jlpnrfzrflFNVH3iiv8rGms-Uqxwk4dnKt6U,17335
46
46
  odoo/addons/account_financial_report/report/journal_ledger.py,sha256=Zyz1_ZfdbAvHbLOU0FsJFqN8pwrp_NhfOPV4haq0xIw,15485
47
47
  odoo/addons/account_financial_report/report/journal_ledger_xlsx.py,sha256=gqulSBNfZY5chQFbBxXLUa1I11AlY_NbaIz3lHDeF70,10060
@@ -56,12 +56,12 @@ odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=
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=tsjsyHLua_yZ4Y4UZuoB4goiJ_oBx1xy0UZtJ7S2DbI,1357
58
58
  odoo/addons/account_financial_report/report/templates/open_items.xml,sha256=ku84beB5mDed_np9YhZuNygaUsdl1E-_AnlUQpq4Yy4,14834
59
- odoo/addons/account_financial_report/report/templates/trial_balance.xml,sha256=K9_SbaHzMijXKVDm9xxDQQ7ioNvOHpKgN7Tvl7F9EMo,53285
59
+ odoo/addons/account_financial_report/report/templates/trial_balance.xml,sha256=fOtCCMMvAq7vQpEV0_51O6-YRQHjV9sWbB3NbkYJtYw,53287
60
60
  odoo/addons/account_financial_report/report/templates/vat_report.xml,sha256=2WeL6Njr8LFBtERKmfyi3IH-J1frSO4Gpew-ruzuWNk,8128
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=-NKu0DU0AVt_4g3NQTr9konaSlMmgWLX9PmLmKYmmW0,20176
64
+ odoo/addons/account_financial_report/static/description/index.html,sha256=qksh3q3mqIrlh-IRY9bADRSImckBYWlelKwTZrlmang,20176
65
65
  odoo/addons/account_financial_report/static/src/js/report.esm.js,sha256=bJcyov25ktGuF-eT_SUGkRLudz-6UNnKR0gmv3e-ZYc,2495
66
66
  odoo/addons/account_financial_report/static/src/js/report_action.esm.js,sha256=QFNFkxgsWrOwjgW0WlZj6CDLXPaAGf0p3Ml5NQFgbm0,1160
67
67
  odoo/addons/account_financial_report/static/src/scss/report.scss,sha256=UYlrKHXNvw3lcwlaTVNCxSQyMDi0JrizZjn4fS5cirw,2354
@@ -98,7 +98,7 @@ odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256=ibU3V
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.0.3.dist-info/METADATA,sha256=ECKCCcYVlS0b4lPYnGpCJ0eVtQAgEvDyqMnx_FAPY2s,7686
102
- odoo_addon_account_financial_report-18.0.1.0.3.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
103
- odoo_addon_account_financial_report-18.0.1.0.3.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
104
- odoo_addon_account_financial_report-18.0.1.0.3.dist-info/RECORD,,
101
+ odoo_addon_account_financial_report-18.0.1.0.5.dist-info/METADATA,sha256=1_0F0zK-UCuS-j_pMc0A5TozyOUAGZR-OxY3Y__FbYI,7686
102
+ odoo_addon_account_financial_report-18.0.1.0.5.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
103
+ odoo_addon_account_financial_report-18.0.1.0.5.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
104
+ odoo_addon_account_financial_report-18.0.1.0.5.dist-info/RECORD,,