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
|
@@ -55,6 +55,11 @@ msgstr "91 - 120 d."
|
|
|
55
55
|
msgid "<b>Taxes summary</b>"
|
|
56
56
|
msgstr "<B>Resum d'impostos</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
|
|
@@ -94,6 +99,11 @@ msgstr "Resumen XLSX Informe financiero de la cuenta"
|
|
|
94
99
|
msgid "Account"
|
|
95
100
|
msgstr "Compte"
|
|
96
101
|
|
|
102
|
+
#. module: account_financial_report
|
|
103
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
104
|
+
msgid "Account Age Report Config"
|
|
105
|
+
msgstr ""
|
|
106
|
+
|
|
97
107
|
#. module: account_financial_report
|
|
98
108
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
99
109
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -152,14 +162,17 @@ msgstr "Activar centralització"
|
|
|
152
162
|
msgid "Additional Filtering"
|
|
153
163
|
msgstr "Filtrat addicional"
|
|
154
164
|
|
|
165
|
+
#. module: account_financial_report
|
|
166
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
167
|
+
msgid "Age Partner Report Configuration"
|
|
168
|
+
msgstr ""
|
|
169
|
+
|
|
155
170
|
#. module: account_financial_report
|
|
156
171
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
157
172
|
msgid ""
|
|
158
173
|
"Age ≤ 120\n"
|
|
159
|
-
"
|
|
174
|
+
" d."
|
|
160
175
|
msgstr ""
|
|
161
|
-
"Antiguitat ≤ 120\n"
|
|
162
|
-
" d."
|
|
163
176
|
|
|
164
177
|
#. module: account_financial_report
|
|
165
178
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -171,10 +184,8 @@ msgstr "Antiguitat ≤ 120 d."
|
|
|
171
184
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
172
185
|
msgid ""
|
|
173
186
|
"Age ≤ 30\n"
|
|
174
|
-
"
|
|
187
|
+
" d."
|
|
175
188
|
msgstr ""
|
|
176
|
-
"Antiguitat ≤ 30\n"
|
|
177
|
-
" d."
|
|
178
189
|
|
|
179
190
|
#. module: account_financial_report
|
|
180
191
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -186,10 +197,8 @@ msgstr "Antiguitat ≤ 30 d."
|
|
|
186
197
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
187
198
|
msgid ""
|
|
188
199
|
"Age ≤ 60\n"
|
|
189
|
-
"
|
|
200
|
+
" d."
|
|
190
201
|
msgstr ""
|
|
191
|
-
"Antiguitat ≤ 60\n"
|
|
192
|
-
" d."
|
|
193
202
|
|
|
194
203
|
#. module: account_financial_report
|
|
195
204
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -201,10 +210,8 @@ msgstr "Antiguitat ≤ 60 d."
|
|
|
201
210
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
202
211
|
msgid ""
|
|
203
212
|
"Age ≤ 90\n"
|
|
204
|
-
"
|
|
213
|
+
" d."
|
|
205
214
|
msgstr ""
|
|
206
|
-
"Antiguitat ≤ 90\n"
|
|
207
|
-
" d."
|
|
208
215
|
|
|
209
216
|
#. module: account_financial_report
|
|
210
217
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -402,6 +409,7 @@ msgstr "Codi"
|
|
|
402
409
|
|
|
403
410
|
#. module: account_financial_report
|
|
404
411
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
412
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
405
413
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
406
414
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
407
415
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -419,6 +427,18 @@ msgid "Compute accounts"
|
|
|
419
427
|
msgstr "Calcula comptes"
|
|
420
428
|
|
|
421
429
|
#. module: account_financial_report
|
|
430
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
431
|
+
msgid "Config Settings"
|
|
432
|
+
msgstr ""
|
|
433
|
+
|
|
434
|
+
#. module: account_financial_report
|
|
435
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
436
|
+
msgid "Configurations"
|
|
437
|
+
msgstr ""
|
|
438
|
+
|
|
439
|
+
#. module: account_financial_report
|
|
440
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
441
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
422
442
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
423
443
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
424
444
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -429,6 +449,8 @@ msgid "Created by"
|
|
|
429
449
|
msgstr "Creat per "
|
|
430
450
|
|
|
431
451
|
#. module: account_financial_report
|
|
452
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
453
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
432
454
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
433
455
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
434
456
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -602,6 +624,8 @@ msgid "Detail Taxes"
|
|
|
602
624
|
msgstr "Detall d'impostos"
|
|
603
625
|
|
|
604
626
|
#. module: account_financial_report
|
|
627
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
628
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
605
629
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
606
630
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
607
631
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -887,6 +911,12 @@ msgstr "Agrupar apunts per"
|
|
|
887
911
|
msgid "Grouped By"
|
|
888
912
|
msgstr ""
|
|
889
913
|
|
|
914
|
+
#. module: account_financial_report
|
|
915
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
916
|
+
msgid ""
|
|
917
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
918
|
+
msgstr ""
|
|
919
|
+
|
|
890
920
|
#. module: account_financial_report
|
|
891
921
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
892
922
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -915,6 +945,8 @@ msgid "Hierarchy Levels to display"
|
|
|
915
945
|
msgstr "Nivells de jerarquia a mostrar"
|
|
916
946
|
|
|
917
947
|
#. module: account_financial_report
|
|
948
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
949
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
918
950
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
919
951
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
920
952
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -933,6 +965,17 @@ msgstr ""
|
|
|
933
965
|
"Si es marca, no es mostraran els detalls a l'informe del llibre major (només "
|
|
934
966
|
"el webkit), només imports centralitzats per període."
|
|
935
967
|
|
|
968
|
+
#. module: account_financial_report
|
|
969
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
970
|
+
msgid "Inferior Limit"
|
|
971
|
+
msgstr ""
|
|
972
|
+
|
|
973
|
+
#. module: account_financial_report
|
|
974
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
975
|
+
#, python-format
|
|
976
|
+
msgid "Inferior Limit must be greather than zero"
|
|
977
|
+
msgstr ""
|
|
978
|
+
|
|
936
979
|
#. module: account_financial_report
|
|
937
980
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
938
981
|
#, fuzzy
|
|
@@ -960,6 +1003,12 @@ msgstr ""
|
|
|
960
1003
|
msgid "Initial balance"
|
|
961
1004
|
msgstr "Saldo inicial"
|
|
962
1005
|
|
|
1006
|
+
#. module: account_financial_report
|
|
1007
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1008
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1009
|
+
msgid "Intervals configuration"
|
|
1010
|
+
msgstr ""
|
|
1011
|
+
|
|
963
1012
|
#. module: account_financial_report
|
|
964
1013
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
965
1014
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -1026,6 +1075,8 @@ msgid "Journals"
|
|
|
1026
1075
|
msgstr "Diaris"
|
|
1027
1076
|
|
|
1028
1077
|
#. module: account_financial_report
|
|
1078
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1079
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1029
1080
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1030
1081
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1031
1082
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1036,6 +1087,8 @@ msgid "Last Modified on"
|
|
|
1036
1087
|
msgstr "Última modificació a "
|
|
1037
1088
|
|
|
1038
1089
|
#. module: account_financial_report
|
|
1090
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1091
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1039
1092
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1040
1093
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1041
1094
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1046,6 +1099,8 @@ msgid "Last Updated by"
|
|
|
1046
1099
|
msgstr "Última actualització per "
|
|
1047
1100
|
|
|
1048
1101
|
#. module: account_financial_report
|
|
1102
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1103
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1049
1104
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1050
1105
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1051
1106
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1075,6 +1130,11 @@ msgstr "Nivell %s"
|
|
|
1075
1130
|
msgid "Limit hierarchy levels"
|
|
1076
1131
|
msgstr "Limita nivells de jerarquia"
|
|
1077
1132
|
|
|
1133
|
+
#. module: account_financial_report
|
|
1134
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1135
|
+
msgid "Line"
|
|
1136
|
+
msgstr ""
|
|
1137
|
+
|
|
1078
1138
|
#. module: account_financial_report
|
|
1079
1139
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1080
1140
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
@@ -1083,6 +1143,16 @@ msgstr "Limita nivells de jerarquia"
|
|
|
1083
1143
|
msgid "Missing Partner"
|
|
1084
1144
|
msgstr ""
|
|
1085
1145
|
|
|
1146
|
+
#. module: account_financial_report
|
|
1147
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1148
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1149
|
+
msgstr ""
|
|
1150
|
+
|
|
1151
|
+
#. module: account_financial_report
|
|
1152
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1153
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1154
|
+
msgstr ""
|
|
1155
|
+
|
|
1086
1156
|
#. module: account_financial_report
|
|
1087
1157
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1088
1158
|
msgid "Move Target"
|
|
@@ -1093,9 +1163,17 @@ msgstr ""
|
|
|
1093
1163
|
msgid "Moves"
|
|
1094
1164
|
msgstr "Assentaments"
|
|
1095
1165
|
|
|
1166
|
+
#. module: account_financial_report
|
|
1167
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1168
|
+
#, python-format
|
|
1169
|
+
msgid "Must complete Configuration Lines"
|
|
1170
|
+
msgstr ""
|
|
1171
|
+
|
|
1096
1172
|
#. module: account_financial_report
|
|
1097
1173
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1098
1174
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1175
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1176
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1099
1177
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1100
1178
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1101
1179
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1103,6 +1181,13 @@ msgstr "Assentaments"
|
|
|
1103
1181
|
msgid "Name"
|
|
1104
1182
|
msgstr "Nom"
|
|
1105
1183
|
|
|
1184
|
+
#. module: account_financial_report
|
|
1185
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1186
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1187
|
+
#, python-format
|
|
1188
|
+
msgid "Name must be unique per report configuration"
|
|
1189
|
+
msgstr ""
|
|
1190
|
+
|
|
1106
1191
|
#. module: account_financial_report
|
|
1107
1192
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1108
1193
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1154,6 +1239,11 @@ msgstr "No confirmat"
|
|
|
1154
1239
|
msgid "Not due"
|
|
1155
1240
|
msgstr "No vençut"
|
|
1156
1241
|
|
|
1242
|
+
#. module: account_financial_report
|
|
1243
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1244
|
+
msgid "OCA Aged Report Configuration"
|
|
1245
|
+
msgstr ""
|
|
1246
|
+
|
|
1157
1247
|
#. module: account_financial_report
|
|
1158
1248
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1159
1249
|
msgid "OCA accounting reports"
|
|
@@ -1816,6 +1906,34 @@ msgstr "ample: 38.92%;"
|
|
|
1816
1906
|
msgid "width: 8.11%;"
|
|
1817
1907
|
msgstr "ample: 8.11%;"
|
|
1818
1908
|
|
|
1909
|
+
#~ msgid ""
|
|
1910
|
+
#~ "Age ≤ 120\n"
|
|
1911
|
+
#~ " d."
|
|
1912
|
+
#~ msgstr ""
|
|
1913
|
+
#~ "Antiguitat ≤ 120\n"
|
|
1914
|
+
#~ " d."
|
|
1915
|
+
|
|
1916
|
+
#~ msgid ""
|
|
1917
|
+
#~ "Age ≤ 30\n"
|
|
1918
|
+
#~ " d."
|
|
1919
|
+
#~ msgstr ""
|
|
1920
|
+
#~ "Antiguitat ≤ 30\n"
|
|
1921
|
+
#~ " d."
|
|
1922
|
+
|
|
1923
|
+
#~ msgid ""
|
|
1924
|
+
#~ "Age ≤ 60\n"
|
|
1925
|
+
#~ " d."
|
|
1926
|
+
#~ msgstr ""
|
|
1927
|
+
#~ "Antiguitat ≤ 60\n"
|
|
1928
|
+
#~ " d."
|
|
1929
|
+
|
|
1930
|
+
#~ msgid ""
|
|
1931
|
+
#~ "Age ≤ 90\n"
|
|
1932
|
+
#~ " d."
|
|
1933
|
+
#~ msgstr ""
|
|
1934
|
+
#~ "Antiguitat ≤ 90\n"
|
|
1935
|
+
#~ " d."
|
|
1936
|
+
|
|
1819
1937
|
#~ msgid "Child Accounts"
|
|
1820
1938
|
#~ msgstr "Comptes fill"
|
|
1821
1939
|
|
|
@@ -52,6 +52,11 @@ msgstr "91 - 120 d."
|
|
|
52
52
|
msgid "<b>Taxes summary</b>"
|
|
53
53
|
msgstr "<b>Momsoversigt</b>"
|
|
54
54
|
|
|
55
|
+
#. module: account_financial_report
|
|
56
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
57
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
58
|
+
msgstr ""
|
|
59
|
+
|
|
55
60
|
#. module: account_financial_report
|
|
56
61
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
57
62
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -91,6 +96,11 @@ msgstr "Abstrakt XLSX Regnskabs Finans Rapport"
|
|
|
91
96
|
msgid "Account"
|
|
92
97
|
msgstr "Konto"
|
|
93
98
|
|
|
99
|
+
#. module: account_financial_report
|
|
100
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
101
|
+
msgid "Account Age Report Config"
|
|
102
|
+
msgstr ""
|
|
103
|
+
|
|
94
104
|
#. module: account_financial_report
|
|
95
105
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
96
106
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -149,14 +159,17 @@ msgstr "Aktivér centralisering"
|
|
|
149
159
|
msgid "Additional Filtering"
|
|
150
160
|
msgstr "Yderligere filtrering"
|
|
151
161
|
|
|
162
|
+
#. module: account_financial_report
|
|
163
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
164
|
+
msgid "Age Partner Report Configuration"
|
|
165
|
+
msgstr ""
|
|
166
|
+
|
|
152
167
|
#. module: account_financial_report
|
|
153
168
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
154
169
|
msgid ""
|
|
155
170
|
"Age ≤ 120\n"
|
|
156
|
-
"
|
|
171
|
+
" d."
|
|
157
172
|
msgstr ""
|
|
158
|
-
"Alder ≤ 120\n"
|
|
159
|
-
" d."
|
|
160
173
|
|
|
161
174
|
#. module: account_financial_report
|
|
162
175
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -168,10 +181,8 @@ msgstr "Alder ≤ 120 d."
|
|
|
168
181
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
169
182
|
msgid ""
|
|
170
183
|
"Age ≤ 30\n"
|
|
171
|
-
"
|
|
184
|
+
" d."
|
|
172
185
|
msgstr ""
|
|
173
|
-
"Alder ≤ 30\n"
|
|
174
|
-
" d."
|
|
175
186
|
|
|
176
187
|
#. module: account_financial_report
|
|
177
188
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -183,10 +194,8 @@ msgstr "Alder ≤ 30 d."
|
|
|
183
194
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
184
195
|
msgid ""
|
|
185
196
|
"Age ≤ 60\n"
|
|
186
|
-
"
|
|
197
|
+
" d."
|
|
187
198
|
msgstr ""
|
|
188
|
-
"Alder ≤ 60\n"
|
|
189
|
-
" d."
|
|
190
199
|
|
|
191
200
|
#. module: account_financial_report
|
|
192
201
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -198,10 +207,8 @@ msgstr "Alder ≤ 60 d."
|
|
|
198
207
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
199
208
|
msgid ""
|
|
200
209
|
"Age ≤ 90\n"
|
|
201
|
-
"
|
|
210
|
+
" d."
|
|
202
211
|
msgstr ""
|
|
203
|
-
"Alder ≤ 90\n"
|
|
204
|
-
" d."
|
|
205
212
|
|
|
206
213
|
#. module: account_financial_report
|
|
207
214
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -399,6 +406,7 @@ msgstr "Kode"
|
|
|
399
406
|
|
|
400
407
|
#. module: account_financial_report
|
|
401
408
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
409
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
402
410
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
403
411
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
404
412
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -416,6 +424,18 @@ msgid "Compute accounts"
|
|
|
416
424
|
msgstr "Beregnede konti"
|
|
417
425
|
|
|
418
426
|
#. module: account_financial_report
|
|
427
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
428
|
+
msgid "Config Settings"
|
|
429
|
+
msgstr ""
|
|
430
|
+
|
|
431
|
+
#. module: account_financial_report
|
|
432
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
433
|
+
msgid "Configurations"
|
|
434
|
+
msgstr ""
|
|
435
|
+
|
|
436
|
+
#. module: account_financial_report
|
|
437
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
438
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
419
439
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
420
440
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
421
441
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -426,6 +446,8 @@ msgid "Created by"
|
|
|
426
446
|
msgstr "Oprettet af"
|
|
427
447
|
|
|
428
448
|
#. module: account_financial_report
|
|
449
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
450
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
429
451
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
430
452
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
431
453
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -599,6 +621,8 @@ msgid "Detail Taxes"
|
|
|
599
621
|
msgstr "Momsdetaljer"
|
|
600
622
|
|
|
601
623
|
#. module: account_financial_report
|
|
624
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
625
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
602
626
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
603
627
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
604
628
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -886,6 +910,12 @@ msgstr "Gruppér posteringer efter"
|
|
|
886
910
|
msgid "Grouped By"
|
|
887
911
|
msgstr "Gruppér efter"
|
|
888
912
|
|
|
913
|
+
#. module: account_financial_report
|
|
914
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
915
|
+
msgid ""
|
|
916
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
917
|
+
msgstr ""
|
|
918
|
+
|
|
889
919
|
#. module: account_financial_report
|
|
890
920
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
891
921
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -914,6 +944,8 @@ msgid "Hierarchy Levels to display"
|
|
|
914
944
|
msgstr "Hierarkiniveauer, der skal vises"
|
|
915
945
|
|
|
916
946
|
#. module: account_financial_report
|
|
947
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
948
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
917
949
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
918
950
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
919
951
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -932,6 +964,17 @@ msgstr ""
|
|
|
932
964
|
"Hvis markeret, vises ingen detaljer i rapporten General posteringsrapport "
|
|
933
965
|
"(kun webkit), kun centraliserede beløb pr. periode."
|
|
934
966
|
|
|
967
|
+
#. module: account_financial_report
|
|
968
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
969
|
+
msgid "Inferior Limit"
|
|
970
|
+
msgstr ""
|
|
971
|
+
|
|
972
|
+
#. module: account_financial_report
|
|
973
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
974
|
+
#, python-format
|
|
975
|
+
msgid "Inferior Limit must be greather than zero"
|
|
976
|
+
msgstr ""
|
|
977
|
+
|
|
935
978
|
#. module: account_financial_report
|
|
936
979
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
937
980
|
msgid ""
|
|
@@ -958,6 +1001,12 @@ msgstr ""
|
|
|
958
1001
|
msgid "Initial balance"
|
|
959
1002
|
msgstr "Initiel balance"
|
|
960
1003
|
|
|
1004
|
+
#. module: account_financial_report
|
|
1005
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1006
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1007
|
+
msgid "Intervals configuration"
|
|
1008
|
+
msgstr ""
|
|
1009
|
+
|
|
961
1010
|
#. module: account_financial_report
|
|
962
1011
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
963
1012
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -1024,6 +1073,8 @@ msgid "Journals"
|
|
|
1024
1073
|
msgstr "Journaler"
|
|
1025
1074
|
|
|
1026
1075
|
#. module: account_financial_report
|
|
1076
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1077
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1027
1078
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1028
1079
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1029
1080
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1034,6 +1085,8 @@ msgid "Last Modified on"
|
|
|
1034
1085
|
msgstr "Senest ændret den"
|
|
1035
1086
|
|
|
1036
1087
|
#. module: account_financial_report
|
|
1088
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1089
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1037
1090
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1038
1091
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1039
1092
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1044,6 +1097,8 @@ msgid "Last Updated by"
|
|
|
1044
1097
|
msgstr "Senest opdateret den"
|
|
1045
1098
|
|
|
1046
1099
|
#. module: account_financial_report
|
|
1100
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1101
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1047
1102
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1048
1103
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1049
1104
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1073,6 +1128,11 @@ msgstr "Niveau %s"
|
|
|
1073
1128
|
msgid "Limit hierarchy levels"
|
|
1074
1129
|
msgstr "Begræns niveauer"
|
|
1075
1130
|
|
|
1131
|
+
#. module: account_financial_report
|
|
1132
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1133
|
+
msgid "Line"
|
|
1134
|
+
msgstr ""
|
|
1135
|
+
|
|
1076
1136
|
#. module: account_financial_report
|
|
1077
1137
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1078
1138
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
@@ -1081,6 +1141,16 @@ msgstr "Begræns niveauer"
|
|
|
1081
1141
|
msgid "Missing Partner"
|
|
1082
1142
|
msgstr ""
|
|
1083
1143
|
|
|
1144
|
+
#. module: account_financial_report
|
|
1145
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1146
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1147
|
+
msgstr ""
|
|
1148
|
+
|
|
1149
|
+
#. module: account_financial_report
|
|
1150
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1151
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1152
|
+
msgstr ""
|
|
1153
|
+
|
|
1084
1154
|
#. module: account_financial_report
|
|
1085
1155
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1086
1156
|
msgid "Move Target"
|
|
@@ -1091,9 +1161,17 @@ msgstr "Medtag posteringer"
|
|
|
1091
1161
|
msgid "Moves"
|
|
1092
1162
|
msgstr "Posteringer"
|
|
1093
1163
|
|
|
1164
|
+
#. module: account_financial_report
|
|
1165
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1166
|
+
#, python-format
|
|
1167
|
+
msgid "Must complete Configuration Lines"
|
|
1168
|
+
msgstr ""
|
|
1169
|
+
|
|
1094
1170
|
#. module: account_financial_report
|
|
1095
1171
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1096
1172
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1173
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1174
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1097
1175
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1098
1176
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1099
1177
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1101,6 +1179,13 @@ msgstr "Posteringer"
|
|
|
1101
1179
|
msgid "Name"
|
|
1102
1180
|
msgstr "Navn"
|
|
1103
1181
|
|
|
1182
|
+
#. module: account_financial_report
|
|
1183
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1184
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1185
|
+
#, python-format
|
|
1186
|
+
msgid "Name must be unique per report configuration"
|
|
1187
|
+
msgstr ""
|
|
1188
|
+
|
|
1104
1189
|
#. module: account_financial_report
|
|
1105
1190
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1106
1191
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1152,6 +1237,11 @@ msgstr "Ikke bogført"
|
|
|
1152
1237
|
msgid "Not due"
|
|
1153
1238
|
msgstr "Ikke forfalden"
|
|
1154
1239
|
|
|
1240
|
+
#. module: account_financial_report
|
|
1241
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1242
|
+
msgid "OCA Aged Report Configuration"
|
|
1243
|
+
msgstr ""
|
|
1244
|
+
|
|
1155
1245
|
#. module: account_financial_report
|
|
1156
1246
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1157
1247
|
msgid "OCA accounting reports"
|
|
@@ -1811,3 +1901,31 @@ msgstr ""
|
|
|
1811
1901
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1812
1902
|
msgid "width: 8.11%;"
|
|
1813
1903
|
msgstr ""
|
|
1904
|
+
|
|
1905
|
+
#~ msgid ""
|
|
1906
|
+
#~ "Age ≤ 120\n"
|
|
1907
|
+
#~ " d."
|
|
1908
|
+
#~ msgstr ""
|
|
1909
|
+
#~ "Alder ≤ 120\n"
|
|
1910
|
+
#~ " d."
|
|
1911
|
+
|
|
1912
|
+
#~ msgid ""
|
|
1913
|
+
#~ "Age ≤ 30\n"
|
|
1914
|
+
#~ " d."
|
|
1915
|
+
#~ msgstr ""
|
|
1916
|
+
#~ "Alder ≤ 30\n"
|
|
1917
|
+
#~ " d."
|
|
1918
|
+
|
|
1919
|
+
#~ msgid ""
|
|
1920
|
+
#~ "Age ≤ 60\n"
|
|
1921
|
+
#~ " d."
|
|
1922
|
+
#~ msgstr ""
|
|
1923
|
+
#~ "Alder ≤ 60\n"
|
|
1924
|
+
#~ " d."
|
|
1925
|
+
|
|
1926
|
+
#~ msgid ""
|
|
1927
|
+
#~ "Age ≤ 90\n"
|
|
1928
|
+
#~ " d."
|
|
1929
|
+
#~ msgstr ""
|
|
1930
|
+
#~ "Alder ≤ 90\n"
|
|
1931
|
+
#~ " d."
|