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
|
@@ -55,6 +55,11 @@ msgstr "91 - 120 d."
|
|
|
55
55
|
msgid "<b>Taxes summary</b>"
|
|
56
56
|
msgstr "<b>Belasting samenvatting</b>"
|
|
57
57
|
|
|
58
|
+
#. module: account_financial_report
|
|
59
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
60
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
61
|
+
msgstr ""
|
|
62
|
+
|
|
58
63
|
#. module: account_financial_report
|
|
59
64
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
60
65
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -95,6 +100,11 @@ msgstr "Abstract XLSX Account Financial Report"
|
|
|
95
100
|
msgid "Account"
|
|
96
101
|
msgstr "Rekening"
|
|
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
|
|
@@ -156,14 +166,17 @@ msgstr "Activeer centralisatie"
|
|
|
156
166
|
msgid "Additional Filtering"
|
|
157
167
|
msgstr "Aanvullende filters"
|
|
158
168
|
|
|
169
|
+
#. module: account_financial_report
|
|
170
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
171
|
+
msgid "Age Partner Report Configuration"
|
|
172
|
+
msgstr ""
|
|
173
|
+
|
|
159
174
|
#. module: account_financial_report
|
|
160
175
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
161
176
|
msgid ""
|
|
162
177
|
"Age ≤ 120\n"
|
|
163
|
-
"
|
|
178
|
+
" d."
|
|
164
179
|
msgstr ""
|
|
165
|
-
"Leeftijd ≤ 120\n"
|
|
166
|
-
" d."
|
|
167
180
|
|
|
168
181
|
#. module: account_financial_report
|
|
169
182
|
#. odoo-python
|
|
@@ -176,10 +189,8 @@ msgstr "Vv. ≤ 120 d."
|
|
|
176
189
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
177
190
|
msgid ""
|
|
178
191
|
"Age ≤ 30\n"
|
|
179
|
-
"
|
|
192
|
+
" d."
|
|
180
193
|
msgstr ""
|
|
181
|
-
"Leeftijd ≤ 30\n"
|
|
182
|
-
" d."
|
|
183
194
|
|
|
184
195
|
#. module: account_financial_report
|
|
185
196
|
#. odoo-python
|
|
@@ -192,10 +203,8 @@ msgstr "Vv. ≤ 30 d."
|
|
|
192
203
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
193
204
|
msgid ""
|
|
194
205
|
"Age ≤ 60\n"
|
|
195
|
-
"
|
|
206
|
+
" d."
|
|
196
207
|
msgstr ""
|
|
197
|
-
"Leeftijd ≤ 60\n"
|
|
198
|
-
" d."
|
|
199
208
|
|
|
200
209
|
#. module: account_financial_report
|
|
201
210
|
#. odoo-python
|
|
@@ -208,10 +217,8 @@ msgstr "Vv. ≤ 60 d."
|
|
|
208
217
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
209
218
|
msgid ""
|
|
210
219
|
"Age ≤ 90\n"
|
|
211
|
-
"
|
|
220
|
+
" d."
|
|
212
221
|
msgstr ""
|
|
213
|
-
"Leeftijd ≤ 90\n"
|
|
214
|
-
" d."
|
|
215
222
|
|
|
216
223
|
#. module: account_financial_report
|
|
217
224
|
#. odoo-python
|
|
@@ -429,6 +436,7 @@ msgstr "Code"
|
|
|
429
436
|
#. module: account_financial_report
|
|
430
437
|
#. odoo-python
|
|
431
438
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
439
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
432
440
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
433
441
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
434
442
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -446,6 +454,18 @@ msgid "Compute accounts"
|
|
|
446
454
|
msgstr "Bereken rekeningen"
|
|
447
455
|
|
|
448
456
|
#. module: account_financial_report
|
|
457
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
458
|
+
msgid "Config Settings"
|
|
459
|
+
msgstr ""
|
|
460
|
+
|
|
461
|
+
#. module: account_financial_report
|
|
462
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
463
|
+
msgid "Configurations"
|
|
464
|
+
msgstr ""
|
|
465
|
+
|
|
466
|
+
#. module: account_financial_report
|
|
467
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
468
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
449
469
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
450
470
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
451
471
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -456,6 +476,8 @@ msgid "Created by"
|
|
|
456
476
|
msgstr "Gecreëerd door"
|
|
457
477
|
|
|
458
478
|
#. module: account_financial_report
|
|
479
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
480
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
459
481
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
460
482
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
461
483
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -644,6 +666,8 @@ msgid "Detail Taxes"
|
|
|
644
666
|
msgstr "Detail belastingen"
|
|
645
667
|
|
|
646
668
|
#. module: account_financial_report
|
|
669
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
670
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
647
671
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
648
672
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
649
673
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -932,6 +956,12 @@ msgstr "Groepeer boekingen per"
|
|
|
932
956
|
msgid "Grouped By"
|
|
933
957
|
msgstr "Gegroepeerd op"
|
|
934
958
|
|
|
959
|
+
#. module: account_financial_report
|
|
960
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
961
|
+
msgid ""
|
|
962
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
963
|
+
msgstr ""
|
|
964
|
+
|
|
935
965
|
#. module: account_financial_report
|
|
936
966
|
#. odoo-python
|
|
937
967
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -961,6 +991,8 @@ msgid "Hierarchy Levels to display"
|
|
|
961
991
|
msgstr "Hierarchie niveaus om weer te geven"
|
|
962
992
|
|
|
963
993
|
#. module: account_financial_report
|
|
994
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
995
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
964
996
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
965
997
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
966
998
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -979,6 +1011,18 @@ msgstr ""
|
|
|
979
1011
|
"Als dit is geselecteerd, worden er geen details weergegeven in het Grootboek "
|
|
980
1012
|
"rapport (alleen de webkit), enkel gecentraliseerde bedragen per periode."
|
|
981
1013
|
|
|
1014
|
+
#. module: account_financial_report
|
|
1015
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
1016
|
+
msgid "Inferior Limit"
|
|
1017
|
+
msgstr ""
|
|
1018
|
+
|
|
1019
|
+
#. module: account_financial_report
|
|
1020
|
+
#. odoo-python
|
|
1021
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1022
|
+
#, python-format
|
|
1023
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1024
|
+
msgstr ""
|
|
1025
|
+
|
|
982
1026
|
#. module: account_financial_report
|
|
983
1027
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
984
1028
|
msgid ""
|
|
@@ -1006,6 +1050,12 @@ msgstr ""
|
|
|
1006
1050
|
msgid "Initial balance"
|
|
1007
1051
|
msgstr "Beginbalans"
|
|
1008
1052
|
|
|
1053
|
+
#. module: account_financial_report
|
|
1054
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1055
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1056
|
+
msgid "Intervals configuration"
|
|
1057
|
+
msgstr ""
|
|
1058
|
+
|
|
1009
1059
|
#. module: account_financial_report
|
|
1010
1060
|
#. odoo-python
|
|
1011
1061
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -1075,6 +1125,8 @@ msgid "Journals"
|
|
|
1075
1125
|
msgstr "Dagboeken"
|
|
1076
1126
|
|
|
1077
1127
|
#. module: account_financial_report
|
|
1128
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1129
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1078
1130
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1079
1131
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1080
1132
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1085,6 +1137,8 @@ msgid "Last Modified on"
|
|
|
1085
1137
|
msgstr "Laatst Gewijzigd op"
|
|
1086
1138
|
|
|
1087
1139
|
#. module: account_financial_report
|
|
1140
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1141
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1088
1142
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1089
1143
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1090
1144
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1095,6 +1149,8 @@ msgid "Last Updated by"
|
|
|
1095
1149
|
msgstr "Laatst bijgewerkt door"
|
|
1096
1150
|
|
|
1097
1151
|
#. module: account_financial_report
|
|
1152
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1153
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1098
1154
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1099
1155
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1100
1156
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1126,6 +1182,11 @@ msgstr "Niveau %s"
|
|
|
1126
1182
|
msgid "Limit hierarchy levels"
|
|
1127
1183
|
msgstr "beperk hirarchie niveaus"
|
|
1128
1184
|
|
|
1185
|
+
#. module: account_financial_report
|
|
1186
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1187
|
+
msgid "Line"
|
|
1188
|
+
msgstr "Regel"
|
|
1189
|
+
|
|
1129
1190
|
#. module: account_financial_report
|
|
1130
1191
|
#. odoo-python
|
|
1131
1192
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
@@ -1135,6 +1196,16 @@ msgstr "beperk hirarchie niveaus"
|
|
|
1135
1196
|
msgid "Missing Partner"
|
|
1136
1197
|
msgstr ""
|
|
1137
1198
|
|
|
1199
|
+
#. module: account_financial_report
|
|
1200
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1201
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1202
|
+
msgstr ""
|
|
1203
|
+
|
|
1204
|
+
#. module: account_financial_report
|
|
1205
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1206
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1207
|
+
msgstr ""
|
|
1208
|
+
|
|
1138
1209
|
#. module: account_financial_report
|
|
1139
1210
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1140
1211
|
msgid "Move Target"
|
|
@@ -1145,10 +1216,19 @@ msgstr "Boeking doel"
|
|
|
1145
1216
|
msgid "Moves"
|
|
1146
1217
|
msgstr "Boekingen"
|
|
1147
1218
|
|
|
1219
|
+
#. module: account_financial_report
|
|
1220
|
+
#. odoo-python
|
|
1221
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1222
|
+
#, python-format
|
|
1223
|
+
msgid "Must complete Configuration Lines"
|
|
1224
|
+
msgstr ""
|
|
1225
|
+
|
|
1148
1226
|
#. module: account_financial_report
|
|
1149
1227
|
#. odoo-python
|
|
1150
1228
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1151
1229
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1230
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1231
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1152
1232
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1153
1233
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1154
1234
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1156,6 +1236,14 @@ msgstr "Boekingen"
|
|
|
1156
1236
|
msgid "Name"
|
|
1157
1237
|
msgstr "Naam"
|
|
1158
1238
|
|
|
1239
|
+
#. module: account_financial_report
|
|
1240
|
+
#. odoo-python
|
|
1241
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1242
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1243
|
+
#, python-format
|
|
1244
|
+
msgid "Name must be unique per report configuration"
|
|
1245
|
+
msgstr ""
|
|
1246
|
+
|
|
1159
1247
|
#. module: account_financial_report
|
|
1160
1248
|
#. odoo-python
|
|
1161
1249
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
@@ -1212,6 +1300,11 @@ msgstr "Ongeboekt"
|
|
|
1212
1300
|
msgid "Not due"
|
|
1213
1301
|
msgstr "Niet vervallen"
|
|
1214
1302
|
|
|
1303
|
+
#. module: account_financial_report
|
|
1304
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1305
|
+
msgid "OCA Aged Report Configuration"
|
|
1306
|
+
msgstr ""
|
|
1307
|
+
|
|
1215
1308
|
#. module: account_financial_report
|
|
1216
1309
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1217
1310
|
msgid "OCA accounting reports"
|
|
@@ -1842,7 +1935,6 @@ msgid "future"
|
|
|
1842
1935
|
msgstr "toekomstig"
|
|
1843
1936
|
|
|
1844
1937
|
#. module: account_financial_report
|
|
1845
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1846
1938
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1847
1939
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1848
1940
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1891,6 +1983,34 @@ msgstr "breedte: 38.92%;"
|
|
|
1891
1983
|
msgid "width: 8.11%;"
|
|
1892
1984
|
msgstr "breedte: 8.11%;"
|
|
1893
1985
|
|
|
1986
|
+
#~ msgid ""
|
|
1987
|
+
#~ "Age ≤ 120\n"
|
|
1988
|
+
#~ " d."
|
|
1989
|
+
#~ msgstr ""
|
|
1990
|
+
#~ "Leeftijd ≤ 120\n"
|
|
1991
|
+
#~ " d."
|
|
1992
|
+
|
|
1993
|
+
#~ msgid ""
|
|
1994
|
+
#~ "Age ≤ 30\n"
|
|
1995
|
+
#~ " d."
|
|
1996
|
+
#~ msgstr ""
|
|
1997
|
+
#~ "Leeftijd ≤ 30\n"
|
|
1998
|
+
#~ " d."
|
|
1999
|
+
|
|
2000
|
+
#~ msgid ""
|
|
2001
|
+
#~ "Age ≤ 60\n"
|
|
2002
|
+
#~ " d."
|
|
2003
|
+
#~ msgstr ""
|
|
2004
|
+
#~ "Leeftijd ≤ 60\n"
|
|
2005
|
+
#~ " d."
|
|
2006
|
+
|
|
2007
|
+
#~ msgid ""
|
|
2008
|
+
#~ "Age ≤ 90\n"
|
|
2009
|
+
#~ " d."
|
|
2010
|
+
#~ msgstr ""
|
|
2011
|
+
#~ "Leeftijd ≤ 90\n"
|
|
2012
|
+
#~ " d."
|
|
2013
|
+
|
|
1894
2014
|
#, fuzzy
|
|
1895
2015
|
#~ msgid "Filter analytic tags"
|
|
1896
2016
|
#~ msgstr "Filter rekeningen"
|
|
@@ -2100,9 +2220,6 @@ msgstr "breedte: 8.11%;"
|
|
|
2100
2220
|
#~ msgid "Label"
|
|
2101
2221
|
#~ msgstr "Label"
|
|
2102
2222
|
|
|
2103
|
-
#~ msgid "Line"
|
|
2104
|
-
#~ msgstr "Regel"
|
|
2105
|
-
|
|
2106
2223
|
#~ msgid "Matching Number"
|
|
2107
2224
|
#~ msgstr "Overeenkomend nummer"
|
|
2108
2225
|
|
|
@@ -55,6 +55,11 @@ msgstr ""
|
|
|
55
55
|
msgid "<b>Taxes summary</b>"
|
|
56
56
|
msgstr ""
|
|
57
57
|
|
|
58
|
+
#. module: account_financial_report
|
|
59
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
60
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
61
|
+
msgstr ""
|
|
62
|
+
|
|
58
63
|
#. module: account_financial_report
|
|
59
64
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
60
65
|
#: 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 "Rekening"
|
|
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
|
|
@@ -158,11 +168,16 @@ msgstr ""
|
|
|
158
168
|
msgid "Additional Filtering"
|
|
159
169
|
msgstr ""
|
|
160
170
|
|
|
171
|
+
#. module: account_financial_report
|
|
172
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
173
|
+
msgid "Age Partner Report Configuration"
|
|
174
|
+
msgstr ""
|
|
175
|
+
|
|
161
176
|
#. module: account_financial_report
|
|
162
177
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
163
178
|
msgid ""
|
|
164
179
|
"Age ≤ 120\n"
|
|
165
|
-
"
|
|
180
|
+
" d."
|
|
166
181
|
msgstr ""
|
|
167
182
|
|
|
168
183
|
#. module: account_financial_report
|
|
@@ -176,7 +191,7 @@ msgstr ""
|
|
|
176
191
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
177
192
|
msgid ""
|
|
178
193
|
"Age ≤ 30\n"
|
|
179
|
-
"
|
|
194
|
+
" d."
|
|
180
195
|
msgstr ""
|
|
181
196
|
|
|
182
197
|
#. module: account_financial_report
|
|
@@ -190,7 +205,7 @@ msgstr ""
|
|
|
190
205
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
191
206
|
msgid ""
|
|
192
207
|
"Age ≤ 60\n"
|
|
193
|
-
"
|
|
208
|
+
" d."
|
|
194
209
|
msgstr ""
|
|
195
210
|
|
|
196
211
|
#. module: account_financial_report
|
|
@@ -204,7 +219,7 @@ msgstr ""
|
|
|
204
219
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
205
220
|
msgid ""
|
|
206
221
|
"Age ≤ 90\n"
|
|
207
|
-
"
|
|
222
|
+
" d."
|
|
208
223
|
msgstr ""
|
|
209
224
|
|
|
210
225
|
#. module: account_financial_report
|
|
@@ -428,6 +443,7 @@ msgstr ""
|
|
|
428
443
|
#. module: account_financial_report
|
|
429
444
|
#. odoo-python
|
|
430
445
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
446
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
431
447
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
432
448
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
433
449
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -445,6 +461,18 @@ msgid "Compute accounts"
|
|
|
445
461
|
msgstr ""
|
|
446
462
|
|
|
447
463
|
#. module: account_financial_report
|
|
464
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
465
|
+
msgid "Config Settings"
|
|
466
|
+
msgstr ""
|
|
467
|
+
|
|
468
|
+
#. module: account_financial_report
|
|
469
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
470
|
+
msgid "Configurations"
|
|
471
|
+
msgstr ""
|
|
472
|
+
|
|
473
|
+
#. module: account_financial_report
|
|
474
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
475
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
448
476
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
449
477
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
450
478
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -455,6 +483,8 @@ msgid "Created by"
|
|
|
455
483
|
msgstr ""
|
|
456
484
|
|
|
457
485
|
#. module: account_financial_report
|
|
486
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
487
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
458
488
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
459
489
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
460
490
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -643,6 +673,8 @@ msgid "Detail Taxes"
|
|
|
643
673
|
msgstr ""
|
|
644
674
|
|
|
645
675
|
#. module: account_financial_report
|
|
676
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
677
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
646
678
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
647
679
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
648
680
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -918,6 +950,12 @@ msgstr ""
|
|
|
918
950
|
msgid "Grouped By"
|
|
919
951
|
msgstr ""
|
|
920
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
|
+
|
|
921
959
|
#. module: account_financial_report
|
|
922
960
|
#. odoo-python
|
|
923
961
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -947,6 +985,8 @@ msgid "Hierarchy Levels to display"
|
|
|
947
985
|
msgstr ""
|
|
948
986
|
|
|
949
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
|
|
950
990
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
951
991
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
952
992
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -963,6 +1003,18 @@ msgid ""
|
|
|
963
1003
|
"webkit one only), only centralized amounts per period."
|
|
964
1004
|
msgstr ""
|
|
965
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
|
+
|
|
966
1018
|
#. module: account_financial_report
|
|
967
1019
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
968
1020
|
msgid ""
|
|
@@ -986,6 +1038,12 @@ msgstr ""
|
|
|
986
1038
|
msgid "Initial balance"
|
|
987
1039
|
msgstr ""
|
|
988
1040
|
|
|
1041
|
+
#. module: account_financial_report
|
|
1042
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1043
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1044
|
+
msgid "Intervals configuration"
|
|
1045
|
+
msgstr ""
|
|
1046
|
+
|
|
989
1047
|
#. module: account_financial_report
|
|
990
1048
|
#. odoo-python
|
|
991
1049
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -1055,6 +1113,8 @@ msgid "Journals"
|
|
|
1055
1113
|
msgstr ""
|
|
1056
1114
|
|
|
1057
1115
|
#. module: account_financial_report
|
|
1116
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1117
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1058
1118
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1059
1119
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1060
1120
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1065,6 +1125,8 @@ msgid "Last Modified on"
|
|
|
1065
1125
|
msgstr ""
|
|
1066
1126
|
|
|
1067
1127
|
#. module: account_financial_report
|
|
1128
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1129
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1068
1130
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1069
1131
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1070
1132
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1075,6 +1137,8 @@ msgid "Last Updated by"
|
|
|
1075
1137
|
msgstr ""
|
|
1076
1138
|
|
|
1077
1139
|
#. module: account_financial_report
|
|
1140
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1141
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1078
1142
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1079
1143
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1080
1144
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1106,6 +1170,11 @@ msgstr ""
|
|
|
1106
1170
|
msgid "Limit hierarchy levels"
|
|
1107
1171
|
msgstr ""
|
|
1108
1172
|
|
|
1173
|
+
#. module: account_financial_report
|
|
1174
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1175
|
+
msgid "Line"
|
|
1176
|
+
msgstr ""
|
|
1177
|
+
|
|
1109
1178
|
#. module: account_financial_report
|
|
1110
1179
|
#. odoo-python
|
|
1111
1180
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
@@ -1115,6 +1184,16 @@ msgstr ""
|
|
|
1115
1184
|
msgid "Missing Partner"
|
|
1116
1185
|
msgstr ""
|
|
1117
1186
|
|
|
1187
|
+
#. module: account_financial_report
|
|
1188
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1189
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1190
|
+
msgstr ""
|
|
1191
|
+
|
|
1192
|
+
#. module: account_financial_report
|
|
1193
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1194
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1195
|
+
msgstr ""
|
|
1196
|
+
|
|
1118
1197
|
#. module: account_financial_report
|
|
1119
1198
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1120
1199
|
msgid "Move Target"
|
|
@@ -1125,10 +1204,19 @@ msgstr ""
|
|
|
1125
1204
|
msgid "Moves"
|
|
1126
1205
|
msgstr ""
|
|
1127
1206
|
|
|
1207
|
+
#. module: account_financial_report
|
|
1208
|
+
#. odoo-python
|
|
1209
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1210
|
+
#, python-format
|
|
1211
|
+
msgid "Must complete Configuration Lines"
|
|
1212
|
+
msgstr ""
|
|
1213
|
+
|
|
1128
1214
|
#. module: account_financial_report
|
|
1129
1215
|
#. odoo-python
|
|
1130
1216
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1131
1217
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1218
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1219
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1132
1220
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1133
1221
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1134
1222
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1136,6 +1224,14 @@ msgstr ""
|
|
|
1136
1224
|
msgid "Name"
|
|
1137
1225
|
msgstr ""
|
|
1138
1226
|
|
|
1227
|
+
#. module: account_financial_report
|
|
1228
|
+
#. odoo-python
|
|
1229
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1230
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1231
|
+
#, python-format
|
|
1232
|
+
msgid "Name must be unique per report configuration"
|
|
1233
|
+
msgstr ""
|
|
1234
|
+
|
|
1139
1235
|
#. module: account_financial_report
|
|
1140
1236
|
#. odoo-python
|
|
1141
1237
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
@@ -1192,6 +1288,11 @@ msgstr ""
|
|
|
1192
1288
|
msgid "Not due"
|
|
1193
1289
|
msgstr ""
|
|
1194
1290
|
|
|
1291
|
+
#. module: account_financial_report
|
|
1292
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1293
|
+
msgid "OCA Aged Report Configuration"
|
|
1294
|
+
msgstr ""
|
|
1295
|
+
|
|
1195
1296
|
#. module: account_financial_report
|
|
1196
1297
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1197
1298
|
msgid "OCA accounting reports"
|
|
@@ -1803,7 +1904,6 @@ msgid "future"
|
|
|
1803
1904
|
msgstr ""
|
|
1804
1905
|
|
|
1805
1906
|
#. module: account_financial_report
|
|
1806
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1807
1907
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1808
1908
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1809
1909
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|