odoo-addon-account-financial-report 16.0.1.5.4.4__py3-none-any.whl → 16.0.1.6.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 +105 -5
- odoo/addons/account_financial_report/i18n/ar.po +129 -12
- odoo/addons/account_financial_report/i18n/ca.po +133 -13
- odoo/addons/account_financial_report/i18n/de.po +133 -16
- odoo/addons/account_financial_report/i18n/es.po +142 -13
- odoo/addons/account_financial_report/i18n/es_AR.po +133 -13
- odoo/addons/account_financial_report/i18n/es_MX.po +105 -5
- odoo/addons/account_financial_report/i18n/fr.po +133 -16
- odoo/addons/account_financial_report/i18n/fr_CH.po +129 -12
- odoo/addons/account_financial_report/i18n/fr_FR.po +133 -13
- odoo/addons/account_financial_report/i18n/hr.po +133 -13
- odoo/addons/account_financial_report/i18n/hr_HR.po +105 -5
- odoo/addons/account_financial_report/i18n/it.po +133 -16
- odoo/addons/account_financial_report/i18n/ja.po +105 -5
- odoo/addons/account_financial_report/i18n/nl.po +133 -16
- odoo/addons/account_financial_report/i18n/nl_NL.po +105 -5
- odoo/addons/account_financial_report/i18n/pt.po +129 -9
- odoo/addons/account_financial_report/i18n/pt_BR.po +133 -16
- odoo/addons/account_financial_report/i18n/ro.po +133 -16
- odoo/addons/account_financial_report/i18n/sv.po +133 -13
- odoo/addons/account_financial_report/i18n/tr.po +105 -5
- 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 +69 -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 +88 -7
- odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +41 -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 -3
- {odoo_addon_account_financial_report-16.0.1.5.4.4.dist-info → odoo_addon_account_financial_report-16.0.1.6.0.1.dist-info}/METADATA +37 -2
- {odoo_addon_account_financial_report-16.0.1.5.4.4.dist-info → odoo_addon_account_financial_report-16.0.1.6.0.1.dist-info}/RECORD +46 -39
- {odoo_addon_account_financial_report-16.0.1.5.4.4.dist-info → odoo_addon_account_financial_report-16.0.1.6.0.1.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-16.0.1.5.4.4.dist-info → odoo_addon_account_financial_report-16.0.1.6.0.1.dist-info}/top_level.txt +0 -0
|
@@ -53,6 +53,11 @@ msgstr "91 - 120 d."
|
|
|
53
53
|
msgid "<b>Taxes summary</b>"
|
|
54
54
|
msgstr "<b>Sažetak poreza</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 "Apstraktni XLSX Financijski izvještaj"
|
|
|
93
98
|
msgid "Account"
|
|
94
99
|
msgstr "Konto"
|
|
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
|
|
@@ -155,14 +165,17 @@ msgstr "Aktiviraj centralizaciju"
|
|
|
155
165
|
msgid "Additional Filtering"
|
|
156
166
|
msgstr "Dodatno filtriranje"
|
|
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
|
-
"Dosp. ≤ 120\n"
|
|
165
|
-
" d."
|
|
166
179
|
|
|
167
180
|
#. module: account_financial_report
|
|
168
181
|
#. odoo-python
|
|
@@ -175,10 +188,8 @@ msgstr "Dosp. ≤ 120 d."
|
|
|
175
188
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
176
189
|
msgid ""
|
|
177
190
|
"Age ≤ 30\n"
|
|
178
|
-
"
|
|
191
|
+
" d."
|
|
179
192
|
msgstr ""
|
|
180
|
-
"Dosp. ≤ 30\n"
|
|
181
|
-
" d."
|
|
182
193
|
|
|
183
194
|
#. module: account_financial_report
|
|
184
195
|
#. odoo-python
|
|
@@ -191,10 +202,8 @@ msgstr "Dosp. ≤ 30 d."
|
|
|
191
202
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
192
203
|
msgid ""
|
|
193
204
|
"Age ≤ 60\n"
|
|
194
|
-
"
|
|
205
|
+
" d."
|
|
195
206
|
msgstr ""
|
|
196
|
-
"Dosp. ≤ 60\n"
|
|
197
|
-
" d."
|
|
198
207
|
|
|
199
208
|
#. module: account_financial_report
|
|
200
209
|
#. odoo-python
|
|
@@ -207,10 +216,8 @@ msgstr "Dosp. ≤ 60 d."
|
|
|
207
216
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
208
217
|
msgid ""
|
|
209
218
|
"Age ≤ 90\n"
|
|
210
|
-
"
|
|
219
|
+
" d."
|
|
211
220
|
msgstr ""
|
|
212
|
-
"Dosp. ≤ 90\n"
|
|
213
|
-
" d."
|
|
214
221
|
|
|
215
222
|
#. module: account_financial_report
|
|
216
223
|
#. odoo-python
|
|
@@ -428,6 +435,7 @@ msgstr "Šifra"
|
|
|
428
435
|
#. module: account_financial_report
|
|
429
436
|
#. odoo-python
|
|
430
437
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
438
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
431
439
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
432
440
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
433
441
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -445,6 +453,18 @@ msgid "Compute accounts"
|
|
|
445
453
|
msgstr "Izračunaj konta"
|
|
446
454
|
|
|
447
455
|
#. module: account_financial_report
|
|
456
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
457
|
+
msgid "Config Settings"
|
|
458
|
+
msgstr ""
|
|
459
|
+
|
|
460
|
+
#. module: account_financial_report
|
|
461
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
462
|
+
msgid "Configurations"
|
|
463
|
+
msgstr ""
|
|
464
|
+
|
|
465
|
+
#. module: account_financial_report
|
|
466
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
467
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
448
468
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
449
469
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
450
470
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -455,6 +475,8 @@ msgid "Created by"
|
|
|
455
475
|
msgstr "Kreirao"
|
|
456
476
|
|
|
457
477
|
#. module: account_financial_report
|
|
478
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
479
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
458
480
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
459
481
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
460
482
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -643,6 +665,8 @@ msgid "Detail Taxes"
|
|
|
643
665
|
msgstr "Pojedinosti poreza"
|
|
644
666
|
|
|
645
667
|
#. module: account_financial_report
|
|
668
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
669
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
646
670
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
647
671
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
648
672
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -926,6 +950,12 @@ msgstr "Grupiraj stavke po"
|
|
|
926
950
|
msgid "Grouped By"
|
|
927
951
|
msgstr "Grupirano po"
|
|
928
952
|
|
|
953
|
+
#. module: account_financial_report
|
|
954
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
955
|
+
msgid ""
|
|
956
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
957
|
+
msgstr ""
|
|
958
|
+
|
|
929
959
|
#. module: account_financial_report
|
|
930
960
|
#. odoo-python
|
|
931
961
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -955,6 +985,8 @@ msgid "Hierarchy Levels to display"
|
|
|
955
985
|
msgstr "Prikaži razinu strukture"
|
|
956
986
|
|
|
957
987
|
#. module: account_financial_report
|
|
988
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
989
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
958
990
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
959
991
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
960
992
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -971,6 +1003,18 @@ msgid ""
|
|
|
971
1003
|
"webkit one only), only centralized amounts per period."
|
|
972
1004
|
msgstr ""
|
|
973
1005
|
|
|
1006
|
+
#. module: account_financial_report
|
|
1007
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
1008
|
+
msgid "Inferior Limit"
|
|
1009
|
+
msgstr ""
|
|
1010
|
+
|
|
1011
|
+
#. module: account_financial_report
|
|
1012
|
+
#. odoo-python
|
|
1013
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1014
|
+
#, python-format
|
|
1015
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1016
|
+
msgstr ""
|
|
1017
|
+
|
|
974
1018
|
#. module: account_financial_report
|
|
975
1019
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
976
1020
|
msgid ""
|
|
@@ -998,6 +1042,12 @@ msgstr ""
|
|
|
998
1042
|
msgid "Initial balance"
|
|
999
1043
|
msgstr "Početni saldo"
|
|
1000
1044
|
|
|
1045
|
+
#. module: account_financial_report
|
|
1046
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1047
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1048
|
+
msgid "Intervals configuration"
|
|
1049
|
+
msgstr ""
|
|
1050
|
+
|
|
1001
1051
|
#. module: account_financial_report
|
|
1002
1052
|
#. odoo-python
|
|
1003
1053
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -1067,6 +1117,8 @@ msgid "Journals"
|
|
|
1067
1117
|
msgstr ""
|
|
1068
1118
|
|
|
1069
1119
|
#. module: account_financial_report
|
|
1120
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1121
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1070
1122
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1071
1123
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1072
1124
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1077,6 +1129,8 @@ msgid "Last Modified on"
|
|
|
1077
1129
|
msgstr ""
|
|
1078
1130
|
|
|
1079
1131
|
#. module: account_financial_report
|
|
1132
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1133
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1080
1134
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1081
1135
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1082
1136
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1087,6 +1141,8 @@ msgid "Last Updated by"
|
|
|
1087
1141
|
msgstr ""
|
|
1088
1142
|
|
|
1089
1143
|
#. module: account_financial_report
|
|
1144
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1145
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1090
1146
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1091
1147
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1092
1148
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1118,6 +1174,11 @@ msgstr ""
|
|
|
1118
1174
|
msgid "Limit hierarchy levels"
|
|
1119
1175
|
msgstr ""
|
|
1120
1176
|
|
|
1177
|
+
#. module: account_financial_report
|
|
1178
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1179
|
+
msgid "Line"
|
|
1180
|
+
msgstr ""
|
|
1181
|
+
|
|
1121
1182
|
#. module: account_financial_report
|
|
1122
1183
|
#. odoo-python
|
|
1123
1184
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
@@ -1127,6 +1188,16 @@ msgstr ""
|
|
|
1127
1188
|
msgid "Missing Partner"
|
|
1128
1189
|
msgstr ""
|
|
1129
1190
|
|
|
1191
|
+
#. module: account_financial_report
|
|
1192
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1193
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1194
|
+
msgstr ""
|
|
1195
|
+
|
|
1196
|
+
#. module: account_financial_report
|
|
1197
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1198
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1199
|
+
msgstr ""
|
|
1200
|
+
|
|
1130
1201
|
#. module: account_financial_report
|
|
1131
1202
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1132
1203
|
msgid "Move Target"
|
|
@@ -1137,10 +1208,19 @@ msgstr ""
|
|
|
1137
1208
|
msgid "Moves"
|
|
1138
1209
|
msgstr ""
|
|
1139
1210
|
|
|
1211
|
+
#. module: account_financial_report
|
|
1212
|
+
#. odoo-python
|
|
1213
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1214
|
+
#, python-format
|
|
1215
|
+
msgid "Must complete Configuration Lines"
|
|
1216
|
+
msgstr ""
|
|
1217
|
+
|
|
1140
1218
|
#. module: account_financial_report
|
|
1141
1219
|
#. odoo-python
|
|
1142
1220
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1143
1221
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1222
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1223
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1144
1224
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1145
1225
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1146
1226
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1148,6 +1228,14 @@ msgstr ""
|
|
|
1148
1228
|
msgid "Name"
|
|
1149
1229
|
msgstr "Naziv"
|
|
1150
1230
|
|
|
1231
|
+
#. module: account_financial_report
|
|
1232
|
+
#. odoo-python
|
|
1233
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1234
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1235
|
+
#, python-format
|
|
1236
|
+
msgid "Name must be unique per report configuration"
|
|
1237
|
+
msgstr ""
|
|
1238
|
+
|
|
1151
1239
|
#. module: account_financial_report
|
|
1152
1240
|
#. odoo-python
|
|
1153
1241
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
@@ -1204,6 +1292,11 @@ msgstr "Nije proknjiženo"
|
|
|
1204
1292
|
msgid "Not due"
|
|
1205
1293
|
msgstr "Nije dospjelo"
|
|
1206
1294
|
|
|
1295
|
+
#. module: account_financial_report
|
|
1296
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1297
|
+
msgid "OCA Aged Report Configuration"
|
|
1298
|
+
msgstr ""
|
|
1299
|
+
|
|
1207
1300
|
#. module: account_financial_report
|
|
1208
1301
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1209
1302
|
msgid "OCA accounting reports"
|
|
@@ -1812,7 +1905,6 @@ msgid "future"
|
|
|
1812
1905
|
msgstr "buduće"
|
|
1813
1906
|
|
|
1814
1907
|
#. module: account_financial_report
|
|
1815
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1816
1908
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1817
1909
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1818
1910
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1860,3 +1952,31 @@ msgstr "širina: 38.92%;"
|
|
|
1860
1952
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1861
1953
|
msgid "width: 8.11%;"
|
|
1862
1954
|
msgstr "širina: 8.11%;"
|
|
1955
|
+
|
|
1956
|
+
#~ msgid ""
|
|
1957
|
+
#~ "Age ≤ 120\n"
|
|
1958
|
+
#~ " d."
|
|
1959
|
+
#~ msgstr ""
|
|
1960
|
+
#~ "Dosp. ≤ 120\n"
|
|
1961
|
+
#~ " d."
|
|
1962
|
+
|
|
1963
|
+
#~ msgid ""
|
|
1964
|
+
#~ "Age ≤ 30\n"
|
|
1965
|
+
#~ " d."
|
|
1966
|
+
#~ msgstr ""
|
|
1967
|
+
#~ "Dosp. ≤ 30\n"
|
|
1968
|
+
#~ " d."
|
|
1969
|
+
|
|
1970
|
+
#~ msgid ""
|
|
1971
|
+
#~ "Age ≤ 60\n"
|
|
1972
|
+
#~ " d."
|
|
1973
|
+
#~ msgstr ""
|
|
1974
|
+
#~ "Dosp. ≤ 60\n"
|
|
1975
|
+
#~ " d."
|
|
1976
|
+
|
|
1977
|
+
#~ msgid ""
|
|
1978
|
+
#~ "Age ≤ 90\n"
|
|
1979
|
+
#~ " d."
|
|
1980
|
+
#~ msgstr ""
|
|
1981
|
+
#~ "Dosp. ≤ 90\n"
|
|
1982
|
+
#~ " d."
|
|
@@ -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
|
|
@@ -96,6 +101,11 @@ msgstr ""
|
|
|
96
101
|
msgid "Account"
|
|
97
102
|
msgstr "Konto"
|
|
98
103
|
|
|
104
|
+
#. module: account_financial_report
|
|
105
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
106
|
+
msgid "Account Age Report Config"
|
|
107
|
+
msgstr ""
|
|
108
|
+
|
|
99
109
|
#. module: account_financial_report
|
|
100
110
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
101
111
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -159,11 +169,16 @@ msgstr ""
|
|
|
159
169
|
msgid "Additional Filtering"
|
|
160
170
|
msgstr ""
|
|
161
171
|
|
|
172
|
+
#. module: account_financial_report
|
|
173
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
174
|
+
msgid "Age Partner Report Configuration"
|
|
175
|
+
msgstr ""
|
|
176
|
+
|
|
162
177
|
#. module: account_financial_report
|
|
163
178
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
164
179
|
msgid ""
|
|
165
180
|
"Age ≤ 120\n"
|
|
166
|
-
"
|
|
181
|
+
" d."
|
|
167
182
|
msgstr ""
|
|
168
183
|
|
|
169
184
|
#. module: account_financial_report
|
|
@@ -177,7 +192,7 @@ msgstr ""
|
|
|
177
192
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
178
193
|
msgid ""
|
|
179
194
|
"Age ≤ 30\n"
|
|
180
|
-
"
|
|
195
|
+
" d."
|
|
181
196
|
msgstr ""
|
|
182
197
|
|
|
183
198
|
#. module: account_financial_report
|
|
@@ -191,7 +206,7 @@ msgstr ""
|
|
|
191
206
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
192
207
|
msgid ""
|
|
193
208
|
"Age ≤ 60\n"
|
|
194
|
-
"
|
|
209
|
+
" d."
|
|
195
210
|
msgstr ""
|
|
196
211
|
|
|
197
212
|
#. module: account_financial_report
|
|
@@ -205,7 +220,7 @@ msgstr ""
|
|
|
205
220
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
206
221
|
msgid ""
|
|
207
222
|
"Age ≤ 90\n"
|
|
208
|
-
"
|
|
223
|
+
" d."
|
|
209
224
|
msgstr ""
|
|
210
225
|
|
|
211
226
|
#. module: account_financial_report
|
|
@@ -429,6 +444,7 @@ msgstr ""
|
|
|
429
444
|
#. module: account_financial_report
|
|
430
445
|
#. odoo-python
|
|
431
446
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
447
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
432
448
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
433
449
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
434
450
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -446,6 +462,18 @@ msgid "Compute accounts"
|
|
|
446
462
|
msgstr ""
|
|
447
463
|
|
|
448
464
|
#. module: account_financial_report
|
|
465
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
466
|
+
msgid "Config Settings"
|
|
467
|
+
msgstr ""
|
|
468
|
+
|
|
469
|
+
#. module: account_financial_report
|
|
470
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
471
|
+
msgid "Configurations"
|
|
472
|
+
msgstr ""
|
|
473
|
+
|
|
474
|
+
#. module: account_financial_report
|
|
475
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
476
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
449
477
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
450
478
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
451
479
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -456,6 +484,8 @@ msgid "Created by"
|
|
|
456
484
|
msgstr "Kreirao"
|
|
457
485
|
|
|
458
486
|
#. module: account_financial_report
|
|
487
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
488
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
459
489
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
460
490
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
461
491
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -644,6 +674,8 @@ msgid "Detail Taxes"
|
|
|
644
674
|
msgstr ""
|
|
645
675
|
|
|
646
676
|
#. module: account_financial_report
|
|
677
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
678
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
647
679
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
648
680
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
649
681
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -919,6 +951,12 @@ msgstr ""
|
|
|
919
951
|
msgid "Grouped By"
|
|
920
952
|
msgstr ""
|
|
921
953
|
|
|
954
|
+
#. module: account_financial_report
|
|
955
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
956
|
+
msgid ""
|
|
957
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
958
|
+
msgstr ""
|
|
959
|
+
|
|
922
960
|
#. module: account_financial_report
|
|
923
961
|
#. odoo-python
|
|
924
962
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -948,6 +986,8 @@ msgid "Hierarchy Levels to display"
|
|
|
948
986
|
msgstr ""
|
|
949
987
|
|
|
950
988
|
#. module: account_financial_report
|
|
989
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
990
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
951
991
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
952
992
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
953
993
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -964,6 +1004,18 @@ msgid ""
|
|
|
964
1004
|
"webkit one only), only centralized amounts per period."
|
|
965
1005
|
msgstr ""
|
|
966
1006
|
|
|
1007
|
+
#. module: account_financial_report
|
|
1008
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
1009
|
+
msgid "Inferior Limit"
|
|
1010
|
+
msgstr ""
|
|
1011
|
+
|
|
1012
|
+
#. module: account_financial_report
|
|
1013
|
+
#. odoo-python
|
|
1014
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1015
|
+
#, python-format
|
|
1016
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1017
|
+
msgstr ""
|
|
1018
|
+
|
|
967
1019
|
#. module: account_financial_report
|
|
968
1020
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
969
1021
|
msgid ""
|
|
@@ -987,6 +1039,12 @@ msgstr ""
|
|
|
987
1039
|
msgid "Initial balance"
|
|
988
1040
|
msgstr ""
|
|
989
1041
|
|
|
1042
|
+
#. module: account_financial_report
|
|
1043
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1044
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1045
|
+
msgid "Intervals configuration"
|
|
1046
|
+
msgstr ""
|
|
1047
|
+
|
|
990
1048
|
#. module: account_financial_report
|
|
991
1049
|
#. odoo-python
|
|
992
1050
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -1056,6 +1114,8 @@ msgid "Journals"
|
|
|
1056
1114
|
msgstr ""
|
|
1057
1115
|
|
|
1058
1116
|
#. module: account_financial_report
|
|
1117
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1118
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1059
1119
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1060
1120
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1061
1121
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1066,6 +1126,8 @@ msgid "Last Modified on"
|
|
|
1066
1126
|
msgstr ""
|
|
1067
1127
|
|
|
1068
1128
|
#. module: account_financial_report
|
|
1129
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1130
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1069
1131
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1070
1132
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1071
1133
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1076,6 +1138,8 @@ msgid "Last Updated by"
|
|
|
1076
1138
|
msgstr ""
|
|
1077
1139
|
|
|
1078
1140
|
#. module: account_financial_report
|
|
1141
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1142
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1079
1143
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1080
1144
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1081
1145
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1107,6 +1171,11 @@ msgstr ""
|
|
|
1107
1171
|
msgid "Limit hierarchy levels"
|
|
1108
1172
|
msgstr ""
|
|
1109
1173
|
|
|
1174
|
+
#. module: account_financial_report
|
|
1175
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1176
|
+
msgid "Line"
|
|
1177
|
+
msgstr ""
|
|
1178
|
+
|
|
1110
1179
|
#. module: account_financial_report
|
|
1111
1180
|
#. odoo-python
|
|
1112
1181
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
@@ -1116,6 +1185,16 @@ msgstr ""
|
|
|
1116
1185
|
msgid "Missing Partner"
|
|
1117
1186
|
msgstr ""
|
|
1118
1187
|
|
|
1188
|
+
#. module: account_financial_report
|
|
1189
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1190
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1191
|
+
msgstr ""
|
|
1192
|
+
|
|
1193
|
+
#. module: account_financial_report
|
|
1194
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1195
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1196
|
+
msgstr ""
|
|
1197
|
+
|
|
1119
1198
|
#. module: account_financial_report
|
|
1120
1199
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1121
1200
|
msgid "Move Target"
|
|
@@ -1126,10 +1205,19 @@ msgstr ""
|
|
|
1126
1205
|
msgid "Moves"
|
|
1127
1206
|
msgstr ""
|
|
1128
1207
|
|
|
1208
|
+
#. module: account_financial_report
|
|
1209
|
+
#. odoo-python
|
|
1210
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1211
|
+
#, python-format
|
|
1212
|
+
msgid "Must complete Configuration Lines"
|
|
1213
|
+
msgstr ""
|
|
1214
|
+
|
|
1129
1215
|
#. module: account_financial_report
|
|
1130
1216
|
#. odoo-python
|
|
1131
1217
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1132
1218
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1219
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1220
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1133
1221
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1134
1222
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1135
1223
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1137,6 +1225,14 @@ msgstr ""
|
|
|
1137
1225
|
msgid "Name"
|
|
1138
1226
|
msgstr ""
|
|
1139
1227
|
|
|
1228
|
+
#. module: account_financial_report
|
|
1229
|
+
#. odoo-python
|
|
1230
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1231
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1232
|
+
#, python-format
|
|
1233
|
+
msgid "Name must be unique per report configuration"
|
|
1234
|
+
msgstr ""
|
|
1235
|
+
|
|
1140
1236
|
#. module: account_financial_report
|
|
1141
1237
|
#. odoo-python
|
|
1142
1238
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
@@ -1193,6 +1289,11 @@ msgstr ""
|
|
|
1193
1289
|
msgid "Not due"
|
|
1194
1290
|
msgstr ""
|
|
1195
1291
|
|
|
1292
|
+
#. module: account_financial_report
|
|
1293
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1294
|
+
msgid "OCA Aged Report Configuration"
|
|
1295
|
+
msgstr ""
|
|
1296
|
+
|
|
1196
1297
|
#. module: account_financial_report
|
|
1197
1298
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1198
1299
|
msgid "OCA accounting reports"
|
|
@@ -1807,7 +1908,6 @@ msgid "future"
|
|
|
1807
1908
|
msgstr ""
|
|
1808
1909
|
|
|
1809
1910
|
#. module: account_financial_report
|
|
1810
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1811
1911
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1812
1912
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1813
1913
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|