odoo-addon-account-financial-report 15.0.2.9.2.3__py3-none-any.whl → 15.0.2.10.0.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 +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/ar.po +126 -11
- odoo/addons/account_financial_report/i18n/ca.po +130 -12
- odoo/addons/account_financial_report/i18n/da.po +130 -12
- odoo/addons/account_financial_report/i18n/de.po +130 -15
- odoo/addons/account_financial_report/i18n/es.po +134 -43
- odoo/addons/account_financial_report/i18n/es_AR.po +130 -12
- odoo/addons/account_financial_report/i18n/es_MX.po +102 -4
- odoo/addons/account_financial_report/i18n/fr.po +126 -11
- odoo/addons/account_financial_report/i18n/fr_CH.po +126 -11
- odoo/addons/account_financial_report/i18n/fr_FR.po +126 -8
- odoo/addons/account_financial_report/i18n/hr.po +102 -4
- odoo/addons/account_financial_report/i18n/hr_HR.po +102 -4
- odoo/addons/account_financial_report/i18n/it.po +130 -15
- odoo/addons/account_financial_report/i18n/ja.po +102 -4
- odoo/addons/account_financial_report/i18n/nl.po +130 -15
- odoo/addons/account_financial_report/i18n/nl_NL.po +102 -4
- odoo/addons/account_financial_report/i18n/pt.po +126 -8
- odoo/addons/account_financial_report/i18n/pt_BR.po +130 -15
- odoo/addons/account_financial_report/i18n/ro.po +130 -15
- 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.1.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.1.dist-info}/RECORD +47 -40
- {odoo_addon_account_financial_report-15.0.2.9.2.3.dist-info → odoo_addon_account_financial_report-15.0.2.10.0.1.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.1.dist-info}/top_level.txt +0 -0
|
@@ -56,6 +56,11 @@ msgstr ""
|
|
|
56
56
|
msgid "<b>Taxes summary</b>"
|
|
57
57
|
msgstr ""
|
|
58
58
|
|
|
59
|
+
#. module: account_financial_report
|
|
60
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
61
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
59
64
|
#. module: account_financial_report
|
|
60
65
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
61
66
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -95,6 +100,11 @@ msgstr ""
|
|
|
95
100
|
msgid "Account"
|
|
96
101
|
msgstr "Konto"
|
|
97
102
|
|
|
103
|
+
#. module: account_financial_report
|
|
104
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
105
|
+
msgid "Account Age Report Config"
|
|
106
|
+
msgstr ""
|
|
107
|
+
|
|
98
108
|
#. module: account_financial_report
|
|
99
109
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
100
110
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -155,11 +165,16 @@ msgstr ""
|
|
|
155
165
|
msgid "Additional Filtering"
|
|
156
166
|
msgstr ""
|
|
157
167
|
|
|
168
|
+
#. module: account_financial_report
|
|
169
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
170
|
+
msgid "Age Partner Report Configuration"
|
|
171
|
+
msgstr ""
|
|
172
|
+
|
|
158
173
|
#. module: account_financial_report
|
|
159
174
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
160
175
|
msgid ""
|
|
161
176
|
"Age ≤ 120\n"
|
|
162
|
-
"
|
|
177
|
+
" d."
|
|
163
178
|
msgstr ""
|
|
164
179
|
|
|
165
180
|
#. module: account_financial_report
|
|
@@ -172,7 +187,7 @@ msgstr ""
|
|
|
172
187
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
173
188
|
msgid ""
|
|
174
189
|
"Age ≤ 30\n"
|
|
175
|
-
"
|
|
190
|
+
" d."
|
|
176
191
|
msgstr ""
|
|
177
192
|
|
|
178
193
|
#. module: account_financial_report
|
|
@@ -185,7 +200,7 @@ msgstr ""
|
|
|
185
200
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
186
201
|
msgid ""
|
|
187
202
|
"Age ≤ 60\n"
|
|
188
|
-
"
|
|
203
|
+
" d."
|
|
189
204
|
msgstr ""
|
|
190
205
|
|
|
191
206
|
#. module: account_financial_report
|
|
@@ -198,7 +213,7 @@ msgstr ""
|
|
|
198
213
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
199
214
|
msgid ""
|
|
200
215
|
"Age ≤ 90\n"
|
|
201
|
-
"
|
|
216
|
+
" d."
|
|
202
217
|
msgstr ""
|
|
203
218
|
|
|
204
219
|
#. module: account_financial_report
|
|
@@ -401,6 +416,7 @@ msgstr ""
|
|
|
401
416
|
|
|
402
417
|
#. module: account_financial_report
|
|
403
418
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
419
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
404
420
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
405
421
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
406
422
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -418,6 +434,18 @@ msgid "Compute accounts"
|
|
|
418
434
|
msgstr ""
|
|
419
435
|
|
|
420
436
|
#. module: account_financial_report
|
|
437
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
438
|
+
msgid "Config Settings"
|
|
439
|
+
msgstr ""
|
|
440
|
+
|
|
441
|
+
#. module: account_financial_report
|
|
442
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
443
|
+
msgid "Configurations"
|
|
444
|
+
msgstr ""
|
|
445
|
+
|
|
446
|
+
#. module: account_financial_report
|
|
447
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
448
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
421
449
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
422
450
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
423
451
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -428,6 +456,8 @@ msgid "Created by"
|
|
|
428
456
|
msgstr "Kreirao"
|
|
429
457
|
|
|
430
458
|
#. module: account_financial_report
|
|
459
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
460
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
431
461
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
432
462
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
433
463
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -601,6 +631,8 @@ msgid "Detail Taxes"
|
|
|
601
631
|
msgstr ""
|
|
602
632
|
|
|
603
633
|
#. module: account_financial_report
|
|
634
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
635
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
604
636
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
605
637
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
606
638
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -875,6 +907,12 @@ msgstr ""
|
|
|
875
907
|
msgid "Grouped By"
|
|
876
908
|
msgstr ""
|
|
877
909
|
|
|
910
|
+
#. module: account_financial_report
|
|
911
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
912
|
+
msgid ""
|
|
913
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
914
|
+
msgstr ""
|
|
915
|
+
|
|
878
916
|
#. module: account_financial_report
|
|
879
917
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
880
918
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -903,6 +941,8 @@ msgid "Hierarchy Levels to display"
|
|
|
903
941
|
msgstr ""
|
|
904
942
|
|
|
905
943
|
#. module: account_financial_report
|
|
944
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
945
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
906
946
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
907
947
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
908
948
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -919,6 +959,17 @@ msgid ""
|
|
|
919
959
|
"webkit one only), only centralized amounts per period."
|
|
920
960
|
msgstr ""
|
|
921
961
|
|
|
962
|
+
#. module: account_financial_report
|
|
963
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
964
|
+
msgid "Inferior Limit"
|
|
965
|
+
msgstr ""
|
|
966
|
+
|
|
967
|
+
#. module: account_financial_report
|
|
968
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
969
|
+
#, python-format
|
|
970
|
+
msgid "Inferior Limit must be greather than zero"
|
|
971
|
+
msgstr ""
|
|
972
|
+
|
|
922
973
|
#. module: account_financial_report
|
|
923
974
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
924
975
|
msgid ""
|
|
@@ -941,6 +992,12 @@ msgstr ""
|
|
|
941
992
|
msgid "Initial balance"
|
|
942
993
|
msgstr ""
|
|
943
994
|
|
|
995
|
+
#. module: account_financial_report
|
|
996
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
997
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
998
|
+
msgid "Intervals configuration"
|
|
999
|
+
msgstr ""
|
|
1000
|
+
|
|
944
1001
|
#. module: account_financial_report
|
|
945
1002
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
946
1003
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -1007,6 +1064,8 @@ msgid "Journals"
|
|
|
1007
1064
|
msgstr ""
|
|
1008
1065
|
|
|
1009
1066
|
#. module: account_financial_report
|
|
1067
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1068
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1010
1069
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1011
1070
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1012
1071
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1017,6 +1076,8 @@ msgid "Last Modified on"
|
|
|
1017
1076
|
msgstr ""
|
|
1018
1077
|
|
|
1019
1078
|
#. module: account_financial_report
|
|
1079
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1080
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1020
1081
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1021
1082
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1022
1083
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1027,6 +1088,8 @@ msgid "Last Updated by"
|
|
|
1027
1088
|
msgstr ""
|
|
1028
1089
|
|
|
1029
1090
|
#. module: account_financial_report
|
|
1091
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1092
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1030
1093
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1031
1094
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1032
1095
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1056,6 +1119,11 @@ msgstr ""
|
|
|
1056
1119
|
msgid "Limit hierarchy levels"
|
|
1057
1120
|
msgstr ""
|
|
1058
1121
|
|
|
1122
|
+
#. module: account_financial_report
|
|
1123
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1124
|
+
msgid "Line"
|
|
1125
|
+
msgstr ""
|
|
1126
|
+
|
|
1059
1127
|
#. module: account_financial_report
|
|
1060
1128
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1061
1129
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
@@ -1064,6 +1132,16 @@ msgstr ""
|
|
|
1064
1132
|
msgid "Missing Partner"
|
|
1065
1133
|
msgstr ""
|
|
1066
1134
|
|
|
1135
|
+
#. module: account_financial_report
|
|
1136
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1137
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1138
|
+
msgstr ""
|
|
1139
|
+
|
|
1140
|
+
#. module: account_financial_report
|
|
1141
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1142
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1143
|
+
msgstr ""
|
|
1144
|
+
|
|
1067
1145
|
#. module: account_financial_report
|
|
1068
1146
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1069
1147
|
msgid "Move Target"
|
|
@@ -1074,9 +1152,17 @@ msgstr ""
|
|
|
1074
1152
|
msgid "Moves"
|
|
1075
1153
|
msgstr ""
|
|
1076
1154
|
|
|
1155
|
+
#. module: account_financial_report
|
|
1156
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1157
|
+
#, python-format
|
|
1158
|
+
msgid "Must complete Configuration Lines"
|
|
1159
|
+
msgstr ""
|
|
1160
|
+
|
|
1077
1161
|
#. module: account_financial_report
|
|
1078
1162
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1079
1163
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1164
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1165
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1080
1166
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1081
1167
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1082
1168
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1084,6 +1170,13 @@ msgstr ""
|
|
|
1084
1170
|
msgid "Name"
|
|
1085
1171
|
msgstr ""
|
|
1086
1172
|
|
|
1173
|
+
#. module: account_financial_report
|
|
1174
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1175
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1176
|
+
#, python-format
|
|
1177
|
+
msgid "Name must be unique per report configuration"
|
|
1178
|
+
msgstr ""
|
|
1179
|
+
|
|
1087
1180
|
#. module: account_financial_report
|
|
1088
1181
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1089
1182
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1135,6 +1228,11 @@ msgstr ""
|
|
|
1135
1228
|
msgid "Not due"
|
|
1136
1229
|
msgstr ""
|
|
1137
1230
|
|
|
1231
|
+
#. module: account_financial_report
|
|
1232
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1233
|
+
msgid "OCA Aged Report Configuration"
|
|
1234
|
+
msgstr ""
|
|
1235
|
+
|
|
1138
1236
|
#. module: account_financial_report
|
|
1139
1237
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1140
1238
|
msgid "OCA accounting reports"
|
|
@@ -53,6 +53,11 @@ msgstr "91 - 120 g."
|
|
|
53
53
|
msgid "<b>Taxes summary</b>"
|
|
54
54
|
msgstr "<b>Riepilogo imposte</b>"
|
|
55
55
|
|
|
56
|
+
#. module: account_financial_report
|
|
57
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
58
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
59
|
+
msgstr ""
|
|
60
|
+
|
|
56
61
|
#. module: account_financial_report
|
|
57
62
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
58
63
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -93,6 +98,11 @@ msgstr ""
|
|
|
93
98
|
msgid "Account"
|
|
94
99
|
msgstr "Conto"
|
|
95
100
|
|
|
101
|
+
#. module: account_financial_report
|
|
102
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
103
|
+
msgid "Account Age Report Config"
|
|
104
|
+
msgstr ""
|
|
105
|
+
|
|
96
106
|
#. module: account_financial_report
|
|
97
107
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
98
108
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -153,14 +163,17 @@ msgstr "Attivare centralizzazione"
|
|
|
153
163
|
msgid "Additional Filtering"
|
|
154
164
|
msgstr ""
|
|
155
165
|
|
|
166
|
+
#. module: account_financial_report
|
|
167
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
168
|
+
msgid "Age Partner Report Configuration"
|
|
169
|
+
msgstr ""
|
|
170
|
+
|
|
156
171
|
#. module: account_financial_report
|
|
157
172
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
158
173
|
msgid ""
|
|
159
174
|
"Age ≤ 120\n"
|
|
160
|
-
"
|
|
175
|
+
" d."
|
|
161
176
|
msgstr ""
|
|
162
|
-
"Età ≤ 120\n"
|
|
163
|
-
" g."
|
|
164
177
|
|
|
165
178
|
#. module: account_financial_report
|
|
166
179
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -172,10 +185,8 @@ msgstr "Età ⤠120 g."
|
|
|
172
185
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
173
186
|
msgid ""
|
|
174
187
|
"Age ≤ 30\n"
|
|
175
|
-
"
|
|
188
|
+
" d."
|
|
176
189
|
msgstr ""
|
|
177
|
-
"Età ≤ 30\n"
|
|
178
|
-
" g."
|
|
179
190
|
|
|
180
191
|
#. module: account_financial_report
|
|
181
192
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -187,10 +198,8 @@ msgstr "Età ⤠30 g."
|
|
|
187
198
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
188
199
|
msgid ""
|
|
189
200
|
"Age ≤ 60\n"
|
|
190
|
-
"
|
|
201
|
+
" d."
|
|
191
202
|
msgstr ""
|
|
192
|
-
"Età ≤ 60\n"
|
|
193
|
-
" g."
|
|
194
203
|
|
|
195
204
|
#. module: account_financial_report
|
|
196
205
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -202,10 +211,8 @@ msgstr "Età ⤠60 g."
|
|
|
202
211
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
203
212
|
msgid ""
|
|
204
213
|
"Age ≤ 90\n"
|
|
205
|
-
"
|
|
214
|
+
" d."
|
|
206
215
|
msgstr ""
|
|
207
|
-
"Età ≤ 90\n"
|
|
208
|
-
" g."
|
|
209
216
|
|
|
210
217
|
#. module: account_financial_report
|
|
211
218
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -405,6 +412,7 @@ msgstr "Codice"
|
|
|
405
412
|
|
|
406
413
|
#. module: account_financial_report
|
|
407
414
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
415
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
408
416
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
409
417
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
410
418
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -422,6 +430,18 @@ msgid "Compute accounts"
|
|
|
422
430
|
msgstr "Calcolare conti"
|
|
423
431
|
|
|
424
432
|
#. module: account_financial_report
|
|
433
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
434
|
+
msgid "Config Settings"
|
|
435
|
+
msgstr ""
|
|
436
|
+
|
|
437
|
+
#. module: account_financial_report
|
|
438
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
439
|
+
msgid "Configurations"
|
|
440
|
+
msgstr ""
|
|
441
|
+
|
|
442
|
+
#. module: account_financial_report
|
|
443
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
444
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
425
445
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
426
446
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
427
447
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -432,6 +452,8 @@ msgid "Created by"
|
|
|
432
452
|
msgstr "Creato da"
|
|
433
453
|
|
|
434
454
|
#. module: account_financial_report
|
|
455
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
456
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
435
457
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
436
458
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
437
459
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -605,6 +627,8 @@ msgid "Detail Taxes"
|
|
|
605
627
|
msgstr "Dettaglio imposte"
|
|
606
628
|
|
|
607
629
|
#. module: account_financial_report
|
|
630
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
631
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
608
632
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
609
633
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
610
634
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -895,6 +919,12 @@ msgstr "Raggruppa registrazioni per"
|
|
|
895
919
|
msgid "Grouped By"
|
|
896
920
|
msgstr ""
|
|
897
921
|
|
|
922
|
+
#. module: account_financial_report
|
|
923
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
924
|
+
msgid ""
|
|
925
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
926
|
+
msgstr ""
|
|
927
|
+
|
|
898
928
|
#. module: account_financial_report
|
|
899
929
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
900
930
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -923,6 +953,8 @@ msgid "Hierarchy Levels to display"
|
|
|
923
953
|
msgstr "Livelli da mostrare"
|
|
924
954
|
|
|
925
955
|
#. module: account_financial_report
|
|
956
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
957
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
926
958
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
927
959
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
928
960
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -939,6 +971,17 @@ msgid ""
|
|
|
939
971
|
"webkit one only), only centralized amounts per period."
|
|
940
972
|
msgstr ""
|
|
941
973
|
|
|
974
|
+
#. module: account_financial_report
|
|
975
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
976
|
+
msgid "Inferior Limit"
|
|
977
|
+
msgstr ""
|
|
978
|
+
|
|
979
|
+
#. module: account_financial_report
|
|
980
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
981
|
+
#, python-format
|
|
982
|
+
msgid "Inferior Limit must be greather than zero"
|
|
983
|
+
msgstr ""
|
|
984
|
+
|
|
942
985
|
#. module: account_financial_report
|
|
943
986
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
944
987
|
#, fuzzy
|
|
@@ -964,6 +1007,12 @@ msgstr ""
|
|
|
964
1007
|
msgid "Initial balance"
|
|
965
1008
|
msgstr "Saldo iniziale"
|
|
966
1009
|
|
|
1010
|
+
#. module: account_financial_report
|
|
1011
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1012
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1013
|
+
msgid "Intervals configuration"
|
|
1014
|
+
msgstr ""
|
|
1015
|
+
|
|
967
1016
|
#. module: account_financial_report
|
|
968
1017
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
969
1018
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -1032,6 +1081,8 @@ msgid "Journals"
|
|
|
1032
1081
|
msgstr "Sezionali"
|
|
1033
1082
|
|
|
1034
1083
|
#. module: account_financial_report
|
|
1084
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1085
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1035
1086
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1036
1087
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1037
1088
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1042,6 +1093,8 @@ msgid "Last Modified on"
|
|
|
1042
1093
|
msgstr "Ultima modifica il"
|
|
1043
1094
|
|
|
1044
1095
|
#. module: account_financial_report
|
|
1096
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1097
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1045
1098
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1046
1099
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1047
1100
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1052,6 +1105,8 @@ msgid "Last Updated by"
|
|
|
1052
1105
|
msgstr "Ultimo aggiornamento di"
|
|
1053
1106
|
|
|
1054
1107
|
#. module: account_financial_report
|
|
1108
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1109
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1055
1110
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1056
1111
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1057
1112
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1081,6 +1136,11 @@ msgstr ""
|
|
|
1081
1136
|
msgid "Limit hierarchy levels"
|
|
1082
1137
|
msgstr "Limitare i livelli della gerarchia"
|
|
1083
1138
|
|
|
1139
|
+
#. module: account_financial_report
|
|
1140
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1141
|
+
msgid "Line"
|
|
1142
|
+
msgstr "Riga"
|
|
1143
|
+
|
|
1084
1144
|
#. module: account_financial_report
|
|
1085
1145
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1086
1146
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
@@ -1089,6 +1149,16 @@ msgstr "Limitare i livelli della gerarchia"
|
|
|
1089
1149
|
msgid "Missing Partner"
|
|
1090
1150
|
msgstr ""
|
|
1091
1151
|
|
|
1152
|
+
#. module: account_financial_report
|
|
1153
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1154
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1155
|
+
msgstr ""
|
|
1156
|
+
|
|
1157
|
+
#. module: account_financial_report
|
|
1158
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1159
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1160
|
+
msgstr ""
|
|
1161
|
+
|
|
1092
1162
|
#. module: account_financial_report
|
|
1093
1163
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1094
1164
|
msgid "Move Target"
|
|
@@ -1099,9 +1169,17 @@ msgstr "Obiettivo"
|
|
|
1099
1169
|
msgid "Moves"
|
|
1100
1170
|
msgstr "Registrazioni"
|
|
1101
1171
|
|
|
1172
|
+
#. module: account_financial_report
|
|
1173
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1174
|
+
#, python-format
|
|
1175
|
+
msgid "Must complete Configuration Lines"
|
|
1176
|
+
msgstr ""
|
|
1177
|
+
|
|
1102
1178
|
#. module: account_financial_report
|
|
1103
1179
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1104
1180
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1181
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1182
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1105
1183
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1106
1184
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1107
1185
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1109,6 +1187,13 @@ msgstr "Registrazioni"
|
|
|
1109
1187
|
msgid "Name"
|
|
1110
1188
|
msgstr "Nome"
|
|
1111
1189
|
|
|
1190
|
+
#. module: account_financial_report
|
|
1191
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1192
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1193
|
+
#, python-format
|
|
1194
|
+
msgid "Name must be unique per report configuration"
|
|
1195
|
+
msgstr ""
|
|
1196
|
+
|
|
1112
1197
|
#. module: account_financial_report
|
|
1113
1198
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1114
1199
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1160,6 +1245,11 @@ msgstr "Non confermate"
|
|
|
1160
1245
|
msgid "Not due"
|
|
1161
1246
|
msgstr ""
|
|
1162
1247
|
|
|
1248
|
+
#. module: account_financial_report
|
|
1249
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1250
|
+
msgid "OCA Aged Report Configuration"
|
|
1251
|
+
msgstr ""
|
|
1252
|
+
|
|
1163
1253
|
#. module: account_financial_report
|
|
1164
1254
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1165
1255
|
msgid "OCA accounting reports"
|
|
@@ -1820,6 +1910,34 @@ msgstr ""
|
|
|
1820
1910
|
msgid "width: 8.11%;"
|
|
1821
1911
|
msgstr ""
|
|
1822
1912
|
|
|
1913
|
+
#~ msgid ""
|
|
1914
|
+
#~ "Age ≤ 120\n"
|
|
1915
|
+
#~ " d."
|
|
1916
|
+
#~ msgstr ""
|
|
1917
|
+
#~ "Età ≤ 120\n"
|
|
1918
|
+
#~ " g."
|
|
1919
|
+
|
|
1920
|
+
#~ msgid ""
|
|
1921
|
+
#~ "Age ≤ 30\n"
|
|
1922
|
+
#~ " d."
|
|
1923
|
+
#~ msgstr ""
|
|
1924
|
+
#~ "Età ≤ 30\n"
|
|
1925
|
+
#~ " g."
|
|
1926
|
+
|
|
1927
|
+
#~ msgid ""
|
|
1928
|
+
#~ "Age ≤ 60\n"
|
|
1929
|
+
#~ " d."
|
|
1930
|
+
#~ msgstr ""
|
|
1931
|
+
#~ "Età ≤ 60\n"
|
|
1932
|
+
#~ " g."
|
|
1933
|
+
|
|
1934
|
+
#~ msgid ""
|
|
1935
|
+
#~ "Age ≤ 90\n"
|
|
1936
|
+
#~ " d."
|
|
1937
|
+
#~ msgstr ""
|
|
1938
|
+
#~ "Età ≤ 90\n"
|
|
1939
|
+
#~ " g."
|
|
1940
|
+
|
|
1823
1941
|
#~ msgid "Child Accounts"
|
|
1824
1942
|
#~ msgstr "Conti figli"
|
|
1825
1943
|
|
|
@@ -1949,9 +2067,6 @@ msgstr ""
|
|
|
1949
2067
|
#~ msgid "Label"
|
|
1950
2068
|
#~ msgstr "Etichetta"
|
|
1951
2069
|
|
|
1952
|
-
#~ msgid "Line"
|
|
1953
|
-
#~ msgstr "Riga"
|
|
1954
|
-
|
|
1955
2070
|
#~ msgid "Matching Number"
|
|
1956
2071
|
#~ msgstr "Numero abbinamento"
|
|
1957
2072
|
|