odoo-addon-account-financial-report 15.0.2.9.2.3__py3-none-any.whl → 15.0.2.10.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 +36 -1
- odoo/addons/account_financial_report/__manifest__.py +4 -1
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +102 -4
- odoo/addons/account_financial_report/i18n/es.po +132 -84
- odoo/addons/account_financial_report/models/__init__.py +2 -0
- odoo/addons/account_financial_report/models/account_age_report_configuration.py +47 -0
- odoo/addons/account_financial_report/models/res_config_settings.py +14 -0
- odoo/addons/account_financial_report/readme/CONFIGURE.rst +26 -0
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst +1 -0
- odoo/addons/account_financial_report/readme/DESCRIPTION.rst +4 -0
- odoo/addons/account_financial_report/report/aged_partner_balance.py +74 -8
- odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +145 -104
- odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +428 -333
- odoo/addons/account_financial_report/security/ir.model.access.csv +2 -0
- odoo/addons/account_financial_report/security/security.xml +10 -0
- odoo/addons/account_financial_report/static/description/index.html +45 -21
- odoo/addons/account_financial_report/tests/__init__.py +1 -0
- odoo/addons/account_financial_report/tests/test_age_report_configuration.py +41 -0
- odoo/addons/account_financial_report/tests/test_aged_partner_balance.py +85 -4
- odoo/addons/account_financial_report/tests/test_general_ledger.py +5 -1
- odoo/addons/account_financial_report/tests/test_open_items.py +4 -1
- odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +44 -0
- odoo/addons/account_financial_report/view/res_config_settings_views.xml +56 -0
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +4 -0
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml +2 -0
- {odoo_addon_account_financial_report-15.0.2.9.2.3.dist-info → odoo_addon_account_financial_report-15.0.2.10.0.dist-info}/METADATA +37 -2
- {odoo_addon_account_financial_report-15.0.2.9.2.3.dist-info → odoo_addon_account_financial_report-15.0.2.10.0.dist-info}/RECORD +29 -22
- {odoo_addon_account_financial_report-15.0.2.9.2.3.dist-info → odoo_addon_account_financial_report-15.0.2.10.0.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-15.0.2.9.2.3.dist-info → odoo_addon_account_financial_report-15.0.2.10.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:69b3d19762f381e8a9fd056cf714d8bef620cd7ec717219660247213175028ad
|
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
12
|
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -45,11 +45,45 @@ currency used in account move lines is properly shown.
|
|
|
45
45
|
In case that in an account has not been configured a second currency foreign
|
|
46
46
|
currency balances are not available.
|
|
47
47
|
|
|
48
|
+
Invoicing / Settings / Invoicing / OCA Aged Report Configuration you will be able to set
|
|
49
|
+
dynamic intervals that will appear on the Aged Partner Balance.
|
|
50
|
+
For further information, check CONFIGURE.rst
|
|
51
|
+
|
|
48
52
|
**Table of contents**
|
|
49
53
|
|
|
50
54
|
.. contents::
|
|
51
55
|
:local:
|
|
52
56
|
|
|
57
|
+
Configuration
|
|
58
|
+
=============
|
|
59
|
+
|
|
60
|
+
To configure dynamic intervals for Aged Partner Balance you need to:
|
|
61
|
+
|
|
62
|
+
Go on 'Settings' -> 'Invoicing' -> 'OCA Aged Report Configuration'.
|
|
63
|
+
|
|
64
|
+
Click on option 'Configurations' and create new record.
|
|
65
|
+
|
|
66
|
+
Create new interval.
|
|
67
|
+
The name established on line will be the column to display in Aged Partner Balance.
|
|
68
|
+
Inferior limit established on line is the interval
|
|
69
|
+
|
|
70
|
+
Example of configuration inferior limit:
|
|
71
|
+
|
|
72
|
+
-> 15
|
|
73
|
+
-> 30
|
|
74
|
+
-> 60
|
|
75
|
+
|
|
76
|
+
It means the first interval is from 0 to 15, the second from 16 to 30, and the third is 61+.
|
|
77
|
+
|
|
78
|
+
Go on 'Invoicing' -> 'Reports' -> 'OCA accounting reports' -> 'Aged Partner Balance'
|
|
79
|
+
|
|
80
|
+
When wizard is open, you need to select your interval configuration and print report.
|
|
81
|
+
|
|
82
|
+
If you want to get default interval configuration any time you wish to print Aged Partner Report,
|
|
83
|
+
you can set default interval configuration per company in:
|
|
84
|
+
|
|
85
|
+
'Settings' -> 'Invoicing' -> 'OCA Aged Report Configuration'.
|
|
86
|
+
|
|
53
87
|
Known issues / Roadmap
|
|
54
88
|
======================
|
|
55
89
|
|
|
@@ -134,6 +168,7 @@ Contributors
|
|
|
134
168
|
* João Marques
|
|
135
169
|
* Alexandre D. Díaz
|
|
136
170
|
* Víctor Martínez
|
|
171
|
+
* Carolina Fernandez
|
|
137
172
|
|
|
138
173
|
* `Sygel <https://www.sygel.es>`__:
|
|
139
174
|
|
|
@@ -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": "15.0.2.
|
|
9
|
+
"version": "15.0.2.10.0",
|
|
10
10
|
"category": "Reporting",
|
|
11
11
|
"summary": "OCA Financial Reports",
|
|
12
12
|
"author": "Camptocamp SA,"
|
|
@@ -18,12 +18,14 @@
|
|
|
18
18
|
"depends": ["account", "date_range", "report_xlsx"],
|
|
19
19
|
"data": [
|
|
20
20
|
"security/ir.model.access.csv",
|
|
21
|
+
"security/security.xml",
|
|
21
22
|
"wizard/aged_partner_balance_wizard_view.xml",
|
|
22
23
|
"wizard/general_ledger_wizard_view.xml",
|
|
23
24
|
"wizard/journal_ledger_wizard_view.xml",
|
|
24
25
|
"wizard/open_items_wizard_view.xml",
|
|
25
26
|
"wizard/trial_balance_wizard_view.xml",
|
|
26
27
|
"wizard/vat_report_wizard_view.xml",
|
|
28
|
+
"view/account_age_report_configuration_views.xml",
|
|
27
29
|
"menuitems.xml",
|
|
28
30
|
"reports.xml",
|
|
29
31
|
"report/templates/layouts.xml",
|
|
@@ -40,6 +42,7 @@
|
|
|
40
42
|
"view/report_open_items.xml",
|
|
41
43
|
"view/report_aged_partner_balance.xml",
|
|
42
44
|
"view/report_vat_report.xml",
|
|
45
|
+
"view/res_config_settings_views.xml",
|
|
43
46
|
],
|
|
44
47
|
"assets": {
|
|
45
48
|
"web.assets_backend": [
|
|
@@ -49,6 +49,11 @@ msgstr ""
|
|
|
49
49
|
msgid "<b>Taxes summary</b>"
|
|
50
50
|
msgstr ""
|
|
51
51
|
|
|
52
|
+
#. module: account_financial_report
|
|
53
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
54
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
55
|
+
msgstr ""
|
|
56
|
+
|
|
52
57
|
#. module: account_financial_report
|
|
53
58
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
54
59
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -88,6 +93,11 @@ msgstr ""
|
|
|
88
93
|
msgid "Account"
|
|
89
94
|
msgstr ""
|
|
90
95
|
|
|
96
|
+
#. module: account_financial_report
|
|
97
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
98
|
+
msgid "Account Age Report Config"
|
|
99
|
+
msgstr ""
|
|
100
|
+
|
|
91
101
|
#. module: account_financial_report
|
|
92
102
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
93
103
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -146,11 +156,16 @@ msgstr ""
|
|
|
146
156
|
msgid "Additional Filtering"
|
|
147
157
|
msgstr ""
|
|
148
158
|
|
|
159
|
+
#. module: account_financial_report
|
|
160
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
161
|
+
msgid "Age Partner Report Configuration"
|
|
162
|
+
msgstr ""
|
|
163
|
+
|
|
149
164
|
#. module: account_financial_report
|
|
150
165
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
151
166
|
msgid ""
|
|
152
167
|
"Age ≤ 120\n"
|
|
153
|
-
"
|
|
168
|
+
" d."
|
|
154
169
|
msgstr ""
|
|
155
170
|
|
|
156
171
|
#. module: account_financial_report
|
|
@@ -164,7 +179,7 @@ msgstr ""
|
|
|
164
179
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
165
180
|
msgid ""
|
|
166
181
|
"Age ≤ 30\n"
|
|
167
|
-
"
|
|
182
|
+
" d."
|
|
168
183
|
msgstr ""
|
|
169
184
|
|
|
170
185
|
#. module: account_financial_report
|
|
@@ -178,7 +193,7 @@ msgstr ""
|
|
|
178
193
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
179
194
|
msgid ""
|
|
180
195
|
"Age ≤ 60\n"
|
|
181
|
-
"
|
|
196
|
+
" d."
|
|
182
197
|
msgstr ""
|
|
183
198
|
|
|
184
199
|
#. module: account_financial_report
|
|
@@ -192,7 +207,7 @@ msgstr ""
|
|
|
192
207
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
193
208
|
msgid ""
|
|
194
209
|
"Age ≤ 90\n"
|
|
195
|
-
"
|
|
210
|
+
" d."
|
|
196
211
|
msgstr ""
|
|
197
212
|
|
|
198
213
|
#. module: account_financial_report
|
|
@@ -392,6 +407,7 @@ msgstr ""
|
|
|
392
407
|
|
|
393
408
|
#. module: account_financial_report
|
|
394
409
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
410
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
395
411
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
396
412
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
397
413
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -409,6 +425,18 @@ msgid "Compute accounts"
|
|
|
409
425
|
msgstr ""
|
|
410
426
|
|
|
411
427
|
#. module: account_financial_report
|
|
428
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
429
|
+
msgid "Config Settings"
|
|
430
|
+
msgstr ""
|
|
431
|
+
|
|
432
|
+
#. module: account_financial_report
|
|
433
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
434
|
+
msgid "Configurations"
|
|
435
|
+
msgstr ""
|
|
436
|
+
|
|
437
|
+
#. module: account_financial_report
|
|
438
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
439
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
412
440
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
413
441
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
414
442
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -419,6 +447,8 @@ msgid "Created by"
|
|
|
419
447
|
msgstr ""
|
|
420
448
|
|
|
421
449
|
#. module: account_financial_report
|
|
450
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
451
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
422
452
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
423
453
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
424
454
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -595,6 +625,8 @@ msgid "Detail Taxes"
|
|
|
595
625
|
msgstr ""
|
|
596
626
|
|
|
597
627
|
#. module: account_financial_report
|
|
628
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
629
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
598
630
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
599
631
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
600
632
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -873,6 +905,12 @@ msgstr ""
|
|
|
873
905
|
msgid "Grouped By"
|
|
874
906
|
msgstr ""
|
|
875
907
|
|
|
908
|
+
#. module: account_financial_report
|
|
909
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
910
|
+
msgid ""
|
|
911
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
912
|
+
msgstr ""
|
|
913
|
+
|
|
876
914
|
#. module: account_financial_report
|
|
877
915
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
878
916
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -901,6 +939,8 @@ msgid "Hierarchy Levels to display"
|
|
|
901
939
|
msgstr ""
|
|
902
940
|
|
|
903
941
|
#. module: account_financial_report
|
|
942
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
943
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
904
944
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
905
945
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
906
946
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -917,6 +957,17 @@ msgid ""
|
|
|
917
957
|
"webkit one only), only centralized amounts per period."
|
|
918
958
|
msgstr ""
|
|
919
959
|
|
|
960
|
+
#. module: account_financial_report
|
|
961
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
962
|
+
msgid "Inferior Limit"
|
|
963
|
+
msgstr ""
|
|
964
|
+
|
|
965
|
+
#. module: account_financial_report
|
|
966
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
967
|
+
#, python-format
|
|
968
|
+
msgid "Inferior Limit must be greather than zero"
|
|
969
|
+
msgstr ""
|
|
970
|
+
|
|
920
971
|
#. module: account_financial_report
|
|
921
972
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
922
973
|
msgid ""
|
|
@@ -942,6 +993,12 @@ msgstr ""
|
|
|
942
993
|
msgid "Initial balance"
|
|
943
994
|
msgstr ""
|
|
944
995
|
|
|
996
|
+
#. module: account_financial_report
|
|
997
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
998
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
999
|
+
msgid "Intervals configuration"
|
|
1000
|
+
msgstr ""
|
|
1001
|
+
|
|
945
1002
|
#. module: account_financial_report
|
|
946
1003
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
947
1004
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -1008,6 +1065,8 @@ msgid "Journals"
|
|
|
1008
1065
|
msgstr ""
|
|
1009
1066
|
|
|
1010
1067
|
#. module: account_financial_report
|
|
1068
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1069
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1011
1070
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1012
1071
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1013
1072
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1018,6 +1077,8 @@ msgid "Last Modified on"
|
|
|
1018
1077
|
msgstr ""
|
|
1019
1078
|
|
|
1020
1079
|
#. module: account_financial_report
|
|
1080
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1081
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1021
1082
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1022
1083
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1023
1084
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1028,6 +1089,8 @@ msgid "Last Updated by"
|
|
|
1028
1089
|
msgstr ""
|
|
1029
1090
|
|
|
1030
1091
|
#. module: account_financial_report
|
|
1092
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1093
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1031
1094
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1032
1095
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1033
1096
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1057,6 +1120,11 @@ msgstr ""
|
|
|
1057
1120
|
msgid "Limit hierarchy levels"
|
|
1058
1121
|
msgstr ""
|
|
1059
1122
|
|
|
1123
|
+
#. module: account_financial_report
|
|
1124
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1125
|
+
msgid "Line"
|
|
1126
|
+
msgstr ""
|
|
1127
|
+
|
|
1060
1128
|
#. module: account_financial_report
|
|
1061
1129
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1062
1130
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
@@ -1067,6 +1135,16 @@ msgstr ""
|
|
|
1067
1135
|
msgid "Missing Partner"
|
|
1068
1136
|
msgstr ""
|
|
1069
1137
|
|
|
1138
|
+
#. module: account_financial_report
|
|
1139
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1140
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1141
|
+
msgstr ""
|
|
1142
|
+
|
|
1143
|
+
#. module: account_financial_report
|
|
1144
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1145
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1146
|
+
msgstr ""
|
|
1147
|
+
|
|
1070
1148
|
#. module: account_financial_report
|
|
1071
1149
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1072
1150
|
msgid "Move Target"
|
|
@@ -1077,9 +1155,17 @@ msgstr ""
|
|
|
1077
1155
|
msgid "Moves"
|
|
1078
1156
|
msgstr ""
|
|
1079
1157
|
|
|
1158
|
+
#. module: account_financial_report
|
|
1159
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1160
|
+
#, python-format
|
|
1161
|
+
msgid "Must complete Configuration Lines"
|
|
1162
|
+
msgstr ""
|
|
1163
|
+
|
|
1080
1164
|
#. module: account_financial_report
|
|
1081
1165
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1082
1166
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1167
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1168
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1083
1169
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1084
1170
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1085
1171
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1087,6 +1173,13 @@ msgstr ""
|
|
|
1087
1173
|
msgid "Name"
|
|
1088
1174
|
msgstr ""
|
|
1089
1175
|
|
|
1176
|
+
#. module: account_financial_report
|
|
1177
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1178
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1179
|
+
#, python-format
|
|
1180
|
+
msgid "Name must be unique per report configuration"
|
|
1181
|
+
msgstr ""
|
|
1182
|
+
|
|
1090
1183
|
#. module: account_financial_report
|
|
1091
1184
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1092
1185
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1140,6 +1233,11 @@ msgstr ""
|
|
|
1140
1233
|
msgid "Not due"
|
|
1141
1234
|
msgstr ""
|
|
1142
1235
|
|
|
1236
|
+
#. module: account_financial_report
|
|
1237
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1238
|
+
msgid "OCA Aged Report Configuration"
|
|
1239
|
+
msgstr ""
|
|
1240
|
+
|
|
1143
1241
|
#. module: account_financial_report
|
|
1144
1242
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1145
1243
|
msgid "OCA accounting reports"
|