odoo-addon-account-financial-report 17.0.1.3.1__py3-none-any.whl → 17.0.1.4.0.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.

@@ -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:31f2a0927e06cdc26579335d58ded16502b7174f37b8044dce8ee3055b24e7d1
10
+ !! source digest: sha256:4dd0964e1e5bccd75c7c56d0b89bd21f35a0f176bd7b9b69aaebb7db4f3bd729
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": "17.0.1.3.1",
9
+ "version": "17.0.1.4.0",
10
10
  "category": "Reporting",
11
11
  "summary": "OCA Financial Reports",
12
12
  "author": "Camptocamp,"
@@ -1171,6 +1171,7 @@ msgstr ""
1171
1171
  #: code:addons/account_financial_report/report/open_items.py:0
1172
1172
  #: code:addons/account_financial_report/report/trial_balance.py:0
1173
1173
  #: code:addons/account_financial_report/report/trial_balance.py:0
1174
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1174
1175
  #, python-format
1175
1176
  msgid "Missing Partner"
1176
1177
  msgstr ""
@@ -13,8 +13,8 @@ msgstr ""
13
13
  "MIME-Version: 1.0\n"
14
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
15
  "Content-Transfer-Encoding: \n"
16
- "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
17
- "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
16
+ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
17
+ "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
18
18
  "X-Generator: Weblate 4.14.1\n"
19
19
 
20
20
  #. module: account_financial_report
@@ -17,8 +17,8 @@ msgstr ""
17
17
  "MIME-Version: 1.0\n"
18
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
19
  "Content-Transfer-Encoding: \n"
20
- "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
21
- "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
20
+ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
21
+ "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
22
22
 
23
23
  #. module: account_financial_report
24
24
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
@@ -1195,7 +1195,8 @@ msgstr "Partner mancante"
1195
1195
  #. module: account_financial_report
1196
1196
  #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
1197
1197
  msgid "Model to set interval lines for Age partner balance report"
1198
- msgstr "Modello per impostare righe intervalli per il resoconto partner storici"
1198
+ msgstr ""
1199
+ "Modello per impostare righe intervalli per il resoconto partner storici"
1199
1200
 
1200
1201
  #. module: account_financial_report
1201
1202
  #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
@@ -1014,8 +1014,8 @@ msgid ""
1014
1014
  "If flagged, no details will be displayed in the General Ledger report (the "
1015
1015
  "webkit one only), only centralized amounts per period."
1016
1016
  msgstr ""
1017
- "Om den är flaggad kommer inga detaljer att visas i huvudboksrapporten ("
1018
- "endast webkit), endast centraliserade belopp per period."
1017
+ "Om den är flaggad kommer inga detaljer att visas i huvudboksrapporten "
1018
+ "(endast webkit), endast centraliserade belopp per period."
1019
1019
 
1020
1020
  #. module: account_financial_report
1021
1021
  #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
@@ -1740,7 +1740,8 @@ msgstr ""
1740
1740
  #, python-format
1741
1741
  msgid ""
1742
1742
  "The Company in the Vat Report Wizard and in Date Range must be the same."
1743
- msgstr "Företaget i momsrapportsguiden och i datumintervallet måste vara samma."
1743
+ msgstr ""
1744
+ "Företaget i momsrapportsguiden och i datumintervallet måste vara samma."
1744
1745
 
1745
1746
  #. module: account_financial_report
1746
1747
  #. odoo-python
@@ -496,7 +496,7 @@ class AbstractReportXslx(models.AbstractModel):
496
496
  report_data["formats"]["format_header_amount"],
497
497
  )
498
498
  elif cell_type == "amount_currency":
499
- if my_object["currency_id"] and value:
499
+ if my_object["currency_id"]:
500
500
  format_amt = self._get_currency_amt_format_dict(
501
501
  my_object, report_data
502
502
  )
@@ -597,9 +597,8 @@ class AbstractReportXslx(models.AbstractModel):
597
597
  {"bold": True, "border": True, "bg_color": "#FFFFCC"}
598
598
  )
599
599
  report_data["field_name"] = format_amt
600
- format_amount = "#,##0." + (
601
- "0" * line_object["currency_id"].decimal_places
602
- )
600
+ currency = self.env["res.currency"].browse(line_object["currency_id"])
601
+ format_amount = "#,##0." + ("0" * currency.decimal_places)
603
602
  format_amt.set_num_format(format_amount)
604
603
  return format_amt
605
604
 
@@ -206,11 +206,18 @@ class OpenItemsReport(models.AbstractModel):
206
206
 
207
207
  @api.model
208
208
  def _order_open_items_by_date(
209
- self, open_items_move_lines_data, show_partner_details, partners_data
209
+ self,
210
+ open_items_move_lines_data,
211
+ show_partner_details,
212
+ partners_data,
213
+ accounts_data,
210
214
  ):
215
+ # We need to order by account code, partner_name and date
216
+ accounts_data_sorted = sorted(accounts_data.items(), key=lambda x: x[1]["code"])
217
+ account_ids_sorted = [account[0] for account in accounts_data_sorted]
211
218
  new_open_items = {}
212
219
  if not show_partner_details:
213
- for acc_id in open_items_move_lines_data.keys():
220
+ for acc_id in account_ids_sorted:
214
221
  new_open_items[acc_id] = {}
215
222
  move_lines = []
216
223
  for prt_id in open_items_move_lines_data[acc_id]:
@@ -219,7 +226,7 @@ class OpenItemsReport(models.AbstractModel):
219
226
  move_lines = sorted(move_lines, key=lambda k: (k["date"]))
220
227
  new_open_items[acc_id] = move_lines
221
228
  else:
222
- for acc_id in open_items_move_lines_data.keys():
229
+ for acc_id in account_ids_sorted:
223
230
  new_open_items[acc_id] = {}
224
231
  for prt_id in sorted(
225
232
  open_items_move_lines_data[acc_id],
@@ -262,7 +269,10 @@ class OpenItemsReport(models.AbstractModel):
262
269
 
263
270
  total_amount = self._calculate_amounts(open_items_move_lines_data)
264
271
  open_items_move_lines_data = self._order_open_items_by_date(
265
- open_items_move_lines_data, show_partner_details, partners_data
272
+ open_items_move_lines_data,
273
+ show_partner_details,
274
+ partners_data,
275
+ accounts_data,
266
276
  )
267
277
  return {
268
278
  "doc_ids": [wizard_id],
@@ -270,6 +270,9 @@ class TrialBalanceReport(models.AbstractModel):
270
270
  total_amount[acc_id][prt_id]["ending_currency_balance"] += round(
271
271
  tb["amount_currency"], 2
272
272
  )
273
+ total_amount[acc_id][prt_id]["partner_name"] = (
274
+ tb["partner_id"][1] if tb["partner_id"] else _("Missing Partner")
275
+ )
273
276
  return total_amount
274
277
 
275
278
  @api.model
@@ -293,6 +296,7 @@ class TrialBalanceReport(models.AbstractModel):
293
296
  total_amount[acc_id][prt_id]["debit"] = tb["debit"]
294
297
  total_amount[acc_id][prt_id]["balance"] = tb["balance"]
295
298
  total_amount[acc_id][prt_id]["initial_balance"] = 0.0
299
+ total_amount[acc_id][prt_id]["partner_name"] = partners_data[prt_id]["name"]
296
300
  partners_ids.add(prt_id)
297
301
  for tb in tb_initial_prt:
298
302
  acc_id = tb["account_id"][0]
@@ -305,6 +309,18 @@ class TrialBalanceReport(models.AbstractModel):
305
309
  total_amount = self._compute_acc_prt_amount(
306
310
  total_amount, tb, acc_id, prt_id, foreign_currency
307
311
  )
312
+ # sort on partner_name
313
+ for acc_id, total_data in total_amount.items():
314
+ tmp_list = sorted(
315
+ total_data.items(),
316
+ key=lambda x: isinstance(x[0], int)
317
+ and isinstance(x[1], dict)
318
+ and x[1]["partner_name"]
319
+ or x[0],
320
+ )
321
+ total_amount[acc_id] = {}
322
+ for key, value in tmp_list:
323
+ total_amount[acc_id][key] = value
308
324
  return total_amount, partners_data
309
325
 
310
326
  def _remove_accounts_at_cero(self, total_amount, show_partner_details, company):
@@ -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:31f2a0927e06cdc26579335d58ded16502b7174f37b8044dce8ee3055b24e7d1
370
+ !! source digest: sha256:4dd0964e1e5bccd75c7c56d0b89bd21f35a0f176bd7b9b69aaebb7db4f3bd729
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/17.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-17-0/account-financial-reporting-17-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=17.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: 17.0.1.3.1
3
+ Version: 17.0.1.4.0.1
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: odoo-addon-date_range>=17.0dev,<17.1dev
6
6
  Requires-Dist: odoo-addon-report_xlsx>=17.0dev,<17.1dev
@@ -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:31f2a0927e06cdc26579335d58ded16502b7174f37b8044dce8ee3055b24e7d1
27
+ !! source digest: sha256:4dd0964e1e5bccd75c7c56d0b89bd21f35a0f176bd7b9b69aaebb7db4f3bd729
28
28
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29
29
 
30
30
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -1,9 +1,9 @@
1
- odoo/addons/account_financial_report/README.rst,sha256=X-xD_ymGL7yamryDd2xjj9nL-zXAN2uys8JZlqJt6_4,6949
1
+ odoo/addons/account_financial_report/README.rst,sha256=NNIl5ewRdrUGNSt-D8RvCL-_4-cbFS7JOtOK0YizHak,6949
2
2
  odoo/addons/account_financial_report/__init__.py,sha256=YoL8hk5QxSifbFJL7gPzpOSk-3zB1OSHJBXyZK25G6Q,187
3
- odoo/addons/account_financial_report/__manifest__.py,sha256=H6NknGlBXT1HmgC5HrPIfTkq-LlEMn_8ObrgxUoHui8,2061
3
+ odoo/addons/account_financial_report/__manifest__.py,sha256=FcQQYjzvPOOSX_Zef37bBxVrabTWwDf4Vxau3ZpZxy0,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
- odoo/addons/account_financial_report/i18n/account_financial_report.pot,sha256=3u0yX4w7rqGFyV0MgNO0c3GW8PwiSoezcKTTS4OUT_g,81933
6
+ odoo/addons/account_financial_report/i18n/account_financial_report.pot,sha256=rEuc-R3lkOS3hEbLoR8Ja2BgKYQIPgCxkGsh9kbniPM,81999
7
7
  odoo/addons/account_financial_report/i18n/ar.po,sha256=kB3FxLaMBJfgiZh58x3M7jtbc_H8QoOQDBsymZ7ZuQ8,90247
8
8
  odoo/addons/account_financial_report/i18n/ca.po,sha256=0XI9oBHiwBwj0JThhCnZ0QVX6jBQkU_EZE54X0LXj2E,87050
9
9
  odoo/addons/account_financial_report/i18n/de.po,sha256=ioa7EX0xQijfCSWfyIWWb6Rm2APLqc17ASRsamnPz60,92934
@@ -13,16 +13,16 @@ odoo/addons/account_financial_report/i18n/es_MX.po,sha256=z86HCGn8bF0o2Boq6_6Gob
13
13
  odoo/addons/account_financial_report/i18n/fr.po,sha256=fp3E267JzOF-FA2wD6PAC8GJan4owrPKGTtlmlFykRQ,94627
14
14
  odoo/addons/account_financial_report/i18n/fr_CH.po,sha256=x5dRJJX7wwPkSUfOBl7CjYx767m_yW7uFe4BXTvqtX8,92468
15
15
  odoo/addons/account_financial_report/i18n/fr_FR.po,sha256=1gPDSd-IUrNf5e-zfN3RE9WmATRcS83qo3ecnoi0eIo,88695
16
- odoo/addons/account_financial_report/i18n/hr.po,sha256=Nb_QmMk1AsndLtJMe7JBNelTeRDmaKcOPoP5YKnLYL8,83941
17
- odoo/addons/account_financial_report/i18n/hr_HR.po,sha256=3t0sXrt_dL4aKbj2dCWPCMZyyFFr18UH4us7ivndV-M,81463
18
- odoo/addons/account_financial_report/i18n/it.po,sha256=O_EtTvLhf4uIex-unxF7TN9IjoppaxN4rgZ7KbBjBvM,91271
16
+ odoo/addons/account_financial_report/i18n/hr.po,sha256=yv7te8W3_eG3-uW1f0iTy6YQaTR26KVW_gokhsCtDHA,83941
17
+ odoo/addons/account_financial_report/i18n/hr_HR.po,sha256=zwYPXsdlubaxAc70aZZijN_5MyoVSErwQ6stc050eGc,81463
18
+ odoo/addons/account_financial_report/i18n/it.po,sha256=q-VFPZCUy6VYb2si-lGvdEfMONfYvNofagkirUoJwu4,91274
19
19
  odoo/addons/account_financial_report/i18n/ja.po,sha256=-Mo3RQr3OXKpT2ETdgeOvhG3iSDOKNsD0aoURaExpxk,81224
20
20
  odoo/addons/account_financial_report/i18n/nl.po,sha256=yrCC-bBBYotNVxZ0Tt51qgGUn8csMLZ_fXF9ZAjuE_w,93598
21
21
  odoo/addons/account_financial_report/i18n/nl_NL.po,sha256=02utZyaqSllWXnKeN6KlXBXJFg7YU08WKLFN6D5pDXA,81129
22
22
  odoo/addons/account_financial_report/i18n/pt.po,sha256=40UfSpd7HUWKYAlQmxRxr5slM_yF_kClm5AGOqwkvGs,89476
23
23
  odoo/addons/account_financial_report/i18n/pt_BR.po,sha256=GBeuAvU1WMA0x06pLPW8gUmLLeoEEXjTTe1I1dVGRVg,96778
24
24
  odoo/addons/account_financial_report/i18n/ro.po,sha256=Jc-zqdRHn6TL1QlFZHmt-8JppqpdksNMdH6yTpB6W0U,88959
25
- odoo/addons/account_financial_report/i18n/sv.po,sha256=AiQ1Td657OKOh0o_VrpY2C2G-J9qPoayzv3yVqKUMQQ,87504
25
+ odoo/addons/account_financial_report/i18n/sv.po,sha256=PdnCkIYE9dKDNVlcfRMGtFj9KeXiOypdaJ5CQUY1HXM,87507
26
26
  odoo/addons/account_financial_report/i18n/tr.po,sha256=pcaeUsH54cKAOkO1z-h5x_6SB2thFcP0tk6Ytl2v4Uo,84466
27
27
  odoo/addons/account_financial_report/models/__init__.py,sha256=KCE4mRzM1HSu4Mjg3thvCgBOaEyw5w8VHB--Du-wXyE,195
28
28
  odoo/addons/account_financial_report/models/account.py,sha256=OCWn264dEtfxbV0rVKR1dqz38Jy3SoS_9XZ0ChK_7eA,422
@@ -38,16 +38,16 @@ odoo/addons/account_financial_report/readme/HISTORY.md,sha256=5PzKD9lPwX_nKEaZRw
38
38
  odoo/addons/account_financial_report/readme/ROADMAP.md,sha256=kZqiEvRk8A3A47ZIh-OiAtqgaPpxO6ul0P60oCEg8Qg,360
39
39
  odoo/addons/account_financial_report/report/__init__.py,sha256=A-DcPm9nBQnH58gXR3H4kQoHF0pKAjLUnPnXl1RQqng,618
40
40
  odoo/addons/account_financial_report/report/abstract_report.py,sha256=54-xtL4smXKwYIV9LkPS2OMbvVRTkZ-L7hXtgtOFixw,5959
41
- odoo/addons/account_financial_report/report/abstract_report_xlsx.py,sha256=-T02-Xlc1Mx2wvjOXHRwXIbnHLJXUTL61cFBPKIxzc0,29891
41
+ odoo/addons/account_financial_report/report/abstract_report_xlsx.py,sha256=QILq6AACBxyC8Mnyz9Jj9OAEn2NySRzQMndxCwfxG2M,29912
42
42
  odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=gyCJ4lEROzfDjsgFi7fGan2XTxLmDhKOj5ta9qXVXtk,19979
43
43
  odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py,sha256=DzOfIfKJ7a6lExmjACLN0JI0t1nEtsCY-N0HHbv_5Nw,14276
44
44
  odoo/addons/account_financial_report/report/general_ledger.py,sha256=GM_RoxP_7p4lXDVJxqx6s6g8N_8bSY49MXs7gkXAcus,34835
45
45
  odoo/addons/account_financial_report/report/general_ledger_xlsx.py,sha256=qn89GrGmpsEQoC6eBFbXImYfxQq-_OpgzXL5hF1LgqM,17268
46
46
  odoo/addons/account_financial_report/report/journal_ledger.py,sha256=5_w9CmKy_eZNgJsSL1TFTTe5b3DBBEY1qmseI1RuGPI,15424
47
47
  odoo/addons/account_financial_report/report/journal_ledger_xlsx.py,sha256=kY6c-56HHauIyHAc7q5iNerz0gJQrp4ahI4OB1XeCT8,10060
48
- odoo/addons/account_financial_report/report/open_items.py,sha256=WFM3dCgM2iPpsfV80mbY4wtW0aZHvM9vmQviz97-ItQ,11915
48
+ odoo/addons/account_financial_report/report/open_items.py,sha256=kRM1kI17LI_LUj3zDFf4zxMtrqDXZAO9fbBAczr04PA,12218
49
49
  odoo/addons/account_financial_report/report/open_items_xlsx.py,sha256=ERlxxsY2ERTimVEpskyp_XdsNuRW0XcFih7pJ2VF914,8366
50
- odoo/addons/account_financial_report/report/trial_balance.py,sha256=Qjz3bMT-76fFhhfrpo74lWv7tWOfleAkBIEV2eQta_k,31411
50
+ odoo/addons/account_financial_report/report/trial_balance.py,sha256=Gg8x4JLw-CWRJx4eljA5iNcdbsj0f4zbKieQkHBWYLM,32102
51
51
  odoo/addons/account_financial_report/report/trial_balance_xlsx.py,sha256=-DcUdiCPAD9uXB1VsfN3EsPJHxgltz246zAUqV_zCxA,12028
52
52
  odoo/addons/account_financial_report/report/vat_report.py,sha256=eLWr9mk1bOQUPH4FEGDssfhqEfAeZUJV5ryCf8YYea0,10117
53
53
  odoo/addons/account_financial_report/report/vat_report_xlsx.py,sha256=ksdmiHDQZBBtk8fqkxSAS6-nFIyhT-wue4OTSV6xW9c,2307
@@ -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=41y4gmRZqRqNVIk3L93Jz_aBOCxL4l3uvhGfOXEnZ0M,19748
64
+ odoo/addons/account_financial_report/static/description/index.html,sha256=YKvaBl-qmf7Ve33XNph0k600k8nfXGK70DJgoQWhHWo,19748
65
65
  odoo/addons/account_financial_report/static/src/css/report.css,sha256=Cu4VmyY5tVXIddaojFDsg0Ute2qPCvKbLiimak_X9ik,2361
66
66
  odoo/addons/account_financial_report/static/src/css/report_html.css,sha256=I1kX1RsThtjGNLOaNJEWCvMnB9iAFW6nGkcyFYZzJoA,135
67
67
  odoo/addons/account_financial_report/static/src/js/report.esm.js,sha256=He488vLRaLv6IIuVaNSnNl8kJMIwJmMIv7GkmXyPJZs,2475
@@ -98,7 +98,7 @@ odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256=zTC-j
98
98
  odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml,sha256=HmwfFnzmQvw0wOILH2J1kY3aM8IGZKMBa7CHmMOigiQ,6577
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-17.0.1.3.1.dist-info/METADATA,sha256=KfFbg_hfbRCYBdZo0TGGiq8h5Ph3DBqpAxm2ZxLHPUE,7626
102
- odoo_addon_account_financial_report-17.0.1.3.1.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
103
- odoo_addon_account_financial_report-17.0.1.3.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
104
- odoo_addon_account_financial_report-17.0.1.3.1.dist-info/RECORD,,
101
+ odoo_addon_account_financial_report-17.0.1.4.0.1.dist-info/METADATA,sha256=30ouxnw674kKDZfiXwu3ZR2SEAH9EHID6tlmNfrfYtA,7628
102
+ odoo_addon_account_financial_report-17.0.1.4.0.1.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
103
+ odoo_addon_account_financial_report-17.0.1.4.0.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
104
+ odoo_addon_account_financial_report-17.0.1.4.0.1.dist-info/RECORD,,