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 ""
|
|
|
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
|
|
@@ -94,6 +99,11 @@ msgstr ""
|
|
|
94
99
|
msgid "Account"
|
|
95
100
|
msgstr "Rekening"
|
|
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
|
|
@@ -154,11 +164,16 @@ msgstr ""
|
|
|
154
164
|
msgid "Additional Filtering"
|
|
155
165
|
msgstr ""
|
|
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
178
|
|
|
164
179
|
#. module: account_financial_report
|
|
@@ -171,7 +186,7 @@ msgstr ""
|
|
|
171
186
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
172
187
|
msgid ""
|
|
173
188
|
"Age ≤ 30\n"
|
|
174
|
-
"
|
|
189
|
+
" d."
|
|
175
190
|
msgstr ""
|
|
176
191
|
|
|
177
192
|
#. module: account_financial_report
|
|
@@ -184,7 +199,7 @@ msgstr ""
|
|
|
184
199
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
185
200
|
msgid ""
|
|
186
201
|
"Age ≤ 60\n"
|
|
187
|
-
"
|
|
202
|
+
" d."
|
|
188
203
|
msgstr ""
|
|
189
204
|
|
|
190
205
|
#. module: account_financial_report
|
|
@@ -197,7 +212,7 @@ msgstr ""
|
|
|
197
212
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
198
213
|
msgid ""
|
|
199
214
|
"Age ≤ 90\n"
|
|
200
|
-
"
|
|
215
|
+
" d."
|
|
201
216
|
msgstr ""
|
|
202
217
|
|
|
203
218
|
#. module: account_financial_report
|
|
@@ -400,6 +415,7 @@ msgstr ""
|
|
|
400
415
|
|
|
401
416
|
#. module: account_financial_report
|
|
402
417
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
418
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
403
419
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
404
420
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
405
421
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -417,6 +433,18 @@ msgid "Compute accounts"
|
|
|
417
433
|
msgstr ""
|
|
418
434
|
|
|
419
435
|
#. module: account_financial_report
|
|
436
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
437
|
+
msgid "Config Settings"
|
|
438
|
+
msgstr ""
|
|
439
|
+
|
|
440
|
+
#. module: account_financial_report
|
|
441
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
442
|
+
msgid "Configurations"
|
|
443
|
+
msgstr ""
|
|
444
|
+
|
|
445
|
+
#. module: account_financial_report
|
|
446
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
447
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
420
448
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
421
449
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
422
450
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -427,6 +455,8 @@ msgid "Created by"
|
|
|
427
455
|
msgstr ""
|
|
428
456
|
|
|
429
457
|
#. module: account_financial_report
|
|
458
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
459
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
430
460
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
431
461
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
432
462
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -600,6 +630,8 @@ msgid "Detail Taxes"
|
|
|
600
630
|
msgstr ""
|
|
601
631
|
|
|
602
632
|
#. module: account_financial_report
|
|
633
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
634
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
603
635
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
604
636
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
605
637
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -874,6 +906,12 @@ msgstr ""
|
|
|
874
906
|
msgid "Grouped By"
|
|
875
907
|
msgstr ""
|
|
876
908
|
|
|
909
|
+
#. module: account_financial_report
|
|
910
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
911
|
+
msgid ""
|
|
912
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
913
|
+
msgstr ""
|
|
914
|
+
|
|
877
915
|
#. module: account_financial_report
|
|
878
916
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
879
917
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -902,6 +940,8 @@ msgid "Hierarchy Levels to display"
|
|
|
902
940
|
msgstr ""
|
|
903
941
|
|
|
904
942
|
#. module: account_financial_report
|
|
943
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
944
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
905
945
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
906
946
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
907
947
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -918,6 +958,17 @@ msgid ""
|
|
|
918
958
|
"webkit one only), only centralized amounts per period."
|
|
919
959
|
msgstr ""
|
|
920
960
|
|
|
961
|
+
#. module: account_financial_report
|
|
962
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
963
|
+
msgid "Inferior Limit"
|
|
964
|
+
msgstr ""
|
|
965
|
+
|
|
966
|
+
#. module: account_financial_report
|
|
967
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
968
|
+
#, python-format
|
|
969
|
+
msgid "Inferior Limit must be greather than zero"
|
|
970
|
+
msgstr ""
|
|
971
|
+
|
|
921
972
|
#. module: account_financial_report
|
|
922
973
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
923
974
|
msgid ""
|
|
@@ -940,6 +991,12 @@ msgstr ""
|
|
|
940
991
|
msgid "Initial balance"
|
|
941
992
|
msgstr ""
|
|
942
993
|
|
|
994
|
+
#. module: account_financial_report
|
|
995
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
996
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
997
|
+
msgid "Intervals configuration"
|
|
998
|
+
msgstr ""
|
|
999
|
+
|
|
943
1000
|
#. module: account_financial_report
|
|
944
1001
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
945
1002
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -1006,6 +1063,8 @@ msgid "Journals"
|
|
|
1006
1063
|
msgstr ""
|
|
1007
1064
|
|
|
1008
1065
|
#. module: account_financial_report
|
|
1066
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1067
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1009
1068
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1010
1069
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1011
1070
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1016,6 +1075,8 @@ msgid "Last Modified on"
|
|
|
1016
1075
|
msgstr ""
|
|
1017
1076
|
|
|
1018
1077
|
#. module: account_financial_report
|
|
1078
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1079
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1019
1080
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1020
1081
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1021
1082
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1026,6 +1087,8 @@ msgid "Last Updated by"
|
|
|
1026
1087
|
msgstr ""
|
|
1027
1088
|
|
|
1028
1089
|
#. module: account_financial_report
|
|
1090
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1091
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1029
1092
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1030
1093
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1031
1094
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1055,6 +1118,11 @@ msgstr ""
|
|
|
1055
1118
|
msgid "Limit hierarchy levels"
|
|
1056
1119
|
msgstr ""
|
|
1057
1120
|
|
|
1121
|
+
#. module: account_financial_report
|
|
1122
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1123
|
+
msgid "Line"
|
|
1124
|
+
msgstr ""
|
|
1125
|
+
|
|
1058
1126
|
#. module: account_financial_report
|
|
1059
1127
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1060
1128
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
@@ -1063,6 +1131,16 @@ msgstr ""
|
|
|
1063
1131
|
msgid "Missing Partner"
|
|
1064
1132
|
msgstr ""
|
|
1065
1133
|
|
|
1134
|
+
#. module: account_financial_report
|
|
1135
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1136
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1137
|
+
msgstr ""
|
|
1138
|
+
|
|
1139
|
+
#. module: account_financial_report
|
|
1140
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1141
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1142
|
+
msgstr ""
|
|
1143
|
+
|
|
1066
1144
|
#. module: account_financial_report
|
|
1067
1145
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1068
1146
|
msgid "Move Target"
|
|
@@ -1073,9 +1151,17 @@ msgstr ""
|
|
|
1073
1151
|
msgid "Moves"
|
|
1074
1152
|
msgstr ""
|
|
1075
1153
|
|
|
1154
|
+
#. module: account_financial_report
|
|
1155
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1156
|
+
#, python-format
|
|
1157
|
+
msgid "Must complete Configuration Lines"
|
|
1158
|
+
msgstr ""
|
|
1159
|
+
|
|
1076
1160
|
#. module: account_financial_report
|
|
1077
1161
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1078
1162
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1163
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1164
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1079
1165
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1080
1166
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1081
1167
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1083,6 +1169,13 @@ msgstr ""
|
|
|
1083
1169
|
msgid "Name"
|
|
1084
1170
|
msgstr ""
|
|
1085
1171
|
|
|
1172
|
+
#. module: account_financial_report
|
|
1173
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1174
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1175
|
+
#, python-format
|
|
1176
|
+
msgid "Name must be unique per report configuration"
|
|
1177
|
+
msgstr ""
|
|
1178
|
+
|
|
1086
1179
|
#. module: account_financial_report
|
|
1087
1180
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1088
1181
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1134,6 +1227,11 @@ msgstr ""
|
|
|
1134
1227
|
msgid "Not due"
|
|
1135
1228
|
msgstr ""
|
|
1136
1229
|
|
|
1230
|
+
#. module: account_financial_report
|
|
1231
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1232
|
+
msgid "OCA Aged Report Configuration"
|
|
1233
|
+
msgstr ""
|
|
1234
|
+
|
|
1137
1235
|
#. module: account_financial_report
|
|
1138
1236
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1139
1237
|
msgid "OCA accounting reports"
|
|
@@ -55,6 +55,11 @@ msgstr "91 - 120 d."
|
|
|
55
55
|
msgid "<b>Taxes summary</b>"
|
|
56
56
|
msgstr "<b>Resumo de 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 "Relatório Financeiro Abstrato XLSX"
|
|
|
94
99
|
msgid "Account"
|
|
95
100
|
msgstr "Conta"
|
|
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,12 +162,17 @@ msgstr "Ativar centralização"
|
|
|
152
162
|
msgid "Additional Filtering"
|
|
153
163
|
msgstr "Filtragem Adicional"
|
|
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
|
-
"
|
|
160
|
-
msgstr "
|
|
174
|
+
" d."
|
|
175
|
+
msgstr ""
|
|
161
176
|
|
|
162
177
|
#. module: account_financial_report
|
|
163
178
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -169,8 +184,8 @@ msgstr "Antiguidade ≤ 120 d."
|
|
|
169
184
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
170
185
|
msgid ""
|
|
171
186
|
"Age ≤ 30\n"
|
|
172
|
-
"
|
|
173
|
-
msgstr "
|
|
187
|
+
" d."
|
|
188
|
+
msgstr ""
|
|
174
189
|
|
|
175
190
|
#. module: account_financial_report
|
|
176
191
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -182,8 +197,8 @@ msgstr "Antiguidade ≤ 30 d."
|
|
|
182
197
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
183
198
|
msgid ""
|
|
184
199
|
"Age ≤ 60\n"
|
|
185
|
-
"
|
|
186
|
-
msgstr "
|
|
200
|
+
" d."
|
|
201
|
+
msgstr ""
|
|
187
202
|
|
|
188
203
|
#. module: account_financial_report
|
|
189
204
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -195,8 +210,8 @@ msgstr "Antiguidade ≤ 60 d."
|
|
|
195
210
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
196
211
|
msgid ""
|
|
197
212
|
"Age ≤ 90\n"
|
|
198
|
-
"
|
|
199
|
-
msgstr "
|
|
213
|
+
" d."
|
|
214
|
+
msgstr ""
|
|
200
215
|
|
|
201
216
|
#. module: account_financial_report
|
|
202
217
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -394,6 +409,7 @@ msgstr "Código"
|
|
|
394
409
|
|
|
395
410
|
#. module: account_financial_report
|
|
396
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
|
|
397
413
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
398
414
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
399
415
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -411,6 +427,18 @@ msgid "Compute accounts"
|
|
|
411
427
|
msgstr "Calcular contas"
|
|
412
428
|
|
|
413
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
|
|
414
442
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
415
443
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
416
444
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -421,6 +449,8 @@ msgid "Created by"
|
|
|
421
449
|
msgstr "Criado por"
|
|
422
450
|
|
|
423
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
|
|
424
454
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
425
455
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
426
456
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -594,6 +624,8 @@ msgid "Detail Taxes"
|
|
|
594
624
|
msgstr "Detalhe dos Impostos"
|
|
595
625
|
|
|
596
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
|
|
597
629
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
598
630
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
599
631
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -873,6 +905,12 @@ msgstr "Agrupar movimentos por"
|
|
|
873
905
|
msgid "Grouped By"
|
|
874
906
|
msgstr ""
|
|
875
907
|
|
|
908
|
+
#. module: account_financial_report
|
|
909
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
910
|
+
msgid ""
|
|
911
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
912
|
+
msgstr ""
|
|
913
|
+
|
|
876
914
|
#. module: account_financial_report
|
|
877
915
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
878
916
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -901,6 +939,8 @@ msgid "Hierarchy Levels to display"
|
|
|
901
939
|
msgstr "Níveis Hierárquicos a exibir"
|
|
902
940
|
|
|
903
941
|
#. module: account_financial_report
|
|
942
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
943
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
904
944
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
905
945
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
906
946
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -919,6 +959,17 @@ msgstr ""
|
|
|
919
959
|
"Se marcado, não serão exibidos os detalhes no relatório do Razão , apenas "
|
|
920
960
|
"montantes centralizados por período."
|
|
921
961
|
|
|
962
|
+
#. module: account_financial_report
|
|
963
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
964
|
+
msgid "Inferior Limit"
|
|
965
|
+
msgstr ""
|
|
966
|
+
|
|
967
|
+
#. module: account_financial_report
|
|
968
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
969
|
+
#, python-format
|
|
970
|
+
msgid "Inferior Limit must be greather than zero"
|
|
971
|
+
msgstr ""
|
|
972
|
+
|
|
922
973
|
#. module: account_financial_report
|
|
923
974
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
924
975
|
msgid ""
|
|
@@ -943,6 +994,12 @@ msgstr ""
|
|
|
943
994
|
msgid "Initial balance"
|
|
944
995
|
msgstr "Saldo Inicial"
|
|
945
996
|
|
|
997
|
+
#. module: account_financial_report
|
|
998
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
999
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1000
|
+
msgid "Intervals configuration"
|
|
1001
|
+
msgstr ""
|
|
1002
|
+
|
|
946
1003
|
#. module: account_financial_report
|
|
947
1004
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
948
1005
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -1009,6 +1066,8 @@ msgid "Journals"
|
|
|
1009
1066
|
msgstr "Diários"
|
|
1010
1067
|
|
|
1011
1068
|
#. module: account_financial_report
|
|
1069
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1070
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1012
1071
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1013
1072
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1014
1073
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1019,6 +1078,8 @@ msgid "Last Modified on"
|
|
|
1019
1078
|
msgstr "Última modificação em"
|
|
1020
1079
|
|
|
1021
1080
|
#. module: account_financial_report
|
|
1081
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1082
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1022
1083
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1023
1084
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1024
1085
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1029,6 +1090,8 @@ msgid "Last Updated by"
|
|
|
1029
1090
|
msgstr "Última atualização por"
|
|
1030
1091
|
|
|
1031
1092
|
#. module: account_financial_report
|
|
1093
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1094
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1032
1095
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1033
1096
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1034
1097
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1058,6 +1121,11 @@ msgstr "Nível %s"
|
|
|
1058
1121
|
msgid "Limit hierarchy levels"
|
|
1059
1122
|
msgstr "Limite dos níveis hierárquicos"
|
|
1060
1123
|
|
|
1124
|
+
#. module: account_financial_report
|
|
1125
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1126
|
+
msgid "Line"
|
|
1127
|
+
msgstr ""
|
|
1128
|
+
|
|
1061
1129
|
#. module: account_financial_report
|
|
1062
1130
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1063
1131
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
@@ -1066,6 +1134,16 @@ msgstr "Limite dos níveis hierárquicos"
|
|
|
1066
1134
|
msgid "Missing Partner"
|
|
1067
1135
|
msgstr ""
|
|
1068
1136
|
|
|
1137
|
+
#. module: account_financial_report
|
|
1138
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1139
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1140
|
+
msgstr ""
|
|
1141
|
+
|
|
1142
|
+
#. module: account_financial_report
|
|
1143
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1144
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1145
|
+
msgstr ""
|
|
1146
|
+
|
|
1069
1147
|
#. module: account_financial_report
|
|
1070
1148
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1071
1149
|
msgid "Move Target"
|
|
@@ -1076,9 +1154,17 @@ msgstr "Alvo do Movimento"
|
|
|
1076
1154
|
msgid "Moves"
|
|
1077
1155
|
msgstr "Movimentos"
|
|
1078
1156
|
|
|
1157
|
+
#. module: account_financial_report
|
|
1158
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1159
|
+
#, python-format
|
|
1160
|
+
msgid "Must complete Configuration Lines"
|
|
1161
|
+
msgstr ""
|
|
1162
|
+
|
|
1079
1163
|
#. module: account_financial_report
|
|
1080
1164
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1081
1165
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1166
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1167
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1082
1168
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1083
1169
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1084
1170
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1086,6 +1172,13 @@ msgstr "Movimentos"
|
|
|
1086
1172
|
msgid "Name"
|
|
1087
1173
|
msgstr "Nome"
|
|
1088
1174
|
|
|
1175
|
+
#. module: account_financial_report
|
|
1176
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1177
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1178
|
+
#, python-format
|
|
1179
|
+
msgid "Name must be unique per report configuration"
|
|
1180
|
+
msgstr ""
|
|
1181
|
+
|
|
1089
1182
|
#. module: account_financial_report
|
|
1090
1183
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1091
1184
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1137,6 +1230,11 @@ msgstr "Não Publicado"
|
|
|
1137
1230
|
msgid "Not due"
|
|
1138
1231
|
msgstr "Não vencido"
|
|
1139
1232
|
|
|
1233
|
+
#. module: account_financial_report
|
|
1234
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1235
|
+
msgid "OCA Aged Report Configuration"
|
|
1236
|
+
msgstr ""
|
|
1237
|
+
|
|
1140
1238
|
#. module: account_financial_report
|
|
1141
1239
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1142
1240
|
msgid "OCA accounting reports"
|
|
@@ -1799,6 +1897,26 @@ msgstr "largura: 38.92%;"
|
|
|
1799
1897
|
msgid "width: 8.11%;"
|
|
1800
1898
|
msgstr "largura: 8.11%;"
|
|
1801
1899
|
|
|
1900
|
+
#~ msgid ""
|
|
1901
|
+
#~ "Age ≤ 120\n"
|
|
1902
|
+
#~ " d."
|
|
1903
|
+
#~ msgstr "Antiguidade ≤ 120 d."
|
|
1904
|
+
|
|
1905
|
+
#~ msgid ""
|
|
1906
|
+
#~ "Age ≤ 30\n"
|
|
1907
|
+
#~ " d."
|
|
1908
|
+
#~ msgstr "Antiguidade ≤ 30 d."
|
|
1909
|
+
|
|
1910
|
+
#~ msgid ""
|
|
1911
|
+
#~ "Age ≤ 60\n"
|
|
1912
|
+
#~ " d."
|
|
1913
|
+
#~ msgstr "Antiguidade ≤ 60 d."
|
|
1914
|
+
|
|
1915
|
+
#~ msgid ""
|
|
1916
|
+
#~ "Age ≤ 90\n"
|
|
1917
|
+
#~ " d."
|
|
1918
|
+
#~ msgstr "Antiguidade ≤ 90 d."
|
|
1919
|
+
|
|
1802
1920
|
#~ msgid "Child Accounts"
|
|
1803
1921
|
#~ msgstr "Contas Descendentes"
|
|
1804
1922
|
|