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

@@ -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:4e2290a4fa6f850961fc5d90934664a2809a0257d2911e02d1d63c2c41b10793
10
+ !! source digest: sha256:1265efe25f74efb74cc3ed61f3b3cb01d2e93aa3c3c7970572d3bc325d5b2316
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -182,6 +182,10 @@ Contributors
182
182
  Much of the work in this module was done at a sprint in Sorrento, Italy in
183
183
  April 2016.
184
184
 
185
+ * Ooops404 <https://www.ooops404.com>
186
+
187
+ * Eduard Brahas <eduardbrhas@outlook.it>
188
+
185
189
  Maintainers
186
190
  ~~~~~~~~~~~
187
191
 
@@ -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": "16.0.1.8.0",
9
+ "version": "16.0.1.9.0",
10
10
  "category": "Reporting",
11
11
  "summary": "OCA Financial Reports",
12
12
  "author": "Camptocamp,"
@@ -7,7 +7,7 @@ msgstr ""
7
7
  "Project-Id-Version: Odoo Server 12.0\n"
8
8
  "Report-Msgid-Bugs-To: \n"
9
9
  "POT-Creation-Date: 2019-06-03 12:07+0000\n"
10
- "PO-Revision-Date: 2024-07-08 09:58+0000\n"
10
+ "PO-Revision-Date: 2024-07-18 09:58+0000\n"
11
11
  "Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
12
12
  "Language-Team: \n"
13
13
  "Language: it\n"
@@ -1211,7 +1211,7 @@ msgstr "Partner mancante"
1211
1211
  #: code:addons/account_financial_report/report/open_items.py:0
1212
1212
  #, python-format
1213
1213
  msgid "Missing Salesperson"
1214
- msgstr ""
1214
+ msgstr "Addetto vendite non trovato"
1215
1215
 
1216
1216
  #. module: account_financial_report
1217
1217
  #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
@@ -1426,7 +1426,7 @@ msgstr "Partner - Saldo iniziale"
1426
1426
  #. module: account_financial_report
1427
1427
  #: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__salesperson
1428
1428
  msgid "Partner Salesperson"
1429
- msgstr ""
1429
+ msgstr "Addetto vendite partner"
1430
1430
 
1431
1431
  #. module: account_financial_report
1432
1432
  #. odoo-python
@@ -37,3 +37,7 @@
37
37
 
38
38
  Much of the work in this module was done at a sprint in Sorrento, Italy in
39
39
  April 2016.
40
+
41
+ * Ooops404 <https://www.ooops404.com>
42
+
43
+ * Eduard Brahas <eduardbrhas@outlook.it>
@@ -153,10 +153,10 @@
153
153
  </div>
154
154
  <div class="act_as_row">
155
155
  <div class="act_as_cell">
156
- <span t-esc="date_from" />
156
+ <span t-esc="date_from" t-options="{'widget': 'date'}" />
157
157
  </div>
158
158
  <div class="act_as_cell">
159
- <span t-esc="date_to" />
159
+ <span t-esc="date_to" t-options="{'widget': 'date'}" />
160
160
  </div>
161
161
  <div class="act_as_cell">
162
162
  <span t-esc="based_on" />
@@ -4,7 +4,7 @@
4
4
 
5
5
  import operator
6
6
 
7
- from odoo import api, models
7
+ from odoo import api, fields, models
8
8
 
9
9
 
10
10
  class VATReport(models.AbstractModel):
@@ -200,8 +200,8 @@ class VATReport(models.AbstractModel):
200
200
  wizard_id = data["wizard_id"]
201
201
  company = self.env["res.company"].browse(data["company_id"])
202
202
  company_id = data["company_id"]
203
- date_from = data["date_from"]
204
- date_to = data["date_to"]
203
+ date_from = fields.Date.from_string(data["date_from"])
204
+ date_to = fields.Date.from_string(data["date_to"])
205
205
  based_on = data["based_on"]
206
206
  tax_detail = data["tax_detail"]
207
207
  only_posted_moves = data["only_posted_moves"]
@@ -222,9 +222,13 @@ class VATReport(models.AbstractModel):
222
222
  "docs": self.env["open.items.report.wizard"].browse(wizard_id),
223
223
  "company_name": company.display_name,
224
224
  "currency_name": company.currency_id.name,
225
- "date_to": data["date_to"],
226
- "date_from": data["date_from"],
227
- "based_on": data["based_on"],
225
+ "date_from": date_from,
226
+ "date_to": date_to,
227
+ "based_on": dict(
228
+ self.env["vat.report.wizard"]
229
+ ._fields["based_on"]
230
+ ._description_selection(self.env)
231
+ ).get(data["based_on"]),
228
232
  "tax_detail": data["tax_detail"],
229
233
  "vat_report": vat_report,
230
234
  }
@@ -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:4e2290a4fa6f850961fc5d90934664a2809a0257d2911e02d1d63c2c41b10793
370
+ !! source digest: sha256:1265efe25f74efb74cc3ed61f3b3cb01d2e93aa3c3c7970572d3bc325d5b2316
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/16.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-16-0/account-financial-reporting-16-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=16.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
@@ -525,6 +525,12 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
525
525
  </ul>
526
526
  <p>Much of the work in this module was done at a sprint in Sorrento, Italy in
527
527
  April 2016.</p>
528
+ <ul class="simple">
529
+ <li>Ooops404 &lt;<a class="reference external" href="https://www.ooops404.com">https://www.ooops404.com</a>&gt;<ul>
530
+ <li>Eduard Brahas &lt;<a class="reference external" href="mailto:eduardbrhas&#64;outlook.it">eduardbrhas&#64;outlook.it</a>&gt;</li>
531
+ </ul>
532
+ </li>
533
+ </ul>
528
534
  </div>
529
535
  <div class="section" id="maintainers">
530
536
  <h2><a class="toc-backref" href="#toc-entry-11">Maintainers</a></h2>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-account_financial_report
3
- Version: 16.0.1.8.0.2
3
+ Version: 16.0.1.9.0
4
4
  Summary: OCA Financial Reports
5
5
  Home-page: https://github.com/OCA/account-financial-reporting
6
6
  Author: Camptocamp,initOS GmbH,redCOR AG,ForgeFlow,Odoo Community Association (OCA)
@@ -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:4e2290a4fa6f850961fc5d90934664a2809a0257d2911e02d1d63c2c41b10793
27
+ !! source digest: sha256:1265efe25f74efb74cc3ed61f3b3cb01d2e93aa3c3c7970572d3bc325d5b2316
28
28
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29
29
 
30
30
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -199,6 +199,10 @@ Contributors
199
199
  Much of the work in this module was done at a sprint in Sorrento, Italy in
200
200
  April 2016.
201
201
 
202
+ * Ooops404 <https://www.ooops404.com>
203
+
204
+ * Eduard Brahas <eduardbrhas@outlook.it>
205
+
202
206
  Maintainers
203
207
  ~~~~~~~~~~~
204
208
 
@@ -1,6 +1,6 @@
1
- odoo/addons/account_financial_report/README.rst,sha256=VZhaw2wKUUnufZ7CiDlzT9HMxvMyhmkyfFaTkc4ksXU,6889
1
+ odoo/addons/account_financial_report/README.rst,sha256=y9-MdljJfv0GDFXWU_8WA_mxhrYEVAEM9JAmShZ_SAU,6972
2
2
  odoo/addons/account_financial_report/__init__.py,sha256=YoL8hk5QxSifbFJL7gPzpOSk-3zB1OSHJBXyZK25G6Q,187
3
- odoo/addons/account_financial_report/__manifest__.py,sha256=so1F3GHzSvjwUEeqz8QzxTGD337VGAc5JJtDIhoAQ_o,2061
3
+ odoo/addons/account_financial_report/__manifest__.py,sha256=SQhqGSsBSeMBMEFP3ZY3N45vjesea8rQNg2WOnhBbLg,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=P1U1Mmx5c9VysiDBQ2HdYF9yDkHgc2iPwnGs1Jdbg-c,83705
@@ -15,7 +15,7 @@ odoo/addons/account_financial_report/i18n/fr_CH.po,sha256=gWtyQskygh3hr7kE3BChZx
15
15
  odoo/addons/account_financial_report/i18n/fr_FR.po,sha256=nhky0vkemHE3isgbAPFk0LFwEkAW-CCxlWHOkLwwy8I,90060
16
16
  odoo/addons/account_financial_report/i18n/hr.po,sha256=BkdHpj_vwMhvHAKFZJ5Kntk0pbfxBnUI5AQpg2d7Kjg,85472
17
17
  odoo/addons/account_financial_report/i18n/hr_HR.po,sha256=DoWiI_qLXm8f1-cOAYIs3wFA7dUtep5bb8XFY_ihJcA,83167
18
- odoo/addons/account_financial_report/i18n/it.po,sha256=bGyqyzYlyn_sZE7htx48M0nmb0S_2RUI7J3vCtdLZfg,92649
18
+ odoo/addons/account_financial_report/i18n/it.po,sha256=Jfo9LJZQRVzEFQqJwt0Ng6OKo8lfSKMsUoYl2hKjCBQ,92699
19
19
  odoo/addons/account_financial_report/i18n/ja.po,sha256=afSlUspdZr5m0hkIkf2wIs6TFb3fjYeY_p0QmfDnBqI,82928
20
20
  odoo/addons/account_financial_report/i18n/nl.po,sha256=RgcHebTW5gwjqL0upSjtalfYIGT4zwKnekIUN-MMWBY,94969
21
21
  odoo/addons/account_financial_report/i18n/nl_NL.po,sha256=cUfcdrqmTu0dpqb8WyQ539uktScQo8RTwz13FUa-Jd4,82833
@@ -32,7 +32,7 @@ odoo/addons/account_financial_report/models/account_move_line.py,sha256=LNjmv_T5
32
32
  odoo/addons/account_financial_report/models/ir_actions_report.py,sha256=wq-rx2bpI6odJ4-PQR5aellrM9740n5WN4tf1IKdlj0,1074
33
33
  odoo/addons/account_financial_report/models/res_config_settings.py,sha256=7b6qOl9jmC-eJF8vTA9wbefs6C8cn_Jp8hJBq_o6mvk,443
34
34
  odoo/addons/account_financial_report/readme/CONFIGURE.rst,sha256=gTsDroUsSEy4stKQpIO7Y3inHh8YClbJ634HY7vREUg,901
35
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst,sha256=mudh7BaCjZbrc6Tz5V7mIn56WRobuEYKUto5a3TlHXE,1264
35
+ odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst,sha256=IMtikuT2oQDKarAya_zsTDGZiKtPMD-aqY_L1Fyedkc,1347
36
36
  odoo/addons/account_financial_report/readme/DESCRIPTION.rst,sha256=84yTOFvIHu7_Zabth6laiQ5BXEeWjbwqJw5_lqBMFEo,759
37
37
  odoo/addons/account_financial_report/readme/HISTORY.rst,sha256=sgCgHPjX3fXH6T0ySBomUUFE_Z2ghfpfdtWrNfg0lCQ,535
38
38
  odoo/addons/account_financial_report/readme/ROADMAP.rst,sha256=CK1z_cr3bdtTPHyCOXliTBkAB0rqPL_srPhIkBj-6Xw,362
@@ -49,7 +49,7 @@ odoo/addons/account_financial_report/report/open_items.py,sha256=JND4C0oixuL7cc4
49
49
  odoo/addons/account_financial_report/report/open_items_xlsx.py,sha256=iv32561UaRppS5XyclMnYwLHJ2icYUA1hNeUOkcl8ng,14960
50
50
  odoo/addons/account_financial_report/report/trial_balance.py,sha256=GcvZQ9tET2CHEdFbtuTuwAE9T-c89MP-fX7IXr_B3zA,31411
51
51
  odoo/addons/account_financial_report/report/trial_balance_xlsx.py,sha256=phPDqy4pXbd94oFmwjPNe_XKoMCgcTXPE6HOkGJJDko,12060
52
- odoo/addons/account_financial_report/report/vat_report.py,sha256=H0k2uhDK_X3el1gVXA_lBUoj2dO1u104rjaWBcWLpnk,10131
52
+ odoo/addons/account_financial_report/report/vat_report.py,sha256=xrxyoyXGSXRML_NIXQF7b3kQ7Ir8WXc2gH2e9QlhDEQ,10331
53
53
  odoo/addons/account_financial_report/report/vat_report_xlsx.py,sha256=aa0dLzYdywjmO63ONRYUBTpSGmsPfEjX60CkUbULuo8,2317
54
54
  odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml,sha256=IfeLCmOIFqyaEsRnRihb0pXo-deJD41id5qgjE3_Ftw,41020
55
55
  odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=ne1YtEyTqvTV4Oxu54L1vVOheBOtcPGl-R_pVUD7Rlc,39228
@@ -57,11 +57,11 @@ odoo/addons/account_financial_report/report/templates/journal_ledger.xml,sha256=
57
57
  odoo/addons/account_financial_report/report/templates/layouts.xml,sha256=gCejPAn8GLrySSve8pGcs0fY5nr48C3mmyuoEJVZkJ4,1526
58
58
  odoo/addons/account_financial_report/report/templates/open_items.xml,sha256=03oeGZDxEysS8TVpm012DGQVlEYby_OC2Ob_WsnKX6o,21559
59
59
  odoo/addons/account_financial_report/report/templates/trial_balance.xml,sha256=Hu1UeHAmOrvVfHLFfb4qf3eK1Q6aaF_hot_ryL8oQK4,47869
60
- odoo/addons/account_financial_report/report/templates/vat_report.xml,sha256=2WeL6Njr8LFBtERKmfyi3IH-J1frSO4Gpew-ruzuWNk,8128
60
+ odoo/addons/account_financial_report/report/templates/vat_report.xml,sha256=-xlvfxA0kPLQTbQ7PgiAFIM8u9r0rTXvzHXLn9biknQ,8190
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=gpNJnzruXfeYskn26FqY9U04FiuTf8vgLCKEGY8PADM,422
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=7nnksngfhxYXGP71q_MRi4KlCAZgZXlqObWu1iABhRM,19748
64
+ odoo/addons/account_financial_report/static/description/index.html,sha256=jgtHrXvvKyrWAmgp2PnDWhG6MzII8kgTtuun0oXftiQ,20035
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=k4SVH
98
98
  odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml,sha256=7oNGPs3s8DVw3movVGe2ryRUNl1MtN7O76UH8zaFFtI,7048
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-16.0.1.8.0.2.dist-info/METADATA,sha256=D0HlqiVpN9Hn2tIUVchjPok2WdYsMhYOlEt5xuFnMBo,7571
102
- odoo_addon_account_financial_report-16.0.1.8.0.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
103
- odoo_addon_account_financial_report-16.0.1.8.0.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
104
- odoo_addon_account_financial_report-16.0.1.8.0.2.dist-info/RECORD,,
101
+ odoo_addon_account_financial_report-16.0.1.9.0.dist-info/METADATA,sha256=sYCRdh-gv4kdfscUiqxGoecAEpHhQD4kSt7Azj9oVuQ,7652
102
+ odoo_addon_account_financial_report-16.0.1.9.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
103
+ odoo_addon_account_financial_report-16.0.1.9.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
104
+ odoo_addon_account_financial_report-16.0.1.9.0.dist-info/RECORD,,