odoo-addon-account-financial-report 15.0.1.1.0.1__py3-none-any.whl → 18.0.1.4.4.3__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.
Files changed (104) hide show
  1. odoo/addons/account_financial_report/README.rst +131 -74
  2. odoo/addons/account_financial_report/__manifest__.py +6 -9
  3. odoo/addons/account_financial_report/i18n/account_financial_report.pot +313 -188
  4. odoo/addons/account_financial_report/i18n/ar.po +579 -433
  5. odoo/addons/account_financial_report/i18n/ca.po +474 -289
  6. odoo/addons/account_financial_report/i18n/{fr_FR.po → ca_AD.po} +539 -491
  7. odoo/addons/account_financial_report/i18n/ca_ES.po +1891 -0
  8. odoo/addons/account_financial_report/i18n/de.po +455 -295
  9. odoo/addons/account_financial_report/i18n/es.po +458 -394
  10. odoo/addons/account_financial_report/i18n/es_AR.po +464 -283
  11. odoo/addons/account_financial_report/i18n/es_MX.po +315 -220
  12. odoo/addons/account_financial_report/i18n/fr.po +620 -435
  13. odoo/addons/account_financial_report/i18n/fr_CH.po +616 -462
  14. odoo/addons/account_financial_report/i18n/hr.po +506 -355
  15. odoo/addons/account_financial_report/i18n/hr_HR.po +331 -232
  16. odoo/addons/account_financial_report/i18n/it.po +538 -356
  17. odoo/addons/account_financial_report/i18n/ja.po +339 -240
  18. odoo/addons/account_financial_report/i18n/nl.po +462 -324
  19. odoo/addons/account_financial_report/i18n/nl_NL.po +318 -220
  20. odoo/addons/account_financial_report/i18n/pt.po +429 -242
  21. odoo/addons/account_financial_report/i18n/pt_BR.po +588 -438
  22. odoo/addons/account_financial_report/i18n/ro.po +499 -342
  23. odoo/addons/account_financial_report/i18n/sl.po +1945 -0
  24. odoo/addons/account_financial_report/i18n/sv.po +1997 -0
  25. odoo/addons/account_financial_report/i18n/tr.po +1947 -0
  26. odoo/addons/account_financial_report/menuitems.xml +1 -1
  27. odoo/addons/account_financial_report/models/__init__.py +2 -0
  28. odoo/addons/account_financial_report/models/account_age_report_configuration.py +49 -0
  29. odoo/addons/account_financial_report/models/account_group.py +62 -23
  30. odoo/addons/account_financial_report/models/account_move_line.py +33 -3
  31. odoo/addons/account_financial_report/models/ir_actions_report.py +6 -4
  32. odoo/addons/account_financial_report/models/res_config_settings.py +36 -0
  33. odoo/addons/account_financial_report/readme/CONFIGURE.md +26 -0
  34. odoo/addons/account_financial_report/readme/CONTRIBUTORS.md +38 -0
  35. odoo/addons/account_financial_report/readme/CREDITS.md +1 -0
  36. odoo/addons/account_financial_report/readme/DESCRIPTION.md +21 -0
  37. odoo/addons/account_financial_report/readme/HISTORY.md +16 -0
  38. odoo/addons/account_financial_report/readme/ROADMAP.md +6 -0
  39. odoo/addons/account_financial_report/report/abstract_report.py +73 -23
  40. odoo/addons/account_financial_report/report/abstract_report_xlsx.py +28 -23
  41. odoo/addons/account_financial_report/report/aged_partner_balance.py +131 -30
  42. odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +158 -118
  43. odoo/addons/account_financial_report/report/general_ledger.py +421 -340
  44. odoo/addons/account_financial_report/report/general_ledger_xlsx.py +127 -75
  45. odoo/addons/account_financial_report/report/journal_ledger.py +84 -68
  46. odoo/addons/account_financial_report/report/journal_ledger_xlsx.py +14 -8
  47. odoo/addons/account_financial_report/report/open_items.py +113 -70
  48. odoo/addons/account_financial_report/report/open_items_xlsx.py +152 -19
  49. odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +408 -311
  50. odoo/addons/account_financial_report/report/templates/general_ledger.xml +273 -213
  51. odoo/addons/account_financial_report/report/templates/journal_ledger.xml +70 -76
  52. odoo/addons/account_financial_report/report/templates/layouts.xml +12 -1
  53. odoo/addons/account_financial_report/report/templates/open_items.xml +181 -55
  54. odoo/addons/account_financial_report/report/templates/trial_balance.xml +304 -195
  55. odoo/addons/account_financial_report/report/templates/vat_report.xml +10 -10
  56. odoo/addons/account_financial_report/report/trial_balance.py +463 -211
  57. odoo/addons/account_financial_report/report/trial_balance_xlsx.py +37 -38
  58. odoo/addons/account_financial_report/report/vat_report.py +36 -25
  59. odoo/addons/account_financial_report/report/vat_report_xlsx.py +1 -1
  60. odoo/addons/account_financial_report/security/ir.model.access.csv +2 -0
  61. odoo/addons/account_financial_report/security/security.xml +8 -0
  62. odoo/addons/account_financial_report/static/description/index.html +106 -55
  63. odoo/addons/account_financial_report/static/src/css/report.css +77 -42
  64. odoo/addons/account_financial_report/static/src/css/report_html.css +10 -0
  65. odoo/addons/account_financial_report/static/src/js/report.esm.js +72 -0
  66. odoo/addons/account_financial_report/static/src/js/report_action.esm.js +39 -0
  67. odoo/addons/account_financial_report/static/src/xml/report.xml +10 -9
  68. odoo/addons/account_financial_report/tests/__init__.py +1 -0
  69. odoo/addons/account_financial_report/tests/test_age_report_configuration.py +42 -0
  70. odoo/addons/account_financial_report/tests/test_aged_partner_balance.py +99 -9
  71. odoo/addons/account_financial_report/tests/test_general_ledger.py +19 -9
  72. odoo/addons/account_financial_report/tests/test_journal_ledger.py +18 -9
  73. odoo/addons/account_financial_report/tests/test_open_items.py +42 -2
  74. odoo/addons/account_financial_report/tests/test_trial_balance.py +114 -223
  75. odoo/addons/account_financial_report/tests/test_vat_report.py +17 -9
  76. odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +41 -0
  77. odoo/addons/account_financial_report/view/res_config_settings_views.xml +51 -0
  78. odoo/addons/account_financial_report/wizard/abstract_wizard.py +23 -0
  79. odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +22 -8
  80. odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml +2 -3
  81. odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +42 -36
  82. odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml +26 -41
  83. odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py +19 -7
  84. odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml +15 -14
  85. odoo/addons/account_financial_report/wizard/open_items_wizard.py +34 -8
  86. odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +16 -14
  87. odoo/addons/account_financial_report/wizard/trial_balance_wizard.py +68 -45
  88. odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml +40 -39
  89. odoo/addons/account_financial_report/wizard/vat_report_wizard.py +9 -3
  90. odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml +14 -14
  91. odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/METADATA +234 -0
  92. odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/RECORD +107 -0
  93. {odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info → odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info}/WHEEL +1 -1
  94. odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/top_level.txt +1 -0
  95. odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst +0 -35
  96. odoo/addons/account_financial_report/readme/DESCRIPTION.rst +0 -16
  97. odoo/addons/account_financial_report/readme/HISTORY.rst +0 -19
  98. odoo/addons/account_financial_report/readme/ROADMAP.rst +0 -7
  99. odoo/addons/account_financial_report/static/src/js/action_manager_report.js +0 -37
  100. odoo/addons/account_financial_report/static/src/js/client_action.js +0 -58
  101. odoo/addons/account_financial_report/static/src/js/report.js +0 -58
  102. odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/METADATA +0 -179
  103. odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/RECORD +0 -95
  104. odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/top_level.txt +0 -1
@@ -0,0 +1,234 @@
1
+ Metadata-Version: 2.1
2
+ Name: odoo-addon-account_financial_report
3
+ Version: 18.0.1.4.4.3
4
+ Requires-Python: >=3.10
5
+ Requires-Dist: odoo-addon-date_range==18.0.*
6
+ Requires-Dist: odoo-addon-report_xlsx==18.0.*
7
+ Requires-Dist: odoo==18.0.*
8
+ Summary: OCA Financial Reports
9
+ Home-page: https://github.com/OCA/account-financial-reporting
10
+ License: AGPL-3
11
+ Author: Camptocamp,initOS GmbH,redCOR AG,ForgeFlow,Odoo Community Association (OCA)
12
+ Author-email: support@odoo-community.org
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Framework :: Odoo
15
+ Classifier: Framework :: Odoo :: 18.0
16
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
17
+ Description-Content-Type: text/x-rst
18
+
19
+ .. image:: https://odoo-community.org/readme-banner-image
20
+ :target: https://odoo-community.org/get-involved?utm_source=readme
21
+ :alt: Odoo Community Association
22
+
23
+ =========================
24
+ Account Financial Reports
25
+ =========================
26
+
27
+ ..
28
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29
+ !! This file is generated by oca-gen-addon-readme !!
30
+ !! changes will be overwritten. !!
31
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
32
+ !! source digest: sha256:e8f692c4f6ca372a1ce2bf979057b1e422845bba22841d0f2ffd8f71bc7d9b01
33
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
34
+
35
+ .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
36
+ :target: https://odoo-community.org/page/development-status
37
+ :alt: Beta
38
+ .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
39
+ :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
40
+ :alt: License: AGPL-3
41
+ .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--financial--reporting-lightgray.png?logo=github
42
+ :target: https://github.com/OCA/account-financial-reporting/tree/18.0/account_financial_report
43
+ :alt: OCA/account-financial-reporting
44
+ .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
45
+ :target: https://translation.odoo-community.org/projects/account-financial-reporting-18-0/account-financial-reporting-18-0-account_financial_report
46
+ :alt: Translate me on Weblate
47
+ .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
48
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/account-financial-reporting&target_branch=18.0
49
+ :alt: Try me on Runboat
50
+
51
+ |badge1| |badge2| |badge3| |badge4| |badge5|
52
+
53
+ This module adds a set of financial reports. They are accessible under
54
+ Invoicing / Reporting / OCA accounting reports.
55
+
56
+ - General ledger
57
+ - Trial Balance
58
+ - Open Items
59
+ - Aged Partner Balance
60
+ - VAT Report
61
+ - Journal Ledger
62
+
63
+ Currently General ledger, Trial Balance and Open Items are fully
64
+ compatible with a foreign currency set up in account in order to display
65
+ balances. Moreover, any foreign currency used in account move lines is
66
+ properly shown.
67
+
68
+ In case that in an account has not been configured a second currency
69
+ foreign currency balances are not available.
70
+
71
+ Invoicing / Settings / Invoicing / OCA Aged Report Configuration you
72
+ will be able to set dynamic intervals that will appear on the Aged
73
+ Partner Balance. For further information, check CONFIGURE.rst
74
+
75
+ **Table of contents**
76
+
77
+ .. contents::
78
+ :local:
79
+
80
+ Configuration
81
+ =============
82
+
83
+ To configure dynamic intervals for Aged Partner Balance you need to:
84
+
85
+ Go on 'Settings' -> 'Invoicing' -> 'OCA Aged Report Configuration'.
86
+
87
+ Click on option 'Configurations' and create new record.
88
+
89
+ Create new interval. The name established on line will be the column to
90
+ display in Aged Partner Balance. Inferior limit established on line is
91
+ the interval
92
+
93
+ Example of configuration inferior limit:
94
+
95
+ -> 15 -> 30 -> 60
96
+
97
+ It means the first interval is from 0 to 15, the second from 16 to 30,
98
+ and the third is 61+.
99
+
100
+ Go on 'Invoicing' -> 'Reporting' -> 'OCA accounting reports' -> 'Aged
101
+ Partner Balance'
102
+
103
+ When wizard is open, you need to select your interval configuration and
104
+ print report.
105
+
106
+ If you want to get default interval configuration any time you wish to
107
+ print Aged Partner Report, you can set default interval configuration
108
+ per company in:
109
+
110
+ 'Settings' -> 'Invoicing' -> 'OCA Aged Report Configuration'.
111
+
112
+ Known issues / Roadmap
113
+ ======================
114
+
115
+ - 'VAT Report' is valid only for cases where it's met that for each Tax
116
+ defined: all the "Account tags" of all the 'Repartition for Invoices'
117
+ or 'Repartition for Credit Notes' are different.
118
+ - It would be nice to have in reports a column indicating the state of
119
+ the entries when the option "All Entries" is selected in "Target
120
+ Moves" field in a wizard
121
+
122
+ Changelog
123
+ =========
124
+
125
+ 11.0.2.5.0 (2019-04-26)
126
+ -----------------------
127
+
128
+ - In the Trial Balance you have an option to hide parent hierarchy
129
+ levels
130
+
131
+ 11.0.2.4.1 (2019-01-08)
132
+ -----------------------
133
+
134
+ - Handle better multicompany behaviour
135
+ - Improve how title appears in the reports
136
+ - Improve performance in General Ledger
137
+
138
+ 11.0.2.3.1 (2018-11-29)
139
+ -----------------------
140
+
141
+ - In the Trial Balance you can apply a filter by hierarchy levels
142
+ - In the General Ledger you can apply a filter by Analytic Tag
143
+ - In the Journal Ledger the field 'Journal' is now optional
144
+
145
+ Bug Tracker
146
+ ===========
147
+
148
+ Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-financial-reporting/issues>`_.
149
+ In case of trouble, please check there if your issue has already been reported.
150
+ If you spotted it first, help us to smash it by providing a detailed and welcomed
151
+ `feedback <https://github.com/OCA/account-financial-reporting/issues/new?body=module:%20account_financial_report%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
152
+
153
+ Do not contact contributors directly about support or help with technical issues.
154
+
155
+ Credits
156
+ =======
157
+
158
+ Authors
159
+ -------
160
+
161
+ * Camptocamp
162
+ * initOS GmbH
163
+ * redCOR AG
164
+ * ForgeFlow
165
+
166
+ Contributors
167
+ ------------
168
+
169
+ - Jordi Ballester <jordi.ballester@forgeflow.com>
170
+ - Yannick Vaucher <yannick.vaucher@camptocamp.com>
171
+ - Simone Orsi <simone.orsi@abstract.com>
172
+ - Leonardo Pistone <leonardo.pistone@camptocamp.com>
173
+ - Damien Crier <damien.crier@camptocamp.com>
174
+ - Andrea Stirpe <a.stirpe@onestein.nl>
175
+ - Thomas Rehn <thomas.rehn@initos.com>
176
+ - Andrea Gallina <4everamd@gmail.com>
177
+ - Robert Rottermann <robert@redcor.ch>
178
+ - Ciro Urselli <c.urselli@apuliasoftware.it>
179
+ - Francesco Apruzzese <opencode@e-ware.org>
180
+ - Lorenzo Battistini <https://github.com/eLBati>
181
+ - Julien Coux <julien.coux@camptocamp.com>
182
+ - Akim Juillerat <akim.juillerat@camptocamp.com>
183
+ - Alexis de Lattre <alexis@via.ecp.fr>
184
+ - Mihai Fekete <feketemihai@gmail.com>
185
+ - Miquel Ra??ch <miquel.raich@forgeflow.com>
186
+ - Joan Sisquella <joan.sisquella@forgeflow.com>
187
+ - `Tecnativa <https://www.tecnativa.com>`__:
188
+
189
+ - Pedro M. Baeza
190
+ - Sergio Teruel
191
+ - Ernesto Tejeda
192
+ - João Marques
193
+ - Alexandre D. D??az
194
+ - V??ctor Mart??nez
195
+ - Carolina Fernandez
196
+
197
+ - `Sygel <https://www.sygel.es>`__:
198
+
199
+ - Harald Panten
200
+ - Valentin Vinagre
201
+
202
+ - Lois Rilo <lois.rilo@forgeflow.com>
203
+ - Saran Lim. <saranl@ecosoft.co.th>
204
+ - Omar Casti??eira <omar@comunitea.com>
205
+ - Chau Le <chaulb@trobz.com>
206
+ - `Stesi Consulting <https://www.stesi.consulting>`__:
207
+
208
+ - Michele Di Croce <dicroce.m@stesi.consulting>
209
+
210
+ Much of the work in this module was done at a sprint in Sorrento, Italy
211
+ in April 2016.
212
+
213
+ Other credits
214
+ -------------
215
+
216
+ The migration of this module from 17.0 to 18.0 was financially supported
217
+ by Camptocamp.
218
+
219
+ Maintainers
220
+ -----------
221
+
222
+ This module is maintained by the OCA.
223
+
224
+ .. image:: https://odoo-community.org/logo.png
225
+ :alt: Odoo Community Association
226
+ :target: https://odoo-community.org
227
+
228
+ OCA, or the Odoo Community Association, is a nonprofit organization whose
229
+ mission is to support the collaborative development of Odoo features and
230
+ promote its widespread use.
231
+
232
+ This module is part of the `OCA/account-financial-reporting <https://github.com/OCA/account-financial-reporting/tree/18.0/account_financial_report>`_ project on GitHub.
233
+
234
+ You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
@@ -0,0 +1,107 @@
1
+ odoo/addons/account_financial_report/README.rst,sha256=PPYMxRFaLqjBXIsm2lvrXfY7H9SyeDbTblm4Xt8hqAM,7308
2
+ odoo/addons/account_financial_report/__init__.py,sha256=YoL8hk5QxSifbFJL7gPzpOSk-3zB1OSHJBXyZK25G6Q,187
3
+ odoo/addons/account_financial_report/__manifest__.py,sha256=Qrh3D0BNUSssG7iUwJm6gRZ66rGWE1-Ho-44A-hsv84,2061
4
+ odoo/addons/account_financial_report/menuitems.xml,sha256=k20N6cNRlDsnPhc378MVs7jwzJhbbJQ2k-P3WdsmF_M,1206
5
+ odoo/addons/account_financial_report/reports.xml,sha256=c2KamS250rNzHUInjNwC0G2dhwiIqtYgbked51PtmVw,9254
6
+ odoo/addons/account_financial_report/i18n/account_financial_report.pot,sha256=rdtKoRevFdZiWM1ypUavNfUDIdNltH-GDJVJmtC9wQE,81600
7
+ odoo/addons/account_financial_report/i18n/ar.po,sha256=O-iVOvS85XeRN5lNrT1L0xjhI3DgOA35pb0gkEDulbY,95851
8
+ odoo/addons/account_financial_report/i18n/ca.po,sha256=1pAXrsUCuvM3marXZey7Tn2eQISu9I_V8SPq3rd8lX8,90923
9
+ odoo/addons/account_financial_report/i18n/ca_AD.po,sha256=1OjqKFtyWcNJJV2eTJekfsE1Af6f6VWGYJOZmET5HoA,81673
10
+ odoo/addons/account_financial_report/i18n/ca_ES.po,sha256=ojL_8ugawzAessk_TeJYU_64fIAajUohv5KrZWPT-xA,81673
11
+ odoo/addons/account_financial_report/i18n/de.po,sha256=FXHIZ07_xtsERMyqs9YV7Fzxsb26Q3sTw-nIQyFteaA,94218
12
+ odoo/addons/account_financial_report/i18n/es.po,sha256=OgKYc_G_0w2Vo6w_IskT8B2D94oL7rGbDrAuwCIKvl8,91159
13
+ odoo/addons/account_financial_report/i18n/es_AR.po,sha256=XPNOgrxvY6nkssXOmp6Epb7AkspBv0OpOU00nwjonZQ,91178
14
+ odoo/addons/account_financial_report/i18n/es_MX.po,sha256=EC1ngq3izRKrT1_hELh_VADLWp-7Wne5nlKKIrwJjrM,81889
15
+ odoo/addons/account_financial_report/i18n/fr.po,sha256=uPIdQVgAZQBzAOLZdXF-sgKD8mac0YrlgTVz8zUt8YE,96150
16
+ odoo/addons/account_financial_report/i18n/fr_CH.po,sha256=DIVLHCEK8OBbF2PpUof1fFhz5kKoTaD-ilr9bD6HHcA,94870
17
+ odoo/addons/account_financial_report/i18n/hr.po,sha256=SrYX9989jdtQUb-ibRc54jOrR048hhwkm9oBLDD-xhM,85219
18
+ odoo/addons/account_financial_report/i18n/hr_HR.po,sha256=WLa2WuXMCcWRqUYDA-4UuXmkYv8PXo92rJAE8LKFThU,82747
19
+ odoo/addons/account_financial_report/i18n/it.po,sha256=x4MzkaLE6I_gnuTYjoYIWuwRysNi5xv7EJ4rKkrTKgI,92982
20
+ odoo/addons/account_financial_report/i18n/ja.po,sha256=-yEMw6lglbATK4jaxT4-oDANiDHOPJXYcz4C9lcW2rk,82508
21
+ odoo/addons/account_financial_report/i18n/nl.po,sha256=SKLgi7CWJv9i-Nsr7tr1czHBP0RDB-V-skNjYgzeOfU,94878
22
+ odoo/addons/account_financial_report/i18n/nl_NL.po,sha256=QQ2G8wJ3FA_uoWjpJJBtmXPb4KEEmSbHh1Jh7Z24VOg,82411
23
+ odoo/addons/account_financial_report/i18n/pt.po,sha256=sfYCTzxAnKgA0DQWYsqG-Yc0j6FxQtzyM7RCDuu0OZ8,90754
24
+ odoo/addons/account_financial_report/i18n/pt_BR.po,sha256=BvpOg5y2KvINA3bFZBx892cWEZbcXUUjC9jsocwCxfI,98056
25
+ odoo/addons/account_financial_report/i18n/ro.po,sha256=vX1N9a2vq9CCPzVoE7397z53N0UEg4TDjXD8mJ3taEU,90239
26
+ odoo/addons/account_financial_report/i18n/sl.po,sha256=6V9H7PR9l0PNbIAMoi3KFH0JO7ESdvMPsHjgkg5Ks84,88306
27
+ odoo/addons/account_financial_report/i18n/sv.po,sha256=O-aoi9FY1TzgIld1RvBNFzHpZTLFbbaTzFY5EUx73bU,89075
28
+ odoo/addons/account_financial_report/i18n/tr.po,sha256=WKygEyZCegFIcMekztRV4ESoykFTAqd6_7xHeyhu9xI,88748
29
+ odoo/addons/account_financial_report/models/__init__.py,sha256=KCE4mRzM1HSu4Mjg3thvCgBOaEyw5w8VHB--Du-wXyE,195
30
+ odoo/addons/account_financial_report/models/account.py,sha256=wqzI7oZ9H5XsJM6Ngo3WewQ7lExyX-fuKNzSljpj644,422
31
+ odoo/addons/account_financial_report/models/account_age_report_configuration.py,sha256=KiDN4CdZSJeQLU1RvGaiTqedG6Gx1LVuhA5xAib9BzM,1714
32
+ odoo/addons/account_financial_report/models/account_group.py,sha256=2ZBHwtwyFiB7CpAOOLiKUB55Q-Sltss9VTG0M1bladE,3945
33
+ odoo/addons/account_financial_report/models/account_move_line.py,sha256=TabkIR2E0YSPkc_jgCKz6_7UOuZ0ryjYWXSwS4Ofwn0,2928
34
+ odoo/addons/account_financial_report/models/ir_actions_report.py,sha256=wq-rx2bpI6odJ4-PQR5aellrM9740n5WN4tf1IKdlj0,1074
35
+ odoo/addons/account_financial_report/models/res_config_settings.py,sha256=RquuvQgiB0-rCQuVE4uiDXSrKNqLwl_hY8jp300LzDU,1049
36
+ odoo/addons/account_financial_report/readme/CONFIGURE.md,sha256=Pmbot6o9GejLI8Mrv0aX1X_h6NEXOd6uW1yCOvYgHdY,903
37
+ odoo/addons/account_financial_report/readme/CONTRIBUTORS.md,sha256=x1AtN9CASrupxunWeSfsPtJvYyBCK0dQABkJnpvwtck,1479
38
+ odoo/addons/account_financial_report/readme/CREDITS.md,sha256=iBbhXVnE2APvLFeXl0Bdd-uXfNXH21qo0HnEDi8tVNI,88
39
+ odoo/addons/account_financial_report/readme/DESCRIPTION.md,sha256=4mWyU68JKCXDnf2zlkKEMUH1ZYqZRLrtcKQjB68dDhY,759
40
+ odoo/addons/account_financial_report/readme/HISTORY.md,sha256=5PzKD9lPwX_nKEaZRwGYea4Q0sXJy2dEbRUBUSYwAMg,473
41
+ odoo/addons/account_financial_report/readme/ROADMAP.md,sha256=kZqiEvRk8A3A47ZIh-OiAtqgaPpxO6ul0P60oCEg8Qg,360
42
+ odoo/addons/account_financial_report/report/__init__.py,sha256=D-L2gAu6aAsGo9YtxVH14sulDEPHK0CEy7A2kTwewTE,618
43
+ odoo/addons/account_financial_report/report/abstract_report.py,sha256=bJKK1QgBZgBhbbANkZ2spy9XHSvS8T8w-h0LpbmbBqQ,6350
44
+ odoo/addons/account_financial_report/report/abstract_report_xlsx.py,sha256=QXkTf9MgAsTEvht73di6LrXeIRBeoZsBTNDS8Oj6tA0,29900
45
+ odoo/addons/account_financial_report/report/aged_partner_balance.py,sha256=svGiiNEqf_eESmM6MRBu_OI6pKcbe-Gnt2__iMSpsK0,20006
46
+ odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py,sha256=U5X3ajFLlWlD-WqxTBsjLa1TdntImyVIgrMBpvOiBkY,14525
47
+ odoo/addons/account_financial_report/report/general_ledger.py,sha256=WsFPMzHirpu6Py_qy2jsQjeGvxh_WPBIfWyHm26gAFU,38210
48
+ odoo/addons/account_financial_report/report/general_ledger_xlsx.py,sha256=PlLj8FMiFRIbniLzMzvaN-p2HUAr7KnJZktRnOpYO24,17553
49
+ odoo/addons/account_financial_report/report/journal_ledger.py,sha256=GI5ktwHdsW88zg4Ts2Kg1UivBzRWEB91cpEBHrsyrHU,15885
50
+ odoo/addons/account_financial_report/report/journal_ledger_xlsx.py,sha256=iQQu7TkuZ8qVnf38hurFNIfBH3oi49HHOpJw9jjAoUM,10224
51
+ odoo/addons/account_financial_report/report/open_items.py,sha256=35XqBgTk96O0TULNUdeC0PEXZ6hsBw3MvMtcjSpmhE8,12749
52
+ odoo/addons/account_financial_report/report/open_items_xlsx.py,sha256=U2mzYDK_GxECJw2B45YhtJfJEQ_M35_snodnaLABKqQ,14931
53
+ odoo/addons/account_financial_report/report/trial_balance.py,sha256=_30HaDaTdOdCOVs_NFzDH7vD1-BO3ioDqOykp3sXB0U,43008
54
+ odoo/addons/account_financial_report/report/trial_balance_xlsx.py,sha256=HqSKYcDwqeTcTYHRju7RvR410VjYnOy5vE78bHEWkQs,13246
55
+ odoo/addons/account_financial_report/report/vat_report.py,sha256=Xzhr5W7f9hqy9RLnE-Cd-ZcuAZJ6zBDzrcCHdN8IfdM,10491
56
+ odoo/addons/account_financial_report/report/vat_report_xlsx.py,sha256=movkNhEiNi3kGlBf2VEmxxWKuqW_fzqM_QKOXw04ppU,2307
57
+ odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml,sha256=LQzls20HTACZzucMI4ssvi7hJpDbZbYWjCZAA_8J6Hw,40970
58
+ odoo/addons/account_financial_report/report/templates/general_ledger.xml,sha256=BjWzycMagDQJwka1nXgvMskp_CtuoDV7Njeri9SzblM,39674
59
+ odoo/addons/account_financial_report/report/templates/journal_ledger.xml,sha256=jTxHgZZFvOaS-5Cu03nZSEy8TuT_P5_Dcp4kqcVF_kw,21339
60
+ odoo/addons/account_financial_report/report/templates/layouts.xml,sha256=EDBF0KpmyUzYODauhSIU1QL3zFYjlg3Ynq41K30WqgY,1575
61
+ odoo/addons/account_financial_report/report/templates/open_items.xml,sha256=Ozy2w7v1HJYNALI-vXym-y2bbk7HER561B_uB3t3BXg,21972
62
+ odoo/addons/account_financial_report/report/templates/trial_balance.xml,sha256=fOtCCMMvAq7vQpEV0_51O6-YRQHjV9sWbB3NbkYJtYw,53287
63
+ odoo/addons/account_financial_report/report/templates/vat_report.xml,sha256=2WeL6Njr8LFBtERKmfyi3IH-J1frSO4Gpew-ruzuWNk,8128
64
+ odoo/addons/account_financial_report/security/ir.model.access.csv,sha256=S1VQLLwLeaOeAMYGqtoOqHUaZVrvDUVE4Z-0-SRjSGQ,1134
65
+ odoo/addons/account_financial_report/security/security.xml,sha256=YQCXbOuTGHCWGYwGnXMie_0tnWG5zYJGdoeey3o1xaw,382
66
+ odoo/addons/account_financial_report/static/description/icon.png,sha256=WW-eOIjW5-jo7tgBieNv6K2DUKMoHFSVctnp0htstHI,15230
67
+ odoo/addons/account_financial_report/static/description/index.html,sha256=fNdHSCJqp09a1iwJWsix5D9lVm0p9Cf-0pj5InR1CCU,20640
68
+ odoo/addons/account_financial_report/static/src/css/report.css,sha256=UYlrKHXNvw3lcwlaTVNCxSQyMDi0JrizZjn4fS5cirw,2354
69
+ odoo/addons/account_financial_report/static/src/css/report_html.css,sha256=WO4wfg0-z87dAqLlqz1LuA_rBizNjlGnCUCeMzSSSYs,149
70
+ odoo/addons/account_financial_report/static/src/js/report.esm.js,sha256=bJcyov25ktGuF-eT_SUGkRLudz-6UNnKR0gmv3e-ZYc,2495
71
+ odoo/addons/account_financial_report/static/src/js/report_action.esm.js,sha256=QFNFkxgsWrOwjgW0WlZj6CDLXPaAGf0p3Ml5NQFgbm0,1160
72
+ odoo/addons/account_financial_report/static/src/xml/report.xml,sha256=b0CFMw4g3KVeRFHRQjm6ujNxv7PtZS101dJrHArQUaw,496
73
+ odoo/addons/account_financial_report/tests/__init__.py,sha256=cbhcI5XU9FQX7eC4KT0dR7FEUAUbPuWAi1qBltppaXs,351
74
+ odoo/addons/account_financial_report/tests/test_age_report_configuration.py,sha256=YRe_xyrN3FTKBsEpTMPrMJFLb40gfk6aiOaSZz7BoXs,1423
75
+ odoo/addons/account_financial_report/tests/test_aged_partner_balance.py,sha256=ZfzXRFGWBpSr2-fEuqSL8Q2jKZ80eUVUbfYCCjjh_0s,4520
76
+ odoo/addons/account_financial_report/tests/test_general_ledger.py,sha256=2HT6Eb22bZhP4pMX8xNxuL_S2nhImNjeWwiGP6qob0s,29104
77
+ odoo/addons/account_financial_report/tests/test_journal_ledger.py,sha256=pGUUHSXUVDh0SzeLPa0x3yrDFye0qq3Ch7tuxG_xvLw,11013
78
+ odoo/addons/account_financial_report/tests/test_open_items.py,sha256=8Olb-BzRCQ5jNgAGDAczI30HsG5iRLxS5QX4DZv3Kyo,2474
79
+ odoo/addons/account_financial_report/tests/test_trial_balance.py,sha256=pWda1Yap84D34ezyaTRNRQUY5YqmL6JFI7hUoB4OZ-4,29053
80
+ odoo/addons/account_financial_report/tests/test_vat_report.py,sha256=OH-Cmrw3KdWxEMV-_h9zmK8FByvMvbykqTKoqa78K08,14618
81
+ odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml,sha256=etQ_Do0Fz251A73gnWiM7lyCMKGiozIT1aU10vTs27Q,1764
82
+ odoo/addons/account_financial_report/view/account_view.xml,sha256=9KKmGXEEvyUygmVrWIR3rvqJICCHvbGayGwZ40tI1iA,534
83
+ odoo/addons/account_financial_report/view/report_aged_partner_balance.xml,sha256=EUjo6LxHznk2wdKQCO9VR83YzPLAEFZ7DeiaHmtxvQQ,341
84
+ odoo/addons/account_financial_report/view/report_general_ledger.xml,sha256=d4MnPj3DaDa4xnREMHYOitPiaDF3T6OvzZayOpdSKiM,329
85
+ odoo/addons/account_financial_report/view/report_journal_ledger.xml,sha256=-m_fOdCweEZtdNBWhp3jqgWc1XmEn7d2s4kvFOnX7P8,329
86
+ odoo/addons/account_financial_report/view/report_open_items.xml,sha256=v9kyNgIN_S22rkPh6TAWeE1qnwuBxAN_2uLdjQGbqcs,321
87
+ odoo/addons/account_financial_report/view/report_trial_balance.xml,sha256=QRzD5Z2RTSL3ra7rehu-yY5g4o_O0Z8usccsMmHM7TM,327
88
+ odoo/addons/account_financial_report/view/report_vat_report.xml,sha256=Bc4DAlUg_g92GUgCRsLoC9Lf0yzfm6sh_ZrPtVACywA,321
89
+ odoo/addons/account_financial_report/view/res_config_settings_views.xml,sha256=ys8UruOoY09d4nNYIB9rrW8cnOwl1YfB3r8ifvA3t2Q,2514
90
+ odoo/addons/account_financial_report/wizard/__init__.py,sha256=5lngmjx-Vz-5k9nPILd25_1oVKKhUHnYhjAOMgdQHPY,243
91
+ odoo/addons/account_financial_report/wizard/abstract_wizard.py,sha256=tZYRQmv5C_qvsow34CvbyO7Xxmoevmjnj8RYudb0x48,2346
92
+ odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py,sha256=rNxkqA8xb2zvZJAL_fKs8cjDMPPb3xyN6wDHEcTfRRs,6211
93
+ odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml,sha256=P4y5oItOq_1xovOhpjCU-9JzIvT2HH00tXWYFmMhnMo,3996
94
+ odoo/addons/account_financial_report/wizard/general_ledger_wizard.py,sha256=wsDPPWIsrzZJeSi4FyIsy8SDaasQQFN52tS4Kmy2SGQ,12662
95
+ odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml,sha256=xRoVIXJ1_byPYaFUdqjFrf2LQ529bXUMmvIMbRBvDPs,7733
96
+ odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py,sha256=PVADH3ISjrPBMEDFkbhY5r44cAUMrLtkPPVG2OJ7sSo,5956
97
+ odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml,sha256=cWo2BZC_dx8skBwMXB7casHgyjzJayvWf3hEwDt0HQY,2959
98
+ odoo/addons/account_financial_report/wizard/open_items_wizard.py,sha256=_idJAi8sZpael5k2QoOpNSMycxgurKgbRrR1ZRho9v4,7637
99
+ odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml,sha256=iZgKSgzl7x9uKVglaMYjzTVqyfMBZownJtosdgLPBU0,4743
100
+ odoo/addons/account_financial_report/wizard/trial_balance_wizard.py,sha256=qtXPOgSrtTBNXBQiPz59asMTDWn9xBLpWFe9eIEFHJk,11945
101
+ odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml,sha256=aHKMVPiQUfrpfUT0sojCfLUG38Am0DuEZSOHTPTof3k,7221
102
+ odoo/addons/account_financial_report/wizard/vat_report_wizard.py,sha256=00mjuhWSDeckkS7RF_nRAPQUkPcxVuqZ6Oc4z6Z7zEU,3665
103
+ odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml,sha256=3cJ0it2_5w20iw5x8QtTp11HoBk5kqQup6XjgJMbv7U,2274
104
+ odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/METADATA,sha256=Hv022NXBiX5nMyTeDrmPflqvt4cjGQZENjO9ooTnFu4,7996
105
+ odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
106
+ odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
107
+ odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.37.1)
2
+ Generator: Whool 1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,35 +0,0 @@
1
- * Jordi Ballester <jordi.ballester@forgeflow.com>
2
- * Yannick Vaucher <yannick.vaucher@camptocamp.com>
3
- * Simone Orsi <simone.orsi@abstract.com>
4
- * Leonardo Pistone <leonardo.pistone@camptocamp.com>
5
- * Damien Crier <damien.crier@camptocamp.com>
6
- * Andrea Stirpe <a.stirpe@onestein.nl>
7
- * Thomas Rehn <thomas.rehn@initos.com>
8
- * Andrea Gallina <4everamd@gmail.com>
9
- * Robert Rottermann <robert@redcor.ch>
10
- * Ciro Urselli <c.urselli@apuliasoftware.it>
11
- * Francesco Apruzzese <opencode@e-ware.org>
12
- * Lorenzo Battistini <https://github.com/eLBati>
13
- * Julien Coux <julien.coux@camptocamp.com>
14
- * Akim Juillerat <akim.juillerat@camptocamp.com>
15
- * Alexis de Lattre <alexis@via.ecp.fr>
16
- * Mihai Fekete <feketemihai@gmail.com>
17
- * Miquel Raïch <miquel.raich@forgeflow.com>
18
- * Joan Sisquella <joan.sisquella@forgeflow.com>
19
- * `Tecnativa <https://www.tecnativa.com>`__:
20
-
21
- * Pedro M. Baeza
22
- * Sergio Teruel
23
- * Ernesto Tejeda
24
- * João Marques
25
- * Alexandre D. Díaz
26
-
27
- * `Sygel <https://www.sygel.es>`__:
28
-
29
- * Harald Panten
30
- * Valentin Vinagre
31
-
32
- * Lois Rilo <lois.rilo@forgeflow.com>
33
-
34
- Much of the work in this module was done at a sprint in Sorrento, Italy in
35
- April 2016.
@@ -1,16 +0,0 @@
1
- This module adds a set of financial reports. They are accessible under
2
- Invoicing / Reporting / OCA accounting reports.
3
-
4
- - General ledger
5
- - Trial Balance
6
- - Open Items
7
- - Aged Partner Balance
8
- - VAT Report
9
- - Journal Ledger
10
-
11
- Currently General ledger, Trial Balance and Open Items are fully compatible with a foreign
12
- currency set up in account in order to display balances. Moreover, any foreign
13
- currency used in account move lines is properly shown.
14
-
15
- In case that in an account has not been configured a second currency foreign
16
- currency balances are not available.
@@ -1,19 +0,0 @@
1
- 11.0.2.5.0 (2019-04-26)
2
- ~~~~~~~~~~~~~~~~~~~~~~~
3
-
4
- * In the Trial Balance you have an option to hide parent hierarchy levels
5
-
6
- 11.0.2.4.1 (2019-01-08)
7
- ~~~~~~~~~~~~~~~~~~~~~~~
8
-
9
- * Handle better multicompany behaviour
10
- * Improve how title appears in the reports
11
- * Improve performance in General Ledger
12
-
13
-
14
- 11.0.2.3.1 (2018-11-29)
15
- ~~~~~~~~~~~~~~~~~~~~~~~
16
-
17
- * In the Trial Balance you can apply a filter by hierarchy levels
18
- * In the General Ledger you can apply a filter by Analytic Tag
19
- * In the Journal Ledger the field 'Journal' is now optional
@@ -1,7 +0,0 @@
1
- * 'VAT Report' is valid only for cases where it's met that for each
2
- Tax defined: all the "Account tags" of all the
3
- 'Repartition for Invoices' or 'Repartition for Credit Notes'
4
- are different.
5
- * It would be nice to have in reports a column indicating the
6
- state of the entries when the option "All Entries" is selected
7
- in "Target Moves" field in a wizard
@@ -1,37 +0,0 @@
1
- // Method is available here https://github.com/odoo/odoo/blob/15.0/addons/web/static/src/webclient/actions/action_service.js#L981
2
- // TO DO: Check for implement this action inherit
3
- // odoo.define("account_financial_report.ReportActionManager", function (require) {
4
- // "use strict";
5
- //
6
- // const ActionManager = require("web.ActionManager");
7
- // require("web.ReportActionManager");
8
- //
9
- // ActionManager.include({
10
- // /**
11
- // * @override
12
- // */
13
- // _executeReportClientAction: function (action, options) {
14
- // const MODULE_NAME = "account_financial_report";
15
- //
16
- // // When 'report_action' is called from the backend, Odoo hardcodes the action tag.
17
- // // We have to make a hack to use our own report controller.
18
- // if (action.report_name.startsWith(`${MODULE_NAME}.`)) {
19
- // const urls = this._makeReportUrls(action);
20
- // const clientActionOptions = _.extend({}, options, {
21
- // context: action.context,
22
- // data: action.data,
23
- // display_name: action.display_name,
24
- // name: action.name,
25
- // report_file: action.report_file,
26
- // report_name: action.report_name,
27
- // report_url: urls.html,
28
- // });
29
- // return this.doAction(
30
- // "account_financial_report.client_action",
31
- // clientActionOptions
32
- // );
33
- // }
34
- // return this._super.apply(this, arguments);
35
- // },
36
- // });
37
- // });
@@ -1,58 +0,0 @@
1
- odoo.define("account_financial_report.client_action", function (require) {
2
- "use strict";
3
-
4
- var ReportAction = require("report.client_action");
5
- var core = require("web.core");
6
-
7
- var QWeb = core.qweb;
8
-
9
- const AFRReportAction = ReportAction.extend({
10
- start: function () {
11
- return this._super.apply(this, arguments).then(() => {
12
- this.$buttons = $(
13
- QWeb.render(
14
- "account_financial_report.client_action.ControlButtons",
15
- {}
16
- )
17
- );
18
- this.$buttons.on("click", ".o_report_print", this.on_click_print);
19
- this.$buttons.on("click", ".o_report_export", this.on_click_export);
20
-
21
- this.controlPanelProps.cp_content = {
22
- $buttons: this.$buttons,
23
- };
24
-
25
- this._controlPanelWrapper.update(this.controlPanelProps);
26
- });
27
- },
28
-
29
- on_click_export: function () {
30
- const action = {
31
- type: "ir.actions.report",
32
- report_type: "xlsx",
33
- report_name: this._get_xlsx_name(this.report_name),
34
- report_file: this._get_xlsx_name(this.report_file),
35
- data: this.data,
36
- context: this.context,
37
- display_name: this.title,
38
- };
39
- return this.do_action(action);
40
- },
41
-
42
- /**
43
- * @param {String} str
44
- * @returns {String}
45
- */
46
- _get_xlsx_name: function (str) {
47
- if (!_.isString(str)) {
48
- return str;
49
- }
50
- const parts = str.split(".");
51
- return `a_f_r.report_${parts[parts.length - 1]}_xlsx`;
52
- },
53
- });
54
-
55
- core.action_registry.add("account_financial_report.client_action", AFRReportAction);
56
-
57
- return AFRReportAction;
58
- });
@@ -1,58 +0,0 @@
1
- odoo.define("account_financial_report.report", function (require) {
2
- "use strict";
3
-
4
- require("web.dom_ready");
5
- const utils = require("report.utils");
6
-
7
- if (window.self === window.top) {
8
- return;
9
- }
10
-
11
- const web_base_url = $("html").attr("web-base-url");
12
- const trusted_host = utils.get_host_from_url(web_base_url);
13
- const trusted_protocol = utils.get_protocol_from_url(web_base_url);
14
- const trusted_origin = utils.build_origin(trusted_protocol, trusted_host);
15
-
16
- /**
17
- * Convert a model name to a capitalized title style
18
- * Example: account.mode.line --> Account Move Line
19
- *
20
- * @param {String} str
21
- * @returns {String}
22
- */
23
- function toTitleCase(str) {
24
- return str
25
- .replaceAll(".", " ")
26
- .replace(
27
- /\w\S*/g,
28
- (txt) => `${txt.charAt(0).toUpperCase()}${txt.substr(1).toLowerCase()}`
29
- );
30
- }
31
-
32
- // Allow sending commands to the webclient
33
- // `do_action` command with domain
34
- $("[res-model][domain]")
35
- .wrap("<a/>")
36
- .attr("href", "#")
37
- .on("click", function (ev) {
38
- ev.preventDefault();
39
- const res_model = $(this).attr("res-model");
40
- const action = {
41
- type: "ir.actions.act_window",
42
- res_model: res_model,
43
- domain: $(this).attr("domain"),
44
- name: toTitleCase(res_model),
45
- views: [
46
- [false, "list"],
47
- [false, "form"],
48
- ],
49
- };
50
- window.parent.postMessage(
51
- {
52
- message: "report:do_action",
53
- action: action,
54
- },
55
- trusted_origin
56
- );
57
- });
58
- });