odoo-addon-account-financial-report 16.0.1.14.2.4__py3-none-any.whl → 16.0.1.15.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.
- odoo/addons/account_financial_report/README.rst +6 -2
- odoo/addons/account_financial_report/__manifest__.py +1 -1
- odoo/addons/account_financial_report/report/general_ledger.py +2 -3
- odoo/addons/account_financial_report/static/description/index.html +22 -16
- {odoo_addon_account_financial_report-16.0.1.14.2.4.dist-info → odoo_addon_account_financial_report-16.0.1.15.1.dist-info}/METADATA +7 -3
- {odoo_addon_account_financial_report-16.0.1.14.2.4.dist-info → odoo_addon_account_financial_report-16.0.1.15.1.dist-info}/RECORD +8 -8
- {odoo_addon_account_financial_report-16.0.1.14.2.4.dist-info → odoo_addon_account_financial_report-16.0.1.15.1.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-16.0.1.14.2.4.dist-info → odoo_addon_account_financial_report-16.0.1.15.1.dist-info}/top_level.txt +0 -0
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
2
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
3
|
+
:alt: Odoo Community Association
|
|
4
|
+
|
|
1
5
|
=========================
|
|
2
6
|
Account Financial Reports
|
|
3
7
|
=========================
|
|
@@ -7,13 +11,13 @@ Account Financial Reports
|
|
|
7
11
|
!! This file is generated by oca-gen-addon-readme !!
|
|
8
12
|
!! changes will be overwritten. !!
|
|
9
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
-
!! source digest: sha256:
|
|
14
|
+
!! source digest: sha256:a5786b9a0716b8187cb20142460dac1f80102dd2e215370fed859d79c0d39627
|
|
11
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
16
|
|
|
13
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
14
18
|
:target: https://odoo-community.org/page/development-status
|
|
15
19
|
:alt: Beta
|
|
16
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
20
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
17
21
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
18
22
|
:alt: License: AGPL-3
|
|
19
23
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--financial--reporting-lightgray.png?logo=github
|
|
@@ -844,9 +844,8 @@ class GeneralLedgerReport(models.AbstractModel):
|
|
|
844
844
|
for gl_item in general_ledger:
|
|
845
845
|
if not foreign_currency:
|
|
846
846
|
continue
|
|
847
|
-
if (
|
|
848
|
-
|
|
849
|
-
or gl_item["currency_id"] != company.currency_id
|
|
847
|
+
if not gl_item["currency_id"] or (
|
|
848
|
+
gl_item["currency_id"] != company.currency_id.id
|
|
850
849
|
):
|
|
851
850
|
gl_item["fin_bal"]["bal_curr"] -= gl_item["init_bal"]["bal_curr"]
|
|
852
851
|
gl_item["init_bal"]["bal_curr"] = 0
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
5
5
|
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
|
6
|
-
<title>
|
|
6
|
+
<title>README.rst</title>
|
|
7
7
|
<style type="text/css">
|
|
8
8
|
|
|
9
9
|
/*
|
|
@@ -360,16 +360,21 @@ ul.auto-toc {
|
|
|
360
360
|
</style>
|
|
361
361
|
</head>
|
|
362
362
|
<body>
|
|
363
|
-
<div class="document"
|
|
364
|
-
<h1 class="title">Account Financial Reports</h1>
|
|
363
|
+
<div class="document">
|
|
365
364
|
|
|
365
|
+
|
|
366
|
+
<a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
|
|
367
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
|
|
368
|
+
</a>
|
|
369
|
+
<div class="section" id="account-financial-reports">
|
|
370
|
+
<h1>Account Financial Reports</h1>
|
|
366
371
|
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
367
372
|
!! This file is generated by oca-gen-addon-readme !!
|
|
368
373
|
!! changes will be overwritten. !!
|
|
369
374
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
370
|
-
!! source digest: sha256:
|
|
375
|
+
!! source digest: sha256:a5786b9a0716b8187cb20142460dac1f80102dd2e215370fed859d79c0d39627
|
|
371
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
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/
|
|
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/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&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
373
378
|
<p>This module adds a set of financial reports. They are accessible under
|
|
374
379
|
Invoicing / Reporting / OCA accounting reports.</p>
|
|
375
380
|
<ul class="simple">
|
|
@@ -409,7 +414,7 @@ For further information, check CONFIGURE.rst</p>
|
|
|
409
414
|
</ul>
|
|
410
415
|
</div>
|
|
411
416
|
<div class="section" id="configuration">
|
|
412
|
-
<
|
|
417
|
+
<h2><a class="toc-backref" href="#toc-entry-1">Configuration</a></h2>
|
|
413
418
|
<p>To configure dynamic intervals for Aged Partner Balance you need to:</p>
|
|
414
419
|
<p>Go on ‘Settings’ -> ‘Invoicing’ -> ‘OCA Aged Report Configuration’.</p>
|
|
415
420
|
<p>Click on option ‘Configurations’ and create new record.</p>
|
|
@@ -428,7 +433,7 @@ you can set default interval configuration per company in:</p>
|
|
|
428
433
|
<p>‘Settings’ -> ‘Invoicing’ -> ‘OCA Aged Report Configuration’.</p>
|
|
429
434
|
</div>
|
|
430
435
|
<div class="section" id="known-issues-roadmap">
|
|
431
|
-
<
|
|
436
|
+
<h2><a class="toc-backref" href="#toc-entry-2">Known issues / Roadmap</a></h2>
|
|
432
437
|
<ul class="simple">
|
|
433
438
|
<li>‘VAT Report’ is valid only for cases where it’s met that for each
|
|
434
439
|
Tax defined: all the “Account tags” of all the
|
|
@@ -440,15 +445,15 @@ in “Target Moves” field in a wizard</li>
|
|
|
440
445
|
</ul>
|
|
441
446
|
</div>
|
|
442
447
|
<div class="section" id="changelog">
|
|
443
|
-
<
|
|
448
|
+
<h2><a class="toc-backref" href="#toc-entry-3">Changelog</a></h2>
|
|
444
449
|
<div class="section" id="section-1">
|
|
445
|
-
<
|
|
450
|
+
<h3><a class="toc-backref" href="#toc-entry-4">11.0.2.5.0 (2019-04-26)</a></h3>
|
|
446
451
|
<ul class="simple">
|
|
447
452
|
<li>In the Trial Balance you have an option to hide parent hierarchy levels</li>
|
|
448
453
|
</ul>
|
|
449
454
|
</div>
|
|
450
455
|
<div class="section" id="section-2">
|
|
451
|
-
<
|
|
456
|
+
<h3><a class="toc-backref" href="#toc-entry-5">11.0.2.4.1 (2019-01-08)</a></h3>
|
|
452
457
|
<ul class="simple">
|
|
453
458
|
<li>Handle better multicompany behaviour</li>
|
|
454
459
|
<li>Improve how title appears in the reports</li>
|
|
@@ -456,7 +461,7 @@ in “Target Moves” field in a wizard</li>
|
|
|
456
461
|
</ul>
|
|
457
462
|
</div>
|
|
458
463
|
<div class="section" id="section-3">
|
|
459
|
-
<
|
|
464
|
+
<h3><a class="toc-backref" href="#toc-entry-6">11.0.2.3.1 (2018-11-29)</a></h3>
|
|
460
465
|
<ul class="simple">
|
|
461
466
|
<li>In the Trial Balance you can apply a filter by hierarchy levels</li>
|
|
462
467
|
<li>In the General Ledger you can apply a filter by Analytic Tag</li>
|
|
@@ -465,7 +470,7 @@ in “Target Moves” field in a wizard</li>
|
|
|
465
470
|
</div>
|
|
466
471
|
</div>
|
|
467
472
|
<div class="section" id="bug-tracker">
|
|
468
|
-
<
|
|
473
|
+
<h2><a class="toc-backref" href="#toc-entry-7">Bug Tracker</a></h2>
|
|
469
474
|
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/account-financial-reporting/issues">GitHub Issues</a>.
|
|
470
475
|
In case of trouble, please check there if your issue has already been reported.
|
|
471
476
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
@@ -473,9 +478,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
473
478
|
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
|
474
479
|
</div>
|
|
475
480
|
<div class="section" id="credits">
|
|
476
|
-
<
|
|
481
|
+
<h2><a class="toc-backref" href="#toc-entry-8">Credits</a></h2>
|
|
477
482
|
<div class="section" id="authors">
|
|
478
|
-
<
|
|
483
|
+
<h3><a class="toc-backref" href="#toc-entry-9">Authors</a></h3>
|
|
479
484
|
<ul class="simple">
|
|
480
485
|
<li>Camptocamp</li>
|
|
481
486
|
<li>initOS GmbH</li>
|
|
@@ -484,7 +489,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
484
489
|
</ul>
|
|
485
490
|
</div>
|
|
486
491
|
<div class="section" id="contributors">
|
|
487
|
-
<
|
|
492
|
+
<h3><a class="toc-backref" href="#toc-entry-10">Contributors</a></h3>
|
|
488
493
|
<ul class="simple">
|
|
489
494
|
<li>Jordi Ballester <<a class="reference external" href="mailto:jordi.ballester@forgeflow.com">jordi.ballester@forgeflow.com</a>></li>
|
|
490
495
|
<li>Yannick Vaucher <<a class="reference external" href="mailto:yannick.vaucher@camptocamp.com">yannick.vaucher@camptocamp.com</a>></li>
|
|
@@ -533,7 +538,7 @@ April 2016.</p>
|
|
|
533
538
|
</ul>
|
|
534
539
|
</div>
|
|
535
540
|
<div class="section" id="maintainers">
|
|
536
|
-
<
|
|
541
|
+
<h3><a class="toc-backref" href="#toc-entry-11">Maintainers</a></h3>
|
|
537
542
|
<p>This module is maintained by the OCA.</p>
|
|
538
543
|
<a class="reference external image-reference" href="https://odoo-community.org">
|
|
539
544
|
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
|
@@ -546,5 +551,6 @@ promote its widespread use.</p>
|
|
|
546
551
|
</div>
|
|
547
552
|
</div>
|
|
548
553
|
</div>
|
|
554
|
+
</div>
|
|
549
555
|
</body>
|
|
550
556
|
</html>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-account_financial_report
|
|
3
|
-
Version: 16.0.1.
|
|
3
|
+
Version: 16.0.1.15.1
|
|
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)
|
|
@@ -15,6 +15,10 @@ Requires-Dist: odoo-addon-date-range<16.1dev,>=16.0dev
|
|
|
15
15
|
Requires-Dist: odoo-addon-report-xlsx<16.1dev,>=16.0dev
|
|
16
16
|
Requires-Dist: odoo<16.1dev,>=16.0a
|
|
17
17
|
|
|
18
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
19
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
20
|
+
:alt: Odoo Community Association
|
|
21
|
+
|
|
18
22
|
=========================
|
|
19
23
|
Account Financial Reports
|
|
20
24
|
=========================
|
|
@@ -24,13 +28,13 @@ Account Financial Reports
|
|
|
24
28
|
!! This file is generated by oca-gen-addon-readme !!
|
|
25
29
|
!! changes will be overwritten. !!
|
|
26
30
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
27
|
-
!! source digest: sha256:
|
|
31
|
+
!! source digest: sha256:a5786b9a0716b8187cb20142460dac1f80102dd2e215370fed859d79c0d39627
|
|
28
32
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
29
33
|
|
|
30
34
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
31
35
|
:target: https://odoo-community.org/page/development-status
|
|
32
36
|
:alt: Beta
|
|
33
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
37
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
34
38
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
35
39
|
:alt: License: AGPL-3
|
|
36
40
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--financial--reporting-lightgray.png?logo=github
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
odoo/addons/account_financial_report/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_financial_report/README.rst,sha256=QbvthYjDCdl20Fd4Q7dhYeFkwF2LnW-3KD0hq4PYlpo,7137
|
|
2
2
|
odoo/addons/account_financial_report/__init__.py,sha256=YoL8hk5QxSifbFJL7gPzpOSk-3zB1OSHJBXyZK25G6Q,187
|
|
3
|
-
odoo/addons/account_financial_report/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/account_financial_report/__manifest__.py,sha256=ZWOA3EI2Pw1nRv5Ra_D7z7c400AIS0yhLi4DpFdPBJs,2062
|
|
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=fzgNZKKBxIk7c01RI7Je7rty7C4M9rdM3o34n7HH1Vk,85105
|
|
@@ -41,7 +41,7 @@ odoo/addons/account_financial_report/report/abstract_report.py,sha256=54-xtL4smX
|
|
|
41
41
|
odoo/addons/account_financial_report/report/abstract_report_xlsx.py,sha256=tx3R8NNXKU6AEobYs5urvaVHNqOxXCOZTY3Rf80Ec0c,29932
|
|
42
42
|
odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=gRk0ytj2szK4zFwEQqAVo9b4Ofc-YG7yJXeZdn3GLgs,19616
|
|
43
43
|
odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py,sha256=h_z-Jw_k46SBp5tWJh8iZU83-PGmKwGDZIyFRV--FNc,14334
|
|
44
|
-
odoo/addons/account_financial_report/report/general_ledger.py,sha256=
|
|
44
|
+
odoo/addons/account_financial_report/report/general_ledger.py,sha256=fyw5Pe-PL6CSHdsfSM1N5uW0EDZzaeM-9Y-5luj9_R8,38205
|
|
45
45
|
odoo/addons/account_financial_report/report/general_ledger_xlsx.py,sha256=t66UFbyoes_kIPoo5xFG7__WdpPPBR8yxQMZRkMcJuE,17349
|
|
46
46
|
odoo/addons/account_financial_report/report/journal_ledger.py,sha256=7pVowtuVNyxE4AOmCkfQrKllziVJdxS3mJ0Tfu8S_W0,15404
|
|
47
47
|
odoo/addons/account_financial_report/report/journal_ledger_xlsx.py,sha256=Pp7iDkBjSk0BqZkSPAiKI2hBHNcjKYjZoBxuL_ENz5E,10126
|
|
@@ -61,7 +61,7 @@ odoo/addons/account_financial_report/report/templates/vat_report.xml,sha256=-xlv
|
|
|
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=
|
|
64
|
+
odoo/addons/account_financial_report/static/description/index.html,sha256=IICMz5vSrIcKGp2eYAMLfQdCCRZLMN-dwk2ClSZRSxM,20247
|
|
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=ej-W_
|
|
|
98
98
|
odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml,sha256=5c2fn2T-rVoj_VYbibKphXVWh78ia-m4MoZW6P1hM8A,7904
|
|
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.
|
|
102
|
-
odoo_addon_account_financial_report-16.0.1.
|
|
103
|
-
odoo_addon_account_financial_report-16.0.1.
|
|
104
|
-
odoo_addon_account_financial_report-16.0.1.
|
|
101
|
+
odoo_addon_account_financial_report-16.0.1.15.1.dist-info/METADATA,sha256=RDfIN-lrUq4Vj1jmAIzPnpGonoKXa0pxvoIc45hoWtk,7815
|
|
102
|
+
odoo_addon_account_financial_report-16.0.1.15.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
103
|
+
odoo_addon_account_financial_report-16.0.1.15.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
104
|
+
odoo_addon_account_financial_report-16.0.1.15.1.dist-info/RECORD,,
|
|
File without changes
|