odoo-addon-account-financial-report 16.0.1.4.1.1__py3-none-any.whl → 16.0.1.5.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.
- odoo/addons/account_financial_report/README.rst +1 -1
- odoo/addons/account_financial_report/__manifest__.py +1 -1
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +11 -0
- odoo/addons/account_financial_report/report/general_ledger.py +2 -2
- odoo/addons/account_financial_report/report/open_items.py +2 -2
- odoo/addons/account_financial_report/report/trial_balance.py +22 -22
- odoo/addons/account_financial_report/static/description/index.html +1 -1
- {odoo_addon_account_financial_report-16.0.1.4.1.1.dist-info → odoo_addon_account_financial_report-16.0.1.5.0.dist-info}/METADATA +2 -2
- {odoo_addon_account_financial_report-16.0.1.4.1.1.dist-info → odoo_addon_account_financial_report-16.0.1.5.0.dist-info}/RECORD +11 -11
- {odoo_addon_account_financial_report-16.0.1.4.1.1.dist-info → odoo_addon_account_financial_report-16.0.1.5.0.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-16.0.1.4.1.1.dist-info → odoo_addon_account_financial_report-16.0.1.5.0.dist-info}/top_level.txt +0 -0
|
@@ -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:
|
|
10
|
+
!! source digest: sha256:4d1e4f698a5d08ff700165c86fc3bcaae362e7000a27d65648996b63b39e12c9
|
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
12
|
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -1107,6 +1107,17 @@ msgstr ""
|
|
|
1107
1107
|
msgid "Limit hierarchy levels"
|
|
1108
1108
|
msgstr ""
|
|
1109
1109
|
|
|
1110
|
+
#. module: account_financial_report
|
|
1111
|
+
#. odoo-python
|
|
1112
|
+
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1113
|
+
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1114
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1115
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1116
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1117
|
+
#, python-format
|
|
1118
|
+
msgid "Missing Partner"
|
|
1119
|
+
msgstr ""
|
|
1120
|
+
|
|
1110
1121
|
#. module: account_financial_report
|
|
1111
1122
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1112
1123
|
msgid "Move Target"
|
|
@@ -205,7 +205,7 @@ class GeneralLedgerReport(models.AbstractModel):
|
|
|
205
205
|
for gl in gl_initial_acc_prt:
|
|
206
206
|
if not gl["partner_id"]:
|
|
207
207
|
prt_id = 0
|
|
208
|
-
prt_name = "Missing Partner"
|
|
208
|
+
prt_name = _("Missing Partner")
|
|
209
209
|
else:
|
|
210
210
|
prt_id = gl["partner_id"][0]
|
|
211
211
|
prt_name = gl["partner_id"][1]
|
|
@@ -415,7 +415,7 @@ class GeneralLedgerReport(models.AbstractModel):
|
|
|
415
415
|
item_name = (
|
|
416
416
|
move_line["partner_id"][1]
|
|
417
417
|
if move_line["partner_id"]
|
|
418
|
-
else "Missing Partner"
|
|
418
|
+
else _("Missing Partner")
|
|
419
419
|
)
|
|
420
420
|
res.append({"id": item_id, "name": item_name})
|
|
421
421
|
elif grouped_by == "taxes":
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import operator
|
|
6
6
|
from datetime import date, datetime
|
|
7
7
|
|
|
8
|
-
from odoo import api, models
|
|
8
|
+
from odoo import _, api, models
|
|
9
9
|
from odoo.tools import float_is_zero
|
|
10
10
|
|
|
11
11
|
|
|
@@ -124,7 +124,7 @@ class OpenItemsReport(models.AbstractModel):
|
|
|
124
124
|
prt_name = move_line["partner_id"][1]
|
|
125
125
|
else:
|
|
126
126
|
prt_id = 0
|
|
127
|
-
prt_name = "Missing Partner"
|
|
127
|
+
prt_name = _("Missing Partner")
|
|
128
128
|
if prt_id not in partners_ids:
|
|
129
129
|
partners_data.update({prt_id: {"id": prt_id, "name": prt_name}})
|
|
130
130
|
partners_ids.add(prt_id)
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
from odoo import api, models
|
|
7
|
+
from odoo import _, api, models
|
|
8
8
|
from odoo.tools.float_utils import float_is_zero
|
|
9
9
|
|
|
10
10
|
|
|
@@ -280,31 +280,31 @@ class TrialBalanceReport(models.AbstractModel):
|
|
|
280
280
|
partners_data = {}
|
|
281
281
|
for tb in tb_period_prt:
|
|
282
282
|
acc_id = tb["account_id"][0]
|
|
283
|
-
if tb["partner_id"]
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
{prt_id: {"id": prt_id, "name": tb["partner_id"][1]}}
|
|
288
|
-
)
|
|
289
|
-
total_amount[acc_id][prt_id] = self._prepare_total_amount(
|
|
290
|
-
tb, foreign_currency
|
|
283
|
+
prt_id = tb["partner_id"][0] if tb["partner_id"] else 0
|
|
284
|
+
if prt_id not in partners_ids:
|
|
285
|
+
partner_name = (
|
|
286
|
+
tb["partner_id"][1] if tb["partner_id"] else _("Missing Partner")
|
|
291
287
|
)
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
288
|
+
partners_data.update({prt_id: {"id": prt_id, "name": partner_name}})
|
|
289
|
+
total_amount[acc_id][prt_id] = self._prepare_total_amount(
|
|
290
|
+
tb, foreign_currency
|
|
291
|
+
)
|
|
292
|
+
total_amount[acc_id][prt_id]["credit"] = tb["credit"]
|
|
293
|
+
total_amount[acc_id][prt_id]["debit"] = tb["debit"]
|
|
294
|
+
total_amount[acc_id][prt_id]["balance"] = tb["balance"]
|
|
295
|
+
total_amount[acc_id][prt_id]["initial_balance"] = 0.0
|
|
296
|
+
partners_ids.add(prt_id)
|
|
297
297
|
for tb in tb_initial_prt:
|
|
298
298
|
acc_id = tb["account_id"][0]
|
|
299
|
-
if tb["partner_id"]
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
{prt_id: {"id": prt_id, "name": tb["partner_id"][1]}}
|
|
304
|
-
)
|
|
305
|
-
total_amount = self._compute_acc_prt_amount(
|
|
306
|
-
total_amount, tb, acc_id, prt_id, foreign_currency
|
|
299
|
+
prt_id = tb["partner_id"][0] if tb["partner_id"] else 0
|
|
300
|
+
if prt_id not in partners_ids:
|
|
301
|
+
partner_name = (
|
|
302
|
+
tb["partner_id"][1] if tb["partner_id"] else _("Missing Partner")
|
|
307
303
|
)
|
|
304
|
+
partners_data.update({prt_id: {"id": prt_id, "name": partner_name}})
|
|
305
|
+
total_amount = self._compute_acc_prt_amount(
|
|
306
|
+
total_amount, tb, acc_id, prt_id, foreign_currency
|
|
307
|
+
)
|
|
308
308
|
return total_amount, partners_data
|
|
309
309
|
|
|
310
310
|
def _remove_accounts_at_cero(self, total_amount, show_partner_details, company):
|
|
@@ -366,7 +366,7 @@ ul.auto-toc {
|
|
|
366
366
|
!! This file is generated by oca-gen-addon-readme !!
|
|
367
367
|
!! changes will be overwritten. !!
|
|
368
368
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
369
|
-
!! source digest: sha256:
|
|
369
|
+
!! source digest: sha256:4d1e4f698a5d08ff700165c86fc3bcaae362e7000a27d65648996b63b39e12c9
|
|
370
370
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
371
371
|
<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&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
372
372
|
<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: 16.0.1.
|
|
3
|
+
Version: 16.0.1.5.0
|
|
4
4
|
Summary: OCA Financial Reports
|
|
5
5
|
Home-page: https://github.com/OCA/account-financial-reporting
|
|
6
6
|
Author: Camptocamp SA,initOS GmbH,redCOR AG,ForgeFlow,Odoo Community Association (OCA)
|
|
@@ -25,7 +25,7 @@ Account Financial Reports
|
|
|
25
25
|
!! This file is generated by oca-gen-addon-readme !!
|
|
26
26
|
!! changes will be overwritten. !!
|
|
27
27
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
28
|
-
!! source digest: sha256:
|
|
28
|
+
!! source digest: sha256:4d1e4f698a5d08ff700165c86fc3bcaae362e7000a27d65648996b63b39e12c9
|
|
29
29
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
30
30
|
|
|
31
31
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
odoo/addons/account_financial_report/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_financial_report/README.rst,sha256=aT5M2KoWeV_f0LvMf_IxIVH8zixjoqrW2p23U6Gwk4s,5739
|
|
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=1KH7Hb8L4rvdmym9IaD62K9l1xFAaQGQq1HCKyryKio,1926
|
|
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=
|
|
6
|
+
odoo/addons/account_financial_report/i18n/account_financial_report.pot,sha256=_Nz31bik4ebg1GqxY4NhwwRientoUAuzPUmTAibMCXc,77779
|
|
7
7
|
odoo/addons/account_financial_report/i18n/ar.po,sha256=RKPD6FEwD3i_ZxtwcsObhtRBsjTJtkRRcv1CAwMAVwU,85252
|
|
8
8
|
odoo/addons/account_financial_report/i18n/ca.po,sha256=x95il6gPo1B8SnhH5mi0oLbQ0J_eURXhr6PKLa1HWi0,82001
|
|
9
9
|
odoo/addons/account_financial_report/i18n/de.po,sha256=pJ8BTik0QYDKI-PRrYwu69mCYice6H57l4QYO7uuV78,87915
|
|
@@ -38,13 +38,13 @@ odoo/addons/account_financial_report/report/abstract_report.py,sha256=54-xtL4smX
|
|
|
38
38
|
odoo/addons/account_financial_report/report/abstract_report_xlsx.py,sha256=ugty0nle8yhqdxCdi6aBjxEh8vN2u2KRz9hTsrpJgT0,29911
|
|
39
39
|
odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=EcsLbWzZY1HEIA0LvezULg0mKC2HzQq9x8y6Unc6A4s,16271
|
|
40
40
|
odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py,sha256=pDtYtdoF8UVb0LJrM5cc0zSnwRnKa0O_AUqsSGZRZKk,12312
|
|
41
|
-
odoo/addons/account_financial_report/report/general_ledger.py,sha256=
|
|
41
|
+
odoo/addons/account_financial_report/report/general_ledger.py,sha256=gCyfp6VxARnYO0HPY8UXnlgd3kCN69BHMXUQa98qX6E,34828
|
|
42
42
|
odoo/addons/account_financial_report/report/general_ledger_xlsx.py,sha256=bljV-GRofA1jaqPD65rJmhk96GhL2CIkyMN19CXAu5E,16458
|
|
43
43
|
odoo/addons/account_financial_report/report/journal_ledger.py,sha256=5_w9CmKy_eZNgJsSL1TFTTe5b3DBBEY1qmseI1RuGPI,15424
|
|
44
44
|
odoo/addons/account_financial_report/report/journal_ledger_xlsx.py,sha256=Pp7iDkBjSk0BqZkSPAiKI2hBHNcjKYjZoBxuL_ENz5E,10126
|
|
45
|
-
odoo/addons/account_financial_report/report/open_items.py,sha256=
|
|
45
|
+
odoo/addons/account_financial_report/report/open_items.py,sha256=7ODuL5W36FR7-0aQEhM2luoaHM7dx_dYlvMs4yHKIJ8,11920
|
|
46
46
|
odoo/addons/account_financial_report/report/open_items_xlsx.py,sha256=ALSPBYyWcON7VduRmsh9rZuaac77EOytU7MO8ATn6O8,8395
|
|
47
|
-
odoo/addons/account_financial_report/report/trial_balance.py,sha256=
|
|
47
|
+
odoo/addons/account_financial_report/report/trial_balance.py,sha256=GcvZQ9tET2CHEdFbtuTuwAE9T-c89MP-fX7IXr_B3zA,31411
|
|
48
48
|
odoo/addons/account_financial_report/report/trial_balance_xlsx.py,sha256=phPDqy4pXbd94oFmwjPNe_XKoMCgcTXPE6HOkGJJDko,12060
|
|
49
49
|
odoo/addons/account_financial_report/report/vat_report.py,sha256=H0k2uhDK_X3el1gVXA_lBUoj2dO1u104rjaWBcWLpnk,10131
|
|
50
50
|
odoo/addons/account_financial_report/report/vat_report_xlsx.py,sha256=aa0dLzYdywjmO63ONRYUBTpSGmsPfEjX60CkUbULuo8,2317
|
|
@@ -57,7 +57,7 @@ odoo/addons/account_financial_report/report/templates/trial_balance.xml,sha256=N
|
|
|
57
57
|
odoo/addons/account_financial_report/report/templates/vat_report.xml,sha256=HRKoEUsj_GnG0Qz6rFMEUpYGapc2WmEJpt6pxIFtTAc,8107
|
|
58
58
|
odoo/addons/account_financial_report/security/ir.model.access.csv,sha256=To-PgtH3iQl6TcR9pRwvkSdG25S50xRjEIu4oyiBqrM,833
|
|
59
59
|
odoo/addons/account_financial_report/static/description/icon.png,sha256=WW-eOIjW5-jo7tgBieNv6K2DUKMoHFSVctnp0htstHI,15230
|
|
60
|
-
odoo/addons/account_financial_report/static/description/index.html,sha256=
|
|
60
|
+
odoo/addons/account_financial_report/static/description/index.html,sha256=L1wMKk_nryg4qGLGNMFV5drW3Hr2hFV1qqUQvyIKCF4,18177
|
|
61
61
|
odoo/addons/account_financial_report/static/src/css/report.css,sha256=Cu4VmyY5tVXIddaojFDsg0Ute2qPCvKbLiimak_X9ik,2361
|
|
62
62
|
odoo/addons/account_financial_report/static/src/js/report.esm.js,sha256=He488vLRaLv6IIuVaNSnNl8kJMIwJmMIv7GkmXyPJZs,2475
|
|
63
63
|
odoo/addons/account_financial_report/static/src/js/report_action.esm.js,sha256=eZkRVYzZIekvMJLO9maUDrTRpSZfz6VoXzsFcuGEXQ8,1212
|
|
@@ -90,7 +90,7 @@ odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256=8Fjyw
|
|
|
90
90
|
odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml,sha256=7oNGPs3s8DVw3movVGe2ryRUNl1MtN7O76UH8zaFFtI,7048
|
|
91
91
|
odoo/addons/account_financial_report/wizard/vat_report_wizard.py,sha256=pJATDNWLcEWvctby5e5yvv4Kz7YDfCTi7YZP7slA8a4,3424
|
|
92
92
|
odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml,sha256=T3P81O4csDGP7Jmf7eAtmbIIldja3IoXbBmweMMt8vA,2330
|
|
93
|
-
odoo_addon_account_financial_report-16.0.1.
|
|
94
|
-
odoo_addon_account_financial_report-16.0.1.
|
|
95
|
-
odoo_addon_account_financial_report-16.0.1.
|
|
96
|
-
odoo_addon_account_financial_report-16.0.1.
|
|
93
|
+
odoo_addon_account_financial_report-16.0.1.5.0.dist-info/METADATA,sha256=t2r_jhYkeVMN3evs29gJFSt5PTwIDYRtY_5q3i9LQJU,6442
|
|
94
|
+
odoo_addon_account_financial_report-16.0.1.5.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
95
|
+
odoo_addon_account_financial_report-16.0.1.5.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
96
|
+
odoo_addon_account_financial_report-16.0.1.5.0.dist-info/RECORD,,
|
|
File without changes
|