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 g."
|
|
|
53
53
|
msgid "<b>Taxes summary</b>"
|
|
54
54
|
msgstr "<b>Riepilogo imposte</b>"
|
|
55
55
|
|
|
56
|
+
#. module: account_financial_report
|
|
57
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
58
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
59
|
+
msgstr ""
|
|
60
|
+
|
|
56
61
|
#. module: account_financial_report
|
|
57
62
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
58
63
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -93,6 +98,11 @@ msgstr "Sintesi resoconto economico XLSX conto"
|
|
|
93
98
|
msgid "Account"
|
|
94
99
|
msgstr "Conto"
|
|
95
100
|
|
|
101
|
+
#. module: account_financial_report
|
|
102
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
103
|
+
msgid "Account Age Report Config"
|
|
104
|
+
msgstr ""
|
|
105
|
+
|
|
96
106
|
#. module: account_financial_report
|
|
97
107
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
98
108
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -154,14 +164,17 @@ msgstr "Attivare centralizzazione"
|
|
|
154
164
|
msgid "Additional Filtering"
|
|
155
165
|
msgstr "Filtri aggiuntivi"
|
|
156
166
|
|
|
167
|
+
#. module: account_financial_report
|
|
168
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
169
|
+
msgid "Age Partner Report Configuration"
|
|
170
|
+
msgstr ""
|
|
171
|
+
|
|
157
172
|
#. module: account_financial_report
|
|
158
173
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
159
174
|
msgid ""
|
|
160
175
|
"Age ≤ 120\n"
|
|
161
|
-
"
|
|
176
|
+
" d."
|
|
162
177
|
msgstr ""
|
|
163
|
-
"Età ≤ 120\n"
|
|
164
|
-
" g."
|
|
165
178
|
|
|
166
179
|
#. module: account_financial_report
|
|
167
180
|
#. odoo-python
|
|
@@ -174,10 +187,8 @@ msgstr "Età ≤ 120 g."
|
|
|
174
187
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
175
188
|
msgid ""
|
|
176
189
|
"Age ≤ 30\n"
|
|
177
|
-
"
|
|
190
|
+
" d."
|
|
178
191
|
msgstr ""
|
|
179
|
-
"Età ≤ 30\n"
|
|
180
|
-
" g."
|
|
181
192
|
|
|
182
193
|
#. module: account_financial_report
|
|
183
194
|
#. odoo-python
|
|
@@ -190,10 +201,8 @@ msgstr "Età ≤ 30 g."
|
|
|
190
201
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
191
202
|
msgid ""
|
|
192
203
|
"Age ≤ 60\n"
|
|
193
|
-
"
|
|
204
|
+
" d."
|
|
194
205
|
msgstr ""
|
|
195
|
-
"Età ≤ 60\n"
|
|
196
|
-
" g."
|
|
197
206
|
|
|
198
207
|
#. module: account_financial_report
|
|
199
208
|
#. odoo-python
|
|
@@ -206,10 +215,8 @@ msgstr "Età ≤ 60 g."
|
|
|
206
215
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
207
216
|
msgid ""
|
|
208
217
|
"Age ≤ 90\n"
|
|
209
|
-
"
|
|
218
|
+
" d."
|
|
210
219
|
msgstr ""
|
|
211
|
-
"Età ≤ 90\n"
|
|
212
|
-
" g."
|
|
213
220
|
|
|
214
221
|
#. module: account_financial_report
|
|
215
222
|
#. odoo-python
|
|
@@ -427,6 +434,7 @@ msgstr "Codice"
|
|
|
427
434
|
#. module: account_financial_report
|
|
428
435
|
#. odoo-python
|
|
429
436
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
437
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
430
438
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
431
439
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
432
440
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -444,6 +452,18 @@ msgid "Compute accounts"
|
|
|
444
452
|
msgstr "Calcolare conti"
|
|
445
453
|
|
|
446
454
|
#. module: account_financial_report
|
|
455
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
456
|
+
msgid "Config Settings"
|
|
457
|
+
msgstr ""
|
|
458
|
+
|
|
459
|
+
#. module: account_financial_report
|
|
460
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
461
|
+
msgid "Configurations"
|
|
462
|
+
msgstr ""
|
|
463
|
+
|
|
464
|
+
#. module: account_financial_report
|
|
465
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
466
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
447
467
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
448
468
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
449
469
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -454,6 +474,8 @@ msgid "Created by"
|
|
|
454
474
|
msgstr "Creato da"
|
|
455
475
|
|
|
456
476
|
#. module: account_financial_report
|
|
477
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
478
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
457
479
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
458
480
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
459
481
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -642,6 +664,8 @@ msgid "Detail Taxes"
|
|
|
642
664
|
msgstr "Dettaglio imposte"
|
|
643
665
|
|
|
644
666
|
#. module: account_financial_report
|
|
667
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
668
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
645
669
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
646
670
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
647
671
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -931,6 +955,12 @@ msgstr "Raggruppa registrazioni per"
|
|
|
931
955
|
msgid "Grouped By"
|
|
932
956
|
msgstr "Raggruppato per"
|
|
933
957
|
|
|
958
|
+
#. module: account_financial_report
|
|
959
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
960
|
+
msgid ""
|
|
961
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
962
|
+
msgstr ""
|
|
963
|
+
|
|
934
964
|
#. module: account_financial_report
|
|
935
965
|
#. odoo-python
|
|
936
966
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -960,6 +990,8 @@ msgid "Hierarchy Levels to display"
|
|
|
960
990
|
msgstr "Livelli da mostrare"
|
|
961
991
|
|
|
962
992
|
#. module: account_financial_report
|
|
993
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
994
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
963
995
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
964
996
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
965
997
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -978,6 +1010,18 @@ msgstr ""
|
|
|
978
1010
|
"Se selezionata, nessun dettaglio verrà visualizzato nel resoconto libro "
|
|
979
1011
|
"mastro (solo il webkit), solo conti centralizzati per periodo."
|
|
980
1012
|
|
|
1013
|
+
#. module: account_financial_report
|
|
1014
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
1015
|
+
msgid "Inferior Limit"
|
|
1016
|
+
msgstr ""
|
|
1017
|
+
|
|
1018
|
+
#. module: account_financial_report
|
|
1019
|
+
#. odoo-python
|
|
1020
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1021
|
+
#, python-format
|
|
1022
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1023
|
+
msgstr ""
|
|
1024
|
+
|
|
981
1025
|
#. module: account_financial_report
|
|
982
1026
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
983
1027
|
#, fuzzy
|
|
@@ -1006,6 +1050,12 @@ msgstr ""
|
|
|
1006
1050
|
msgid "Initial balance"
|
|
1007
1051
|
msgstr "Saldo iniziale"
|
|
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 "Sezionali"
|
|
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 "Ultima modifica il"
|
|
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 "Ultimo aggiornamento di"
|
|
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 "Livello %s"
|
|
|
1126
1182
|
msgid "Limit hierarchy levels"
|
|
1127
1183
|
msgstr "Limitare i livelli della gerarchia"
|
|
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 "Riga"
|
|
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 "Limitare i livelli della gerarchia"
|
|
|
1135
1196
|
msgid "Missing Partner"
|
|
1136
1197
|
msgstr "Partner mancante"
|
|
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 "Obiettivo"
|
|
|
1145
1216
|
msgid "Moves"
|
|
1146
1217
|
msgstr "Registrazioni"
|
|
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 "Registrazioni"
|
|
|
1156
1236
|
msgid "Name"
|
|
1157
1237
|
msgstr "Nome"
|
|
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 "Non confermate"
|
|
|
1212
1300
|
msgid "Not due"
|
|
1213
1301
|
msgstr "Non dovuto"
|
|
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"
|
|
@@ -1843,7 +1936,6 @@ msgid "future"
|
|
|
1843
1936
|
msgstr "futuro"
|
|
1844
1937
|
|
|
1845
1938
|
#. module: account_financial_report
|
|
1846
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1847
1939
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1848
1940
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1849
1941
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1892,6 +1984,34 @@ msgstr "larghezza: 38,92%;"
|
|
|
1892
1984
|
msgid "width: 8.11%;"
|
|
1893
1985
|
msgstr "larghezza: 8,11%;"
|
|
1894
1986
|
|
|
1987
|
+
#~ msgid ""
|
|
1988
|
+
#~ "Age ≤ 120\n"
|
|
1989
|
+
#~ " d."
|
|
1990
|
+
#~ msgstr ""
|
|
1991
|
+
#~ "Età ≤ 120\n"
|
|
1992
|
+
#~ " g."
|
|
1993
|
+
|
|
1994
|
+
#~ msgid ""
|
|
1995
|
+
#~ "Age ≤ 30\n"
|
|
1996
|
+
#~ " d."
|
|
1997
|
+
#~ msgstr ""
|
|
1998
|
+
#~ "Età ≤ 30\n"
|
|
1999
|
+
#~ " g."
|
|
2000
|
+
|
|
2001
|
+
#~ msgid ""
|
|
2002
|
+
#~ "Age ≤ 60\n"
|
|
2003
|
+
#~ " d."
|
|
2004
|
+
#~ msgstr ""
|
|
2005
|
+
#~ "Età ≤ 60\n"
|
|
2006
|
+
#~ " g."
|
|
2007
|
+
|
|
2008
|
+
#~ msgid ""
|
|
2009
|
+
#~ "Age ≤ 90\n"
|
|
2010
|
+
#~ " d."
|
|
2011
|
+
#~ msgstr ""
|
|
2012
|
+
#~ "Età ≤ 90\n"
|
|
2013
|
+
#~ " g."
|
|
2014
|
+
|
|
1895
2015
|
#~ msgid "Filter analytic tags"
|
|
1896
2016
|
#~ msgstr "Filtro tag analitici"
|
|
1897
2017
|
|
|
@@ -2028,9 +2148,6 @@ msgstr "larghezza: 8,11%;"
|
|
|
2028
2148
|
#~ msgid "Label"
|
|
2029
2149
|
#~ msgstr "Etichetta"
|
|
2030
2150
|
|
|
2031
|
-
#~ msgid "Line"
|
|
2032
|
-
#~ msgstr "Riga"
|
|
2033
|
-
|
|
2034
2151
|
#~ msgid "Matching Number"
|
|
2035
2152
|
#~ msgstr "Numero abbinamento"
|
|
2036
2153
|
|
|
@@ -53,6 +53,11 @@ msgstr "91 - 120 日"
|
|
|
53
53
|
msgid "<b>Taxes summary</b>"
|
|
54
54
|
msgstr "<b>税サマリ</b>"
|
|
55
55
|
|
|
56
|
+
#. module: account_financial_report
|
|
57
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
58
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
59
|
+
msgstr ""
|
|
60
|
+
|
|
56
61
|
#. module: account_financial_report
|
|
57
62
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
58
63
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -93,6 +98,11 @@ msgstr ""
|
|
|
93
98
|
msgid "Account"
|
|
94
99
|
msgstr "勘定科目"
|
|
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
|
|
@@ -156,11 +166,16 @@ msgstr "集約を有効化"
|
|
|
156
166
|
msgid "Additional Filtering"
|
|
157
167
|
msgstr ""
|
|
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
180
|
|
|
166
181
|
#. module: account_financial_report
|
|
@@ -174,7 +189,7 @@ msgstr ""
|
|
|
174
189
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
175
190
|
msgid ""
|
|
176
191
|
"Age ≤ 30\n"
|
|
177
|
-
"
|
|
192
|
+
" d."
|
|
178
193
|
msgstr ""
|
|
179
194
|
|
|
180
195
|
#. module: account_financial_report
|
|
@@ -188,7 +203,7 @@ msgstr ""
|
|
|
188
203
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
189
204
|
msgid ""
|
|
190
205
|
"Age ≤ 60\n"
|
|
191
|
-
"
|
|
206
|
+
" d."
|
|
192
207
|
msgstr ""
|
|
193
208
|
|
|
194
209
|
#. module: account_financial_report
|
|
@@ -202,7 +217,7 @@ msgstr ""
|
|
|
202
217
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
203
218
|
msgid ""
|
|
204
219
|
"Age ≤ 90\n"
|
|
205
|
-
"
|
|
220
|
+
" d."
|
|
206
221
|
msgstr ""
|
|
207
222
|
|
|
208
223
|
#. module: account_financial_report
|
|
@@ -422,6 +437,7 @@ msgstr ""
|
|
|
422
437
|
#. module: account_financial_report
|
|
423
438
|
#. odoo-python
|
|
424
439
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
440
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
425
441
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
426
442
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
427
443
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -439,6 +455,18 @@ msgid "Compute accounts"
|
|
|
439
455
|
msgstr ""
|
|
440
456
|
|
|
441
457
|
#. module: account_financial_report
|
|
458
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
459
|
+
msgid "Config Settings"
|
|
460
|
+
msgstr ""
|
|
461
|
+
|
|
462
|
+
#. module: account_financial_report
|
|
463
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
464
|
+
msgid "Configurations"
|
|
465
|
+
msgstr ""
|
|
466
|
+
|
|
467
|
+
#. module: account_financial_report
|
|
468
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
469
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
442
470
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
443
471
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
444
472
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -449,6 +477,8 @@ msgid "Created by"
|
|
|
449
477
|
msgstr ""
|
|
450
478
|
|
|
451
479
|
#. module: account_financial_report
|
|
480
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
481
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
452
482
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
453
483
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
454
484
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -637,6 +667,8 @@ msgid "Detail Taxes"
|
|
|
637
667
|
msgstr ""
|
|
638
668
|
|
|
639
669
|
#. module: account_financial_report
|
|
670
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
671
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
640
672
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
641
673
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
642
674
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -912,6 +944,12 @@ msgstr ""
|
|
|
912
944
|
msgid "Grouped By"
|
|
913
945
|
msgstr ""
|
|
914
946
|
|
|
947
|
+
#. module: account_financial_report
|
|
948
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
949
|
+
msgid ""
|
|
950
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
951
|
+
msgstr ""
|
|
952
|
+
|
|
915
953
|
#. module: account_financial_report
|
|
916
954
|
#. odoo-python
|
|
917
955
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -941,6 +979,8 @@ msgid "Hierarchy Levels to display"
|
|
|
941
979
|
msgstr ""
|
|
942
980
|
|
|
943
981
|
#. module: account_financial_report
|
|
982
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
983
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
944
984
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
945
985
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
946
986
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -957,6 +997,18 @@ msgid ""
|
|
|
957
997
|
"webkit one only), only centralized amounts per period."
|
|
958
998
|
msgstr ""
|
|
959
999
|
|
|
1000
|
+
#. module: account_financial_report
|
|
1001
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
1002
|
+
msgid "Inferior Limit"
|
|
1003
|
+
msgstr ""
|
|
1004
|
+
|
|
1005
|
+
#. module: account_financial_report
|
|
1006
|
+
#. odoo-python
|
|
1007
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1008
|
+
#, python-format
|
|
1009
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1010
|
+
msgstr ""
|
|
1011
|
+
|
|
960
1012
|
#. module: account_financial_report
|
|
961
1013
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
962
1014
|
msgid ""
|
|
@@ -980,6 +1032,12 @@ msgstr ""
|
|
|
980
1032
|
msgid "Initial balance"
|
|
981
1033
|
msgstr ""
|
|
982
1034
|
|
|
1035
|
+
#. module: account_financial_report
|
|
1036
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1037
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1038
|
+
msgid "Intervals configuration"
|
|
1039
|
+
msgstr ""
|
|
1040
|
+
|
|
983
1041
|
#. module: account_financial_report
|
|
984
1042
|
#. odoo-python
|
|
985
1043
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -1049,6 +1107,8 @@ msgid "Journals"
|
|
|
1049
1107
|
msgstr ""
|
|
1050
1108
|
|
|
1051
1109
|
#. module: account_financial_report
|
|
1110
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1111
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1052
1112
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1053
1113
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1054
1114
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1059,6 +1119,8 @@ msgid "Last Modified on"
|
|
|
1059
1119
|
msgstr ""
|
|
1060
1120
|
|
|
1061
1121
|
#. module: account_financial_report
|
|
1122
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1123
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1062
1124
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1063
1125
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1064
1126
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1069,6 +1131,8 @@ msgid "Last Updated by"
|
|
|
1069
1131
|
msgstr ""
|
|
1070
1132
|
|
|
1071
1133
|
#. module: account_financial_report
|
|
1134
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1135
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1072
1136
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1073
1137
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1074
1138
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1100,6 +1164,11 @@ msgstr ""
|
|
|
1100
1164
|
msgid "Limit hierarchy levels"
|
|
1101
1165
|
msgstr ""
|
|
1102
1166
|
|
|
1167
|
+
#. module: account_financial_report
|
|
1168
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1169
|
+
msgid "Line"
|
|
1170
|
+
msgstr ""
|
|
1171
|
+
|
|
1103
1172
|
#. module: account_financial_report
|
|
1104
1173
|
#. odoo-python
|
|
1105
1174
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
@@ -1109,6 +1178,16 @@ msgstr ""
|
|
|
1109
1178
|
msgid "Missing Partner"
|
|
1110
1179
|
msgstr ""
|
|
1111
1180
|
|
|
1181
|
+
#. module: account_financial_report
|
|
1182
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1183
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1184
|
+
msgstr ""
|
|
1185
|
+
|
|
1186
|
+
#. module: account_financial_report
|
|
1187
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1188
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1189
|
+
msgstr ""
|
|
1190
|
+
|
|
1112
1191
|
#. module: account_financial_report
|
|
1113
1192
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1114
1193
|
msgid "Move Target"
|
|
@@ -1119,10 +1198,19 @@ msgstr ""
|
|
|
1119
1198
|
msgid "Moves"
|
|
1120
1199
|
msgstr ""
|
|
1121
1200
|
|
|
1201
|
+
#. module: account_financial_report
|
|
1202
|
+
#. odoo-python
|
|
1203
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1204
|
+
#, python-format
|
|
1205
|
+
msgid "Must complete Configuration Lines"
|
|
1206
|
+
msgstr ""
|
|
1207
|
+
|
|
1122
1208
|
#. module: account_financial_report
|
|
1123
1209
|
#. odoo-python
|
|
1124
1210
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1125
1211
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1212
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1213
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1126
1214
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1127
1215
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1128
1216
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1130,6 +1218,14 @@ msgstr ""
|
|
|
1130
1218
|
msgid "Name"
|
|
1131
1219
|
msgstr ""
|
|
1132
1220
|
|
|
1221
|
+
#. module: account_financial_report
|
|
1222
|
+
#. odoo-python
|
|
1223
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1224
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1225
|
+
#, python-format
|
|
1226
|
+
msgid "Name must be unique per report configuration"
|
|
1227
|
+
msgstr ""
|
|
1228
|
+
|
|
1133
1229
|
#. module: account_financial_report
|
|
1134
1230
|
#. odoo-python
|
|
1135
1231
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
@@ -1186,6 +1282,11 @@ msgstr ""
|
|
|
1186
1282
|
msgid "Not due"
|
|
1187
1283
|
msgstr ""
|
|
1188
1284
|
|
|
1285
|
+
#. module: account_financial_report
|
|
1286
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1287
|
+
msgid "OCA Aged Report Configuration"
|
|
1288
|
+
msgstr ""
|
|
1289
|
+
|
|
1189
1290
|
#. module: account_financial_report
|
|
1190
1291
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1191
1292
|
msgid "OCA accounting reports"
|
|
@@ -1795,7 +1896,6 @@ msgid "future"
|
|
|
1795
1896
|
msgstr ""
|
|
1796
1897
|
|
|
1797
1898
|
#. module: account_financial_report
|
|
1798
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1799
1899
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1800
1900
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1801
1901
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|