odoo-addon-account-financial-report 18.0.1.2.1__py3-none-any.whl → 18.0.1.2.2__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:5e4e54a638254c86d7110df333e9a2b85e7452021746032a48b979ceaa50a90e
14
+ !! source digest: sha256:0229fa44ddb890be70f5461428c3019c3407be69496b8c93bf4fcf6476bc942e
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.1",
9
+ "version": "18.0.1.2.2",
10
10
  "category": "Reporting",
11
11
  "summary": "OCA Financial Reports",
12
12
  "author": "Camptocamp,"
@@ -1187,7 +1187,7 @@ msgid "No limit"
1187
1187
  msgstr ""
1188
1188
 
1189
1189
  #. module: account_financial_report
1190
- #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__
1190
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
1191
1191
  msgid "None"
1192
1192
  msgstr ""
1193
1193
 
@@ -7,16 +7,15 @@ msgstr ""
7
7
  "Project-Id-Version: Odoo Server 12.0+e\n"
8
8
  "Report-Msgid-Bugs-To: \n"
9
9
  "POT-Creation-Date: 2022-09-21 15:05+0000\n"
10
- "PO-Revision-Date: 2024-08-08 14:58+0000\n"
11
- "Last-Translator: carolinafernandez-tecnativa <carolina.fernandez@tecnativa."
12
- "com>\n"
10
+ "PO-Revision-Date: 2025-08-11 18:36+0000\n"
11
+ "Last-Translator: \"Pedro M. Baeza\" <pedro.baeza@tecnativa.com>\n"
13
12
  "Language-Team: \n"
14
13
  "Language: es\n"
15
14
  "MIME-Version: 1.0\n"
16
15
  "Content-Type: text/plain; charset=UTF-8\n"
17
16
  "Content-Transfer-Encoding: 8bit\n"
18
17
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
19
- "X-Generator: Weblate 5.6.2\n"
18
+ "X-Generator: Weblate 5.10.4\n"
20
19
 
21
20
  #. module: account_financial_report
22
21
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
@@ -61,6 +60,9 @@ msgid ""
61
60
  " Duplicate amounts may be shown because more than one "
62
61
  "analytical account may be defined in the journal items."
63
62
  msgstr ""
63
+ "<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
64
+ " Puede que se muestren importes duplicados porque estén "
65
+ "definidas más de una cuenta en los apuntes contables."
64
66
 
65
67
  #. module: account_financial_report
66
68
  #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
@@ -1543,7 +1545,7 @@ msgstr "Cuenta inicial en un rango"
1543
1545
  #: code:addons/account_financial_report/report/trial_balance.py:0
1544
1546
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1545
1547
  msgid "TOTAL"
1546
- msgstr ""
1548
+ msgstr "TOTAL"
1547
1549
 
1548
1550
  #. module: account_financial_report
1549
1551
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
@@ -1688,6 +1690,8 @@ msgid ""
1688
1690
  "There is a problem in the structure of the account groups. You may need to "
1689
1691
  "create some child group of %s."
1690
1692
  msgstr ""
1693
+ "Hay un problema en la estructura de los grupos de cuentas. Puede que "
1694
+ "necesite crear algunos grupos hijos de %s."
1691
1695
 
1692
1696
  #. module: account_financial_report
1693
1697
  #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
@@ -1854,7 +1858,7 @@ msgstr "Cuenta con Nombre"
1854
1858
  #. odoo-python
1855
1859
  #: code:addons/account_financial_report/report/trial_balance.py:0
1856
1860
  msgid "Without analytic account"
1857
- msgstr ""
1861
+ msgstr "Sin cuenta analítica"
1858
1862
 
1859
1863
  #. module: account_financial_report
1860
1864
  #. odoo-python
@@ -191,8 +191,7 @@ class GeneralLedgerReport(models.AbstractModel):
191
191
  acc_id = gl["account_id"][0]
192
192
  data[acc_id] = self._prepare_gen_ld_data_item(gl)
193
193
  data[acc_id]["id"] = acc_id
194
- if grouped_by:
195
- data[acc_id][grouped_by] = False
194
+ data[acc_id][grouped_by] = False
196
195
  method = f"_prepare_gen_ld_data_group_{grouped_by}"
197
196
  if not hasattr(self, method):
198
197
  return data
@@ -503,15 +502,13 @@ class GeneralLedgerReport(models.AbstractModel):
503
502
  gen_ld_data[acc_id] = self._initialize_data(foreign_currency)
504
503
  gen_ld_data[acc_id]["id"] = acc_id
505
504
  gen_ld_data[acc_id]["mame"] = move_line["account_id"][1]
506
- if grouped_by:
507
- gen_ld_data[acc_id][grouped_by] = False
505
+ gen_ld_data[acc_id][grouped_by] = False
508
506
  if acc_id in acc_prt_account_ids:
509
507
  item_ids = self._prepare_ml_items(move_line, grouped_by)
510
508
  for item in item_ids:
511
509
  item_id = item["id"]
512
510
  if item_id not in gen_ld_data[acc_id]:
513
- if grouped_by:
514
- gen_ld_data[acc_id][grouped_by] = True
511
+ gen_ld_data[acc_id][grouped_by] = True
515
512
  gen_ld_data[acc_id][item_id] = self._initialize_data(
516
513
  foreign_currency
517
514
  )
@@ -662,7 +659,7 @@ class GeneralLedgerReport(models.AbstractModel):
662
659
  "grouped_by": grouped_by,
663
660
  }
664
661
  )
665
- if grouped_by and not gen_led_data[acc_id][grouped_by]:
662
+ if not gen_led_data[acc_id][grouped_by]:
666
663
  account = self._create_account(
667
664
  account, acc_id, gen_led_data, rec_after_date_to_ids
668
665
  )
@@ -676,37 +673,23 @@ class GeneralLedgerReport(models.AbstractModel):
676
673
  ):
677
674
  continue
678
675
  else:
679
- if grouped_by:
680
- account, list_grouped = self._get_list_grouped_item(
681
- gen_led_data[acc_id],
682
- account,
683
- rec_after_date_to_ids,
684
- hide_account_at_0,
685
- rounding,
686
- )
687
- account.update({"list_grouped": list_grouped})
688
- if (
689
- hide_account_at_0
690
- and float_is_zero(
691
- gen_led_data[acc_id]["init_bal"]["balance"],
692
- precision_rounding=rounding,
693
- )
694
- and account["list_grouped"] == []
695
- ):
696
- continue
697
- else:
698
- account = self._create_account_not_show_item(
699
- account, acc_id, gen_led_data, rec_after_date_to_ids, grouped_by
676
+ account, list_grouped = self._get_list_grouped_item(
677
+ gen_led_data[acc_id],
678
+ account,
679
+ rec_after_date_to_ids,
680
+ hide_account_at_0,
681
+ rounding,
682
+ )
683
+ account.update({"list_grouped": list_grouped})
684
+ if (
685
+ hide_account_at_0
686
+ and float_is_zero(
687
+ gen_led_data[acc_id]["init_bal"]["balance"],
688
+ precision_rounding=rounding,
700
689
  )
701
- if (
702
- hide_account_at_0
703
- and float_is_zero(
704
- gen_led_data[acc_id]["init_bal"]["balance"],
705
- precision_rounding=rounding,
706
- )
707
- and account["move_lines"] == []
708
- ):
709
- continue
690
+ and account["list_grouped"] == []
691
+ ):
692
+ continue
710
693
  general_ledger += [account]
711
694
  return general_ledger
712
695
 
@@ -755,7 +738,7 @@ class GeneralLedgerReport(models.AbstractModel):
755
738
  centralized_ml = {}
756
739
  if isinstance(date_to, str):
757
740
  date_to = datetime.datetime.strptime(date_to, "%Y-%m-%d").date()
758
- if grouped_by and account[grouped_by]:
741
+ if account[grouped_by]:
759
742
  for item in account["list_grouped"]:
760
743
  for move_line in item["move_lines"]:
761
744
  centralized_ml = self._calculate_centralization(
@@ -846,7 +829,7 @@ class GeneralLedgerReport(models.AbstractModel):
846
829
  gen_ld_data[account["id"]]["init_bal"]["balance"],
847
830
  rec_after_date_to_ids,
848
831
  )
849
- if grouped_by and account[grouped_by]:
832
+ if account[grouped_by]:
850
833
  account[grouped_by] = False
851
834
  del account["list_grouped"]
852
835
  general_ledger = sorted(general_ledger, key=lambda k: k["code"])
@@ -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:5e4e54a638254c86d7110df333e9a2b85e7452021746032a48b979ceaa50a90e
375
+ !! source digest: sha256:0229fa44ddb890be70f5461428c3019c3407be69496b8c93bf4fcf6476bc942e
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
@@ -76,8 +76,9 @@ class GeneralLedgerReportWizard(models.TransientModel):
76
76
  help="Ending account in a range",
77
77
  )
78
78
  grouped_by = fields.Selection(
79
- selection=[("", "None"), ("partners", "Partners"), ("taxes", "Taxes")],
79
+ selection=[("none", "None"), ("partners", "Partners"), ("taxes", "Taxes")],
80
80
  default="partners",
81
+ required=True,
81
82
  )
82
83
  show_cost_center = fields.Boolean(
83
84
  string="Show Analytic Account",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-account_financial_report
3
- Version: 18.0.1.2.1
3
+ Version: 18.0.1.2.2
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:5e4e54a638254c86d7110df333e9a2b85e7452021746032a48b979ceaa50a90e
32
+ !! source digest: sha256:0229fa44ddb890be70f5461428c3019c3407be69496b8c93bf4fcf6476bc942e
33
33
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
34
34
 
35
35
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -1,13 +1,13 @@
1
- odoo/addons/account_financial_report/README.rst,sha256=tGptQJ9A_0hCYz3A8_AMbnyZQXqkLX_NHop-AFAFhlw,7202
1
+ odoo/addons/account_financial_report/README.rst,sha256=MFnAaq44Qidvl_OjR0R02vG0Vmts5wjAJvP3AKSgZPs,7202
2
2
  odoo/addons/account_financial_report/__init__.py,sha256=YoL8hk5QxSifbFJL7gPzpOSk-3zB1OSHJBXyZK25G6Q,187
3
- odoo/addons/account_financial_report/__manifest__.py,sha256=etZPsTkQeTHLzoqJ2yRqICqQhRDRdPBunHICGDPeyo8,2119
3
+ odoo/addons/account_financial_report/__manifest__.py,sha256=VHOUj7FNUM6rkdQvaKQRjTHBuHaGy0hLpkfFOBTlXvk,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
- odoo/addons/account_financial_report/i18n/account_financial_report.pot,sha256=un4L5D5x2DSppFigS60CTcOHOcEZB_OQ6TtP7Y8vNe4,79876
6
+ odoo/addons/account_financial_report/i18n/account_financial_report.pot,sha256=Kj9fu5spPXthOCeQYlRHBdY8Ls6Qm3bWipqBNbuGpSw,79880
7
7
  odoo/addons/account_financial_report/i18n/ar.po,sha256=jo5rYTSMhX8tAn4uTRTXIuLSdzM6tJH5zuoR3SKCj4M,89807
8
8
  odoo/addons/account_financial_report/i18n/ca.po,sha256=SdzXRG3FzgtK-DUtVFlBs7RLFPXvfyilJF04sqjpXSI,86606
9
9
  odoo/addons/account_financial_report/i18n/de.po,sha256=8Q2HnmLeDwq5kDi-CVj7bzbl_-Rn2twG1I1jrwij-ts,92494
10
- odoo/addons/account_financial_report/i18n/es.po,sha256=GlEF_cG3GP6bt0fMKRLu-GZOFkG5DNWZ4cw8-UNceSo,89085
10
+ odoo/addons/account_financial_report/i18n/es.po,sha256=le609spFDqzc8jfq51LzFN1XR2zD_yvUrJD34eW6wPM,89397
11
11
  odoo/addons/account_financial_report/i18n/es_AR.po,sha256=3jmBAa9yLBfUD7DWI9R5tr3DcmGtCvcp0a-IQ9Mj3jY,89454
12
12
  odoo/addons/account_financial_report/i18n/es_MX.po,sha256=INf3G8VghA-hKDn8CPTBeluzn0UkfNe7rsWXaLjltnU,80165
13
13
  odoo/addons/account_financial_report/i18n/fr.po,sha256=Nvd7uQd71K20aOliQvr-BtwrTgA6ksre-mOOfZAx3Go,94144
@@ -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=ZTxkK9IJa5Dhn8NJOUZTjI-6r1K6lAa9f13d1fr88WM,38517
44
+ odoo/addons/account_financial_report/report/general_ledger.py,sha256=dsYvK5Gmeyyu__z47nBrxjXkc3M1KN7-IMu_P43ji60,37687
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=HvE8TlzMHAXGcNvqN2C8sEYx9CBKLk3a1vsu9X_3xX4,15465
47
47
  odoo/addons/account_financial_report/report/journal_ledger_xlsx.py,sha256=gqulSBNfZY5chQFbBxXLUa1I11AlY_NbaIz3lHDeF70,10060
@@ -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=8-8FVFaHFD6hsySpPGHdVP1CCV1gxcDz9lKAhD-P5N0,20388
64
+ odoo/addons/account_financial_report/static/description/index.html,sha256=CFrXUxRFbxbaxkL9HIs-pW3vR38oAuF551qOVCjbNKo,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,7 +88,7 @@ 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=-2lfykIafr9MwAV6_xG9uFrMNjgZRCmYg87d_EDbNfM,12400
91
+ odoo/addons/account_financial_report/wizard/general_ledger_wizard.py,sha256=izC4HXfpK-QAdDaYOgb2phaoXKLjvfesIKZ3bgZ_xsU,12427
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
@@ -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.1.dist-info/METADATA,sha256=84R3rITaGrBBo5KLmsZCkHCwU7lYta2bL2-DAXZ1qRQ,7888
102
- odoo_addon_account_financial_report-18.0.1.2.1.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
103
- odoo_addon_account_financial_report-18.0.1.2.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
104
- odoo_addon_account_financial_report-18.0.1.2.1.dist-info/RECORD,,
101
+ odoo_addon_account_financial_report-18.0.1.2.2.dist-info/METADATA,sha256=ioYF3I9mMkG69V0N1cFRuEkktV5Kw89yjX4opyIk1LM,7888
102
+ odoo_addon_account_financial_report-18.0.1.2.2.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
103
+ odoo_addon_account_financial_report-18.0.1.2.2.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
104
+ odoo_addon_account_financial_report-18.0.1.2.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: Whool 1.2
2
+ Generator: Whool 1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5