odoo-addon-account-financial-report 18.0.1.1.0__py3-none-any.whl → 18.0.1.2.0__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:1697172ea99e9a26617216e47447a4b910b4718fa5401f80e979c4d3f8775e4e
14
+ !! source digest: sha256:68ab5b6b999486dfe55e3f469815af509179227120d691c89d5e67b636d1ba89
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.1.0",
9
+ "version": "18.0.1.2.0",
10
10
  "category": "Reporting",
11
11
  "summary": "OCA Financial Reports",
12
12
  "author": "Camptocamp,"
@@ -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:1697172ea99e9a26617216e47447a4b910b4718fa5401f80e979c4d3f8775e4e
375
+ !! source digest: sha256:68ab5b6b999486dfe55e3f469815af509179227120d691c89d5e67b636d1ba89
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
@@ -103,13 +103,10 @@ class GeneralLedgerReportWizard(models.TransientModel):
103
103
  ):
104
104
  start_range = int(self.account_code_from.code)
105
105
  end_range = int(self.account_code_to.code)
106
- self.account_ids = self.env["account.account"].search(
107
- [("code", ">=", start_range), ("code", "<=", end_range)]
108
- )
106
+ domain = [("code", ">=", start_range), ("code", "<=", end_range)]
109
107
  if self.company_id:
110
- self.account_ids = self.account_ids.filtered(
111
- lambda a: a.company_id == self.company_id
112
- )
108
+ domain.append(("company_ids", "in", self.company_id.ids))
109
+ self.account_ids = self.env["account.account"].search(domain)
113
110
 
114
111
  def _init_date_from(self):
115
112
  """set start date to begin of current year if fiscal year running"""
@@ -177,7 +174,7 @@ class GeneralLedgerReportWizard(models.TransientModel):
177
174
  self.onchange_type_accounts_only()
178
175
  else:
179
176
  self.account_ids = self.account_ids.filtered(
180
- lambda a: a.company_id == self.company_id
177
+ lambda a: self.company_id in a.company_ids
181
178
  )
182
179
  if self.company_id and self.cost_center_ids:
183
180
  self.cost_center_ids = self.cost_center_ids.filtered(
@@ -195,7 +192,7 @@ class GeneralLedgerReportWizard(models.TransientModel):
195
192
  if not self.company_id:
196
193
  return res
197
194
  else:
198
- res["domain"]["account_ids"] += [("company_id", "=", self.company_id.id)]
195
+ res["domain"]["account_ids"] += [("company_ids", "in", self.company_id.ids)]
199
196
  res["domain"]["account_journal_ids"] += [
200
197
  ("company_id", "=", self.company_id.id)
201
198
  ]
@@ -79,7 +79,7 @@ class OpenItemsReportWizard(models.TransientModel):
79
79
  )
80
80
  if self.company_id:
81
81
  self.account_ids = self.account_ids.filtered(
82
- lambda a: a.company_id == self.company_id
82
+ lambda a: self.company_id in a.company_ids
83
83
  )
84
84
  return {
85
85
  "domain": {
@@ -103,13 +103,13 @@ class OpenItemsReportWizard(models.TransientModel):
103
103
  self.onchange_type_accounts_only()
104
104
  else:
105
105
  self.account_ids = self.account_ids.filtered(
106
- lambda a: a.company_id == self.company_id
106
+ lambda a: self.company_id in a.company_ids
107
107
  )
108
108
  res = {"domain": {"account_ids": [], "partner_ids": []}}
109
109
  if not self.company_id:
110
110
  return res
111
111
  else:
112
- res["domain"]["account_ids"] += [("company_id", "=", self.company_id.id)]
112
+ res["domain"]["account_ids"] += [("company_ids", "in", self.company_id.ids)]
113
113
  res["domain"]["partner_ids"] += self._get_partner_ids_domain()
114
114
  return res
115
115
 
@@ -166,7 +166,7 @@ class TrialBalanceReportWizard(models.TransientModel):
166
166
  if not self.company_id:
167
167
  return res
168
168
  else:
169
- res["domain"]["account_ids"] += [("company_id", "=", self.company_id.id)]
169
+ res["domain"]["account_ids"] += [("company_ids", "in", self.company_id.ids)]
170
170
  res["domain"]["partner_ids"] += self._get_partner_ids_domain()
171
171
  res["domain"]["date_range_id"] += [
172
172
  "|",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-account_financial_report
3
- Version: 18.0.1.1.0
3
+ Version: 18.0.1.2.0
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.*
@@ -28,7 +28,7 @@ Account Financial Reports
28
28
  !! This file is generated by oca-gen-addon-readme !!
29
29
  !! changes will be overwritten. !!
30
30
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
31
- !! source digest: sha256:1697172ea99e9a26617216e47447a4b910b4718fa5401f80e979c4d3f8775e4e
31
+ !! source digest: sha256:68ab5b6b999486dfe55e3f469815af509179227120d691c89d5e67b636d1ba89
32
32
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
33
33
 
34
34
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -1,6 +1,6 @@
1
- odoo/addons/account_financial_report/README.rst,sha256=NXBmEswwjEK0pj9dhlASqVpufT2I9GR5vdpXD-qlBCw,7202
1
+ odoo/addons/account_financial_report/README.rst,sha256=bkywoKJfCtRV-UGSZcrgXVCnDxs5FcxX5dgleXJyVqY,7202
2
2
  odoo/addons/account_financial_report/__init__.py,sha256=YoL8hk5QxSifbFJL7gPzpOSk-3zB1OSHJBXyZK25G6Q,187
3
- odoo/addons/account_financial_report/__manifest__.py,sha256=P10Jil2rNUUOBMggI5soUx6EMffzrNB3zsVWyUblFr4,2119
3
+ odoo/addons/account_financial_report/__manifest__.py,sha256=Maa6GP-ceg_Zo6wR01jhASyaQc28lHI8Tl54yhWhZo8,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=un4L5D5x2DSppFigS60CTcOHOcEZB_OQ6TtP7Y8vNe4,79876
@@ -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=C6RCUbqc7cr5klACwLgWW2KyUMEF7OLBWjLGtKQq6iA,20388
64
+ odoo/addons/account_financial_report/static/description/index.html,sha256=jL_xFFmWVo5Vv-vHIjvEKUBTK_RWIXluLkp3Umyvkb8,20388
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
@@ -88,17 +88,17 @@ odoo/addons/account_financial_report/wizard/__init__.py,sha256=5lngmjx-Vz-5k9nPI
88
88
  odoo/addons/account_financial_report/wizard/abstract_wizard.py,sha256=RLvXJzFA-75Ui-AokPwzZ9yGWfuMQvVPXhhEgQMH26E,1584
89
89
  odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py,sha256=zkqwZX-WaMm36h-T19YE_TBNkM3Wg5dP2FbeHEy9DV0,5976
90
90
  odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml,sha256=P4y5oItOq_1xovOhpjCU-9JzIvT2HH00tXWYFmMhnMo,3996
91
- odoo/addons/account_financial_report/wizard/general_ledger_wizard.py,sha256=5Htbb7lYStnq5tosSmt7NDdlWgkGEQN5joKW1oD_zbI,12466
91
+ odoo/addons/account_financial_report/wizard/general_ledger_wizard.py,sha256=-2lfykIafr9MwAV6_xG9uFrMNjgZRCmYg87d_EDbNfM,12400
92
92
  odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml,sha256=h33UeqoY0VU0UiA58R1_WVEnHinLEwkE-3TwWO90vo8,7501
93
93
  odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py,sha256=coCuXwBUtVP3j8OyiZSxXpiVn3H8T1WkFU8oSI_0qqU,5653
94
94
  odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml,sha256=_dratLc_fq4n0S6oBTQqmQE-gc-LKlmwdlH5ywoOelM,2901
95
- odoo/addons/account_financial_report/wizard/open_items_wizard.py,sha256=LJXYruYw0AGGvmQqvPG91kkVCvFjcsdDGO7cxUwcCBw,6608
95
+ odoo/addons/account_financial_report/wizard/open_items_wizard.py,sha256=29OvzfgJvIVoskZ1Nzky72yhJmS8p4r3LJtmLLNhynI,6613
96
96
  odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml,sha256=qvMifGs3k5YY8dWF3nhcSYNIdsyXf2Sg2X75CBU5vrc,4633
97
- odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256=ibU3VpvhHkxF5-dcs8S1UAkZl8AURntz6Mz95QxFem0,11299
97
+ odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256=H5DOUU4W-JLJXAgJBzC8qD9U0gxao3TM0b-gKaO_jVs,11302
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.1.0.dist-info/METADATA,sha256=FmpFm1Y5qO1wFOA4VGvFCKMc1oH-uPrBNCBEGDJ6tDU,7851
102
- odoo_addon_account_financial_report-18.0.1.1.0.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
103
- odoo_addon_account_financial_report-18.0.1.1.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
104
- odoo_addon_account_financial_report-18.0.1.1.0.dist-info/RECORD,,
101
+ odoo_addon_account_financial_report-18.0.1.2.0.dist-info/METADATA,sha256=hqM1WD7ysTc3XNi0PMV0jy6a96aONjT607OGftRtB3g,7851
102
+ odoo_addon_account_financial_report-18.0.1.2.0.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
103
+ odoo_addon_account_financial_report-18.0.1.2.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
104
+ odoo_addon_account_financial_report-18.0.1.2.0.dist-info/RECORD,,