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.

Files changed (47) hide show
  1. odoo/addons/account_financial_report/README.rst +36 -1
  2. odoo/addons/account_financial_report/__manifest__.py +4 -1
  3. odoo/addons/account_financial_report/i18n/account_financial_report.pot +102 -4
  4. odoo/addons/account_financial_report/i18n/ar.po +126 -11
  5. odoo/addons/account_financial_report/i18n/ca.po +130 -12
  6. odoo/addons/account_financial_report/i18n/da.po +130 -12
  7. odoo/addons/account_financial_report/i18n/de.po +130 -15
  8. odoo/addons/account_financial_report/i18n/es.po +134 -43
  9. odoo/addons/account_financial_report/i18n/es_AR.po +130 -12
  10. odoo/addons/account_financial_report/i18n/es_MX.po +102 -4
  11. odoo/addons/account_financial_report/i18n/fr.po +126 -11
  12. odoo/addons/account_financial_report/i18n/fr_CH.po +126 -11
  13. odoo/addons/account_financial_report/i18n/fr_FR.po +126 -8
  14. odoo/addons/account_financial_report/i18n/hr.po +102 -4
  15. odoo/addons/account_financial_report/i18n/hr_HR.po +102 -4
  16. odoo/addons/account_financial_report/i18n/it.po +130 -15
  17. odoo/addons/account_financial_report/i18n/ja.po +102 -4
  18. odoo/addons/account_financial_report/i18n/nl.po +130 -15
  19. odoo/addons/account_financial_report/i18n/nl_NL.po +102 -4
  20. odoo/addons/account_financial_report/i18n/pt.po +126 -8
  21. odoo/addons/account_financial_report/i18n/pt_BR.po +130 -15
  22. odoo/addons/account_financial_report/i18n/ro.po +130 -15
  23. odoo/addons/account_financial_report/models/__init__.py +2 -0
  24. odoo/addons/account_financial_report/models/account_age_report_configuration.py +47 -0
  25. odoo/addons/account_financial_report/models/res_config_settings.py +14 -0
  26. odoo/addons/account_financial_report/readme/CONFIGURE.rst +26 -0
  27. odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst +1 -0
  28. odoo/addons/account_financial_report/readme/DESCRIPTION.rst +4 -0
  29. odoo/addons/account_financial_report/report/aged_partner_balance.py +74 -8
  30. odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +145 -104
  31. odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +428 -333
  32. odoo/addons/account_financial_report/security/ir.model.access.csv +2 -0
  33. odoo/addons/account_financial_report/security/security.xml +10 -0
  34. odoo/addons/account_financial_report/static/description/index.html +45 -21
  35. odoo/addons/account_financial_report/tests/__init__.py +1 -0
  36. odoo/addons/account_financial_report/tests/test_age_report_configuration.py +41 -0
  37. odoo/addons/account_financial_report/tests/test_aged_partner_balance.py +85 -4
  38. odoo/addons/account_financial_report/tests/test_general_ledger.py +5 -1
  39. odoo/addons/account_financial_report/tests/test_open_items.py +4 -1
  40. odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +44 -0
  41. odoo/addons/account_financial_report/view/res_config_settings_views.xml +56 -0
  42. odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +4 -0
  43. odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml +2 -0
  44. {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
  45. {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
  46. {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
  47. {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
@@ -57,6 +57,11 @@ msgstr "91-120 T."
57
57
  msgid "<b>Taxes summary</b>"
58
58
  msgstr "<b>Steuerbuchungen Zusammenfassung</b>"
59
59
 
60
+ #. module: account_financial_report
61
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
62
+ msgid "<span class=\"o_form_label\">Intervals configuration</span>"
63
+ msgstr ""
64
+
60
65
  #. module: account_financial_report
61
66
  #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
62
67
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
@@ -97,6 +102,11 @@ msgstr ""
97
102
  msgid "Account"
98
103
  msgstr "Konto"
99
104
 
105
+ #. module: account_financial_report
106
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
107
+ msgid "Account Age Report Config"
108
+ msgstr ""
109
+
100
110
  #. module: account_financial_report
101
111
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
102
112
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
@@ -157,14 +167,17 @@ msgstr "Zusammenfassung aktivieren"
157
167
  msgid "Additional Filtering"
158
168
  msgstr ""
159
169
 
170
+ #. module: account_financial_report
171
+ #: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
172
+ msgid "Age Partner Report Configuration"
173
+ msgstr ""
174
+
160
175
  #. module: account_financial_report
161
176
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
162
177
  msgid ""
163
178
  "Age ≤ 120\n"
164
- " d."
179
+ " d."
165
180
  msgstr ""
166
- "Alter ≤ 120\n"
167
- " T."
168
181
 
169
182
  #. module: account_financial_report
170
183
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -176,10 +189,8 @@ msgstr "Alter bis 120 T."
176
189
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
177
190
  msgid ""
178
191
  "Age ≤ 30\n"
179
- " d."
192
+ " d."
180
193
  msgstr ""
181
- "Alter ≤ 30\n"
182
- " T."
183
194
 
184
195
  #. module: account_financial_report
185
196
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -191,10 +202,8 @@ msgstr "Alter bis 30 T."
191
202
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
192
203
  msgid ""
193
204
  "Age ≤ 60\n"
194
- " d."
205
+ " d."
195
206
  msgstr ""
196
- "Alter ≤ 60\n"
197
- " T."
198
207
 
199
208
  #. module: account_financial_report
200
209
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -206,10 +215,8 @@ msgstr "Alter bis 60 T."
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
- " d."
218
+ " d."
210
219
  msgstr ""
211
- "Alter ≤ 90\n"
212
- " T."
213
220
 
214
221
  #. module: account_financial_report
215
222
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -411,6 +418,7 @@ msgstr "Nummer"
411
418
 
412
419
  #. module: account_financial_report
413
420
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
421
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
414
422
  #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
415
423
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
416
424
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
@@ -429,6 +437,18 @@ msgid "Compute accounts"
429
437
  msgstr "Berechnete Konten"
430
438
 
431
439
  #. module: account_financial_report
440
+ #: model:ir.model,name:account_financial_report.model_res_config_settings
441
+ msgid "Config Settings"
442
+ msgstr ""
443
+
444
+ #. module: account_financial_report
445
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
446
+ msgid "Configurations"
447
+ msgstr ""
448
+
449
+ #. module: account_financial_report
450
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
451
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
432
452
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
433
453
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
434
454
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
@@ -439,6 +459,8 @@ msgid "Created by"
439
459
  msgstr "Erstellt von"
440
460
 
441
461
  #. module: account_financial_report
462
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
463
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
442
464
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
443
465
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
444
466
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
@@ -612,6 +634,8 @@ msgid "Detail Taxes"
612
634
  msgstr "Details zu Steuern"
613
635
 
614
636
  #. module: account_financial_report
637
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
638
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
615
639
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
616
640
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
617
641
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
@@ -902,6 +926,12 @@ msgstr "Gruppieren nach"
902
926
  msgid "Grouped By"
903
927
  msgstr ""
904
928
 
929
+ #. module: account_financial_report
930
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
931
+ msgid ""
932
+ "Here you can set the intervals that will appear on the Aged Partner Balance."
933
+ msgstr ""
934
+
905
935
  #. module: account_financial_report
906
936
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
907
937
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -930,6 +960,8 @@ msgid "Hierarchy Levels to display"
930
960
  msgstr "Anzuzeigende Ebenen"
931
961
 
932
962
  #. module: account_financial_report
963
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
964
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
933
965
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
934
966
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
935
967
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
@@ -948,6 +980,17 @@ msgstr ""
948
980
  "Wenn gekennzeichnet, werden im (Webkit) Hauptbuch-Bericht nur "
949
981
  "zusammengefasste Abstimmsummen pro Periode ausgewiesen."
950
982
 
983
+ #. module: account_financial_report
984
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
985
+ msgid "Inferior Limit"
986
+ msgstr ""
987
+
988
+ #. module: account_financial_report
989
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
990
+ #, python-format
991
+ msgid "Inferior Limit must be greather than zero"
992
+ msgstr ""
993
+
951
994
  #. module: account_financial_report
952
995
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
953
996
  #, fuzzy
@@ -971,6 +1014,12 @@ msgstr "Anfangssaldo"
971
1014
  msgid "Initial balance"
972
1015
  msgstr "Anfangssaldo"
973
1016
 
1017
+ #. module: account_financial_report
1018
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
1019
+ #: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
1020
+ msgid "Intervals configuration"
1021
+ msgstr ""
1022
+
974
1023
  #. module: account_financial_report
975
1024
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
976
1025
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
@@ -1039,6 +1088,8 @@ msgid "Journals"
1039
1088
  msgstr "Journale"
1040
1089
 
1041
1090
  #. module: account_financial_report
1091
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
1092
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
1042
1093
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
1043
1094
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
1044
1095
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
@@ -1049,6 +1100,8 @@ msgid "Last Modified on"
1049
1100
  msgstr "Geändert am"
1050
1101
 
1051
1102
  #. module: account_financial_report
1103
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
1104
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
1052
1105
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
1053
1106
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
1054
1107
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
@@ -1059,6 +1112,8 @@ msgid "Last Updated by"
1059
1112
  msgstr "Aktualisiert durch"
1060
1113
 
1061
1114
  #. module: account_financial_report
1115
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
1116
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
1062
1117
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
1063
1118
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
1064
1119
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
@@ -1088,6 +1143,11 @@ msgstr "Ebene %s"
1088
1143
  msgid "Limit hierarchy levels"
1089
1144
  msgstr "Ebenen festlegen"
1090
1145
 
1146
+ #. module: account_financial_report
1147
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
1148
+ msgid "Line"
1149
+ msgstr "Position"
1150
+
1091
1151
  #. module: account_financial_report
1092
1152
  #: code:addons/account_financial_report/report/general_ledger.py:0
1093
1153
  #: code:addons/account_financial_report/report/open_items.py:0
@@ -1096,6 +1156,16 @@ msgstr "Ebenen festlegen"
1096
1156
  msgid "Missing Partner"
1097
1157
  msgstr ""
1098
1158
 
1159
+ #. module: account_financial_report
1160
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
1161
+ msgid "Model to set interval lines for Age partner balance report"
1162
+ msgstr ""
1163
+
1164
+ #. module: account_financial_report
1165
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
1166
+ msgid "Model to set intervals for Age partner balance report"
1167
+ msgstr ""
1168
+
1099
1169
  #. module: account_financial_report
1100
1170
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
1101
1171
  msgid "Move Target"
@@ -1106,9 +1176,17 @@ msgstr "Anzuzeigende Buchungen"
1106
1176
  msgid "Moves"
1107
1177
  msgstr "Buchungen"
1108
1178
 
1179
+ #. module: account_financial_report
1180
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1181
+ #, python-format
1182
+ msgid "Must complete Configuration Lines"
1183
+ msgstr ""
1184
+
1109
1185
  #. module: account_financial_report
1110
1186
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1111
1187
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1188
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
1189
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
1112
1190
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1113
1191
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1114
1192
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1116,6 +1194,13 @@ msgstr "Buchungen"
1116
1194
  msgid "Name"
1117
1195
  msgstr "Bezeichnung"
1118
1196
 
1197
+ #. module: account_financial_report
1198
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1199
+ #: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
1200
+ #, python-format
1201
+ msgid "Name must be unique per report configuration"
1202
+ msgstr ""
1203
+
1119
1204
  #. module: account_financial_report
1120
1205
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1121
1206
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1167,6 +1252,11 @@ msgstr "Nicht gebucht"
1167
1252
  msgid "Not due"
1168
1253
  msgstr "Nicht fällig"
1169
1254
 
1255
+ #. module: account_financial_report
1256
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
1257
+ msgid "OCA Aged Report Configuration"
1258
+ msgstr ""
1259
+
1170
1260
  #. module: account_financial_report
1171
1261
  #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
1172
1262
  msgid "OCA accounting reports"
@@ -1843,6 +1933,34 @@ msgstr "Breite: 38.92%;"
1843
1933
  msgid "width: 8.11%;"
1844
1934
  msgstr "Breite: 8,11%;"
1845
1935
 
1936
+ #~ msgid ""
1937
+ #~ "Age ≤ 120\n"
1938
+ #~ " d."
1939
+ #~ msgstr ""
1940
+ #~ "Alter ≤ 120\n"
1941
+ #~ " T."
1942
+
1943
+ #~ msgid ""
1944
+ #~ "Age ≤ 30\n"
1945
+ #~ " d."
1946
+ #~ msgstr ""
1947
+ #~ "Alter ≤ 30\n"
1948
+ #~ " T."
1949
+
1950
+ #~ msgid ""
1951
+ #~ "Age ≤ 60\n"
1952
+ #~ " d."
1953
+ #~ msgstr ""
1954
+ #~ "Alter ≤ 60\n"
1955
+ #~ " T."
1956
+
1957
+ #~ msgid ""
1958
+ #~ "Age ≤ 90\n"
1959
+ #~ " d."
1960
+ #~ msgstr ""
1961
+ #~ "Alter ≤ 90\n"
1962
+ #~ " T."
1963
+
1846
1964
  #~ msgid "Child Accounts"
1847
1965
  #~ msgstr "Unterkonto"
1848
1966
 
@@ -2043,9 +2161,6 @@ msgstr "Breite: 8,11%;"
2043
2161
  #~ msgid "Label"
2044
2162
  #~ msgstr "Betitelung"
2045
2163
 
2046
- #~ msgid "Line"
2047
- #~ msgstr "Position"
2048
-
2049
2164
  #~ msgid "Matching Number"
2050
2165
  #~ msgstr "Ausgleich Nummer"
2051
2166
 
@@ -53,6 +53,11 @@ msgstr "91 - 120 d."
53
53
  msgid "<b>Taxes summary</b>"
54
54
  msgstr "<b>Resumen de Impuestos</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 "<span class=\"o_form_label\">Configuración de intervalos</span>"
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
@@ -92,6 +97,11 @@ msgstr "Extracto XLSX Account Financial Report"
92
97
  msgid "Account"
93
98
  msgstr "Cuenta"
94
99
 
100
+ #. module: account_financial_report
101
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
102
+ msgid "Account Age Report Config"
103
+ msgstr "Configuración del informe de calidad de deuda"
104
+
95
105
  #. module: account_financial_report
96
106
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
97
107
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
@@ -150,14 +160,17 @@ msgstr "Activar centralización"
150
160
  msgid "Additional Filtering"
151
161
  msgstr "Filtrado adicional"
152
162
 
163
+ #. module: account_financial_report
164
+ #: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
165
+ msgid "Age Partner Report Configuration"
166
+ msgstr "Configuración Calidad de deuda"
167
+
153
168
  #. module: account_financial_report
154
169
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
155
170
  msgid ""
156
171
  "Age ≤ 120\n"
157
- " d."
172
+ " d."
158
173
  msgstr ""
159
- "Tiempo ≤ 120\n"
160
- " d."
161
174
 
162
175
  #. module: account_financial_report
163
176
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -169,10 +182,8 @@ msgstr "Tiempo ≤ 120 d."
169
182
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
170
183
  msgid ""
171
184
  "Age ≤ 30\n"
172
- " d."
185
+ " d."
173
186
  msgstr ""
174
- "Tiempo ≤ 30\n"
175
- " d."
176
187
 
177
188
  #. module: account_financial_report
178
189
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -184,10 +195,8 @@ msgstr "Tiempo ≤ 30 d."
184
195
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
185
196
  msgid ""
186
197
  "Age ≤ 60\n"
187
- " d."
198
+ " d."
188
199
  msgstr ""
189
- "Tiempo ≤ 60\n"
190
- " d."
191
200
 
192
201
  #. module: account_financial_report
193
202
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -199,10 +208,8 @@ msgstr "Tiempo ≤ 60 d."
199
208
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
200
209
  msgid ""
201
210
  "Age ≤ 90\n"
202
- " d."
211
+ " d."
203
212
  msgstr ""
204
- "Tiempo ≤ 90\n"
205
- " d."
206
213
 
207
214
  #. module: account_financial_report
208
215
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -400,6 +407,7 @@ msgstr "Código"
400
407
 
401
408
  #. module: account_financial_report
402
409
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
410
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
403
411
  #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
404
412
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
405
413
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
@@ -417,6 +425,18 @@ msgid "Compute accounts"
417
425
  msgstr "Cuentas calculadas"
418
426
 
419
427
  #. module: account_financial_report
428
+ #: model:ir.model,name:account_financial_report.model_res_config_settings
429
+ msgid "Config Settings"
430
+ msgstr "Opciones de configuración"
431
+
432
+ #. module: account_financial_report
433
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
434
+ msgid "Configurations"
435
+ msgstr "Configuraciones"
436
+
437
+ #. module: account_financial_report
438
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
439
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
420
440
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
421
441
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
422
442
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
@@ -427,6 +447,8 @@ msgid "Created by"
427
447
  msgstr "Creado por"
428
448
 
429
449
  #. module: account_financial_report
450
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
451
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
430
452
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
431
453
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
432
454
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
@@ -600,6 +622,8 @@ msgid "Detail Taxes"
600
622
  msgstr "Detalle de impuestos"
601
623
 
602
624
  #. module: account_financial_report
625
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
626
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
603
627
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
604
628
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
605
629
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
@@ -888,6 +912,14 @@ msgstr "Agrupar por"
888
912
  msgid "Grouped By"
889
913
  msgstr "Agrupado por"
890
914
 
915
+ #. module: account_financial_report
916
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
917
+ msgid ""
918
+ "Here you can set the intervals that will appear on the Aged Partner Balance."
919
+ msgstr ""
920
+ "Aquí puede configurar los intervalos que aparecerán en el informe de Calidad "
921
+ "de la deuda."
922
+
891
923
  #. module: account_financial_report
892
924
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
893
925
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -916,6 +948,8 @@ msgid "Hierarchy Levels to display"
916
948
  msgstr "Niveles de Jerarquía a mostrar"
917
949
 
918
950
  #. module: account_financial_report
951
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
952
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
919
953
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
920
954
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
921
955
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
@@ -923,7 +957,7 @@ msgstr "Niveles de Jerarquía a mostrar"
923
957
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
924
958
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
925
959
  msgid "ID"
926
- msgstr "ID"
960
+ msgstr ""
927
961
 
928
962
  #. module: account_financial_report
929
963
  #: model:ir.model.fields,help:account_financial_report.field_account_account__centralized
@@ -934,6 +968,17 @@ msgstr ""
934
968
  "Si se marca, no se mostrarán detalles en el informe del libro mayor (solo el "
935
969
  "webkit), solo importes centralizados por período."
936
970
 
971
+ #. module: account_financial_report
972
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
973
+ msgid "Inferior Limit"
974
+ msgstr "Límite inferior"
975
+
976
+ #. module: account_financial_report
977
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
978
+ #, python-format
979
+ msgid "Inferior Limit must be greather than zero"
980
+ msgstr "El límite inferior debe ser mayor que cero"
981
+
937
982
  #. module: account_financial_report
938
983
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
939
984
  msgid ""
@@ -960,6 +1005,12 @@ msgstr ""
960
1005
  msgid "Initial balance"
961
1006
  msgstr "Saldo inicial"
962
1007
 
1008
+ #. module: account_financial_report
1009
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
1010
+ #: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
1011
+ msgid "Intervals configuration"
1012
+ msgstr "Configuración de intervalos"
1013
+
963
1014
  #. module: account_financial_report
964
1015
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
965
1016
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
@@ -1026,6 +1077,8 @@ msgid "Journals"
1026
1077
  msgstr "Diarios"
1027
1078
 
1028
1079
  #. module: account_financial_report
1080
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
1081
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
1029
1082
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
1030
1083
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
1031
1084
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
@@ -1036,6 +1089,8 @@ msgid "Last Modified on"
1036
1089
  msgstr "Última modificación en"
1037
1090
 
1038
1091
  #. module: account_financial_report
1092
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
1093
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
1039
1094
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
1040
1095
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
1041
1096
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
@@ -1046,6 +1101,8 @@ msgid "Last Updated by"
1046
1101
  msgstr "Última actualización por"
1047
1102
 
1048
1103
  #. module: account_financial_report
1104
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
1105
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
1049
1106
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
1050
1107
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
1051
1108
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
@@ -1075,13 +1132,32 @@ msgstr "Nivel %s"
1075
1132
  msgid "Limit hierarchy levels"
1076
1133
  msgstr "Limitar niveles de jerarquía"
1077
1134
 
1135
+ #. module: account_financial_report
1136
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
1137
+ msgid "Line"
1138
+ msgstr "Línea"
1139
+
1078
1140
  #. module: account_financial_report
1079
1141
  #: code:addons/account_financial_report/report/general_ledger.py:0
1080
1142
  #: code:addons/account_financial_report/report/open_items.py:0
1081
1143
  #: code:addons/account_financial_report/report/trial_balance.py:0
1082
1144
  #, python-format
1083
1145
  msgid "Missing Partner"
1084
- msgstr "Falta el Socio"
1146
+ msgstr ""
1147
+
1148
+ #. module: account_financial_report
1149
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
1150
+ msgid "Model to set interval lines for Age partner balance report"
1151
+ msgstr ""
1152
+ "Modelo para establecer líneas de intervalo para el informe de Calidad de "
1153
+ "deuda"
1154
+
1155
+ #. module: account_financial_report
1156
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
1157
+ msgid "Model to set intervals for Age partner balance report"
1158
+ msgstr ""
1159
+ "Modelo para establecer intervalos en el informe de Calidad de deudaFalta el "
1160
+ "Socio"
1085
1161
 
1086
1162
  #. module: account_financial_report
1087
1163
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
@@ -1093,9 +1169,17 @@ msgstr "Asiento Objetivo"
1093
1169
  msgid "Moves"
1094
1170
  msgstr "Asientos"
1095
1171
 
1172
+ #. module: account_financial_report
1173
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1174
+ #, python-format
1175
+ msgid "Must complete Configuration Lines"
1176
+ msgstr "Debe completar las líneas de configuración"
1177
+
1096
1178
  #. module: account_financial_report
1097
1179
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1098
1180
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1181
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
1182
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
1099
1183
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1100
1184
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1101
1185
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1103,6 +1187,13 @@ msgstr "Asientos"
1103
1187
  msgid "Name"
1104
1188
  msgstr "Nombre"
1105
1189
 
1190
+ #. module: account_financial_report
1191
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1192
+ #: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
1193
+ #, python-format
1194
+ msgid "Name must be unique per report configuration"
1195
+ msgstr "El nombre debe ser único por cada configuración del informe"
1196
+
1106
1197
  #. module: account_financial_report
1107
1198
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1108
1199
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1154,6 +1245,11 @@ msgstr "Sin Postear"
1154
1245
  msgid "Not due"
1155
1246
  msgstr "Deuda"
1156
1247
 
1248
+ #. module: account_financial_report
1249
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
1250
+ msgid "OCA Aged Report Configuration"
1251
+ msgstr "Configuración del informe Calidad de deuda OCA"
1252
+
1157
1253
  #. module: account_financial_report
1158
1254
  #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
1159
1255
  msgid "OCA accounting reports"
@@ -1618,7 +1714,7 @@ msgstr "A:"
1618
1714
  #. module: account_financial_report
1619
1715
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
1620
1716
  msgid "Total"
1621
- msgstr "Total"
1717
+ msgstr ""
1622
1718
 
1623
1719
  #. module: account_financial_report
1624
1720
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
@@ -1679,7 +1775,10 @@ msgid ""
1679
1775
  "Use this filter to hide an account or a partner with an ending balance at 0. "
1680
1776
  "If partners are filtered, debits and credits totals will not match the trial "
1681
1777
  "balance."
1682
- msgstr "Use este filtro para ocultar las cuentas sin actividad."
1778
+ msgstr ""
1779
+ "Use este filtro para ocultar las cuentas o empresas con saldo final 0. Si "
1780
+ "las empresas se filtran, los debe y haber totales no coincidirán con el "
1781
+ "balance de sumas y saldos."
1683
1782
 
1684
1783
  #. module: account_financial_report
1685
1784
  #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
@@ -1819,34 +1918,26 @@ msgstr "ancho: 38.92%;"
1819
1918
  msgid "width: 8.11%;"
1820
1919
  msgstr "ancho: 8.11%;"
1821
1920
 
1822
- #~ msgid "Child Accounts"
1823
- #~ msgstr "Cuentas Hijas"
1921
+ #~ msgid ""
1922
+ #~ "Age ≤ 30\n"
1923
+ #~ " d."
1924
+ #~ msgstr ""
1925
+ #~ "Tiempo ≤ 30\n"
1926
+ #~ " d."
1824
1927
 
1825
- #~ msgid "Computed Accounts"
1826
- #~ msgstr "Cuentas Calculadas"
1928
+ #~ msgid ""
1929
+ #~ "Age ≤ 60\n"
1930
+ #~ " d."
1931
+ #~ msgstr ""
1932
+ #~ "Tiempo ≤ 60\n"
1933
+ #~ " d."
1827
1934
 
1828
1935
  #~ msgid ""
1829
- #~ "Computed Accounts: Use when the account group have codes\n"
1830
- #~ " that represent prefixes of the actual accounts.\n"
1831
- #~ "\n"
1832
- #~ " Child Accounts: Use when your account groups are hierarchical.\n"
1833
- #~ "\n"
1834
- #~ " No hierarchy: Use to display just the accounts, without any "
1835
- #~ "grouping.\n"
1836
- #~ " "
1936
+ #~ "Age 90\n"
1937
+ #~ " d."
1837
1938
  #~ msgstr ""
1838
- #~ "Cuentas Calculadas: Usar cuando el grupo de cuentas tiene códigos \n"
1839
- #~ " que representan prefijos de las cuentas reales.\n"
1840
- #~ "\n"
1841
- #~ " Cuentas Hijas: Usar cuando los grupos de cuentas son "
1842
- #~ "jerárquicos.\n"
1843
- #~ "\n"
1844
- #~ " Sin jerarquía: Usar para mostrar sólo las cuentas, sin ninguna "
1845
- #~ "agrupación.\n"
1846
- #~ " "
1847
-
1848
- #~ msgid "Hierarchy On"
1849
- #~ msgstr "Jerarquía en"
1850
-
1851
- #~ msgid "No hierarchy"
1852
- #~ msgstr "Sin jerarquía"
1939
+ #~ "Tiempo 90\n"
1940
+ #~ " d."
1941
+
1942
+ #~ msgid "Companies"
1943
+ #~ msgstr "Compañías"