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
@@ -52,6 +52,11 @@ msgstr "91 - 120 j."
52
52
  msgid "<b>Taxes summary</b>"
53
53
  msgstr "<b> Synthèse des taxes</b>"
54
54
 
55
+ #. module: account_financial_report
56
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
57
+ msgid "<span class=\"o_form_label\">Intervals configuration</span>"
58
+ msgstr ""
59
+
55
60
  #. module: account_financial_report
56
61
  #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
57
62
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
@@ -91,6 +96,11 @@ msgstr "Résumé du rapport financier comptable au format XLSX"
91
96
  msgid "Account"
92
97
  msgstr "Compte"
93
98
 
99
+ #. module: account_financial_report
100
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
101
+ msgid "Account Age Report Config"
102
+ msgstr ""
103
+
94
104
  #. module: account_financial_report
95
105
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
96
106
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
@@ -149,12 +159,17 @@ msgstr "Activer la centralisation"
149
159
  msgid "Additional Filtering"
150
160
  msgstr "Filtre supplémentaire"
151
161
 
162
+ #. module: account_financial_report
163
+ #: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
164
+ msgid "Age Partner Report Configuration"
165
+ msgstr ""
166
+
152
167
  #. module: account_financial_report
153
168
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
154
169
  msgid ""
155
170
  "Age ≤ 120\n"
156
- " d."
157
- msgstr "≤ 120"
171
+ " d."
172
+ msgstr ""
158
173
 
159
174
  #. module: account_financial_report
160
175
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -166,8 +181,8 @@ msgstr "≤ 120 jours"
166
181
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
167
182
  msgid ""
168
183
  "Age ≤ 30\n"
169
- " d."
170
- msgstr "≤ 30 jours"
184
+ " d."
185
+ msgstr ""
171
186
 
172
187
  #. module: account_financial_report
173
188
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -179,8 +194,8 @@ msgstr "≤ 30 j."
179
194
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
180
195
  msgid ""
181
196
  "Age ≤ 60\n"
182
- " d."
183
- msgstr "≤ 60 jours"
197
+ " d."
198
+ msgstr ""
184
199
 
185
200
  #. module: account_financial_report
186
201
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -192,8 +207,8 @@ msgstr "≤ 60 j."
192
207
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
193
208
  msgid ""
194
209
  "Age ≤ 90\n"
195
- " d."
196
- msgstr "≤ 90 j."
210
+ " d."
211
+ msgstr ""
197
212
 
198
213
  #. module: account_financial_report
199
214
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -391,6 +406,7 @@ msgstr "Code"
391
406
 
392
407
  #. module: account_financial_report
393
408
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
409
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
394
410
  #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
395
411
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
396
412
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
@@ -408,6 +424,18 @@ msgid "Compute accounts"
408
424
  msgstr "Calculer les comptes"
409
425
 
410
426
  #. module: account_financial_report
427
+ #: model:ir.model,name:account_financial_report.model_res_config_settings
428
+ msgid "Config Settings"
429
+ msgstr ""
430
+
431
+ #. module: account_financial_report
432
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
433
+ msgid "Configurations"
434
+ msgstr ""
435
+
436
+ #. module: account_financial_report
437
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
438
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
411
439
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
412
440
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
413
441
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
@@ -418,6 +446,8 @@ msgid "Created by"
418
446
  msgstr "Créé par"
419
447
 
420
448
  #. module: account_financial_report
449
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
450
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
421
451
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
422
452
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
423
453
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
@@ -591,6 +621,8 @@ msgid "Detail Taxes"
591
621
  msgstr "Détail des taxes"
592
622
 
593
623
  #. module: account_financial_report
624
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
625
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
594
626
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
595
627
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
596
628
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
@@ -876,6 +908,12 @@ msgstr "Grouper les écritures par"
876
908
  msgid "Grouped By"
877
909
  msgstr ""
878
910
 
911
+ #. module: account_financial_report
912
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
913
+ msgid ""
914
+ "Here you can set the intervals that will appear on the Aged Partner Balance."
915
+ msgstr ""
916
+
879
917
  #. module: account_financial_report
880
918
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
881
919
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -904,6 +942,8 @@ msgid "Hierarchy Levels to display"
904
942
  msgstr "Niveaux de hiérarchie à afficher"
905
943
 
906
944
  #. module: account_financial_report
945
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
946
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
907
947
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
908
948
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
909
949
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
@@ -922,6 +962,17 @@ msgstr ""
922
962
  "Si coché, aucun détail ne sera affiché dans les rapport du Grand Livre "
923
963
  "(uniquement le webkit), seulement les montants centralisés par période."
924
964
 
965
+ #. module: account_financial_report
966
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
967
+ msgid "Inferior Limit"
968
+ msgstr ""
969
+
970
+ #. module: account_financial_report
971
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
972
+ #, python-format
973
+ msgid "Inferior Limit must be greather than zero"
974
+ msgstr ""
975
+
925
976
  #. module: account_financial_report
926
977
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
927
978
  msgid ""
@@ -948,6 +999,12 @@ msgstr ""
948
999
  msgid "Initial balance"
949
1000
  msgstr "Solde initial"
950
1001
 
1002
+ #. module: account_financial_report
1003
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
1004
+ #: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
1005
+ msgid "Intervals configuration"
1006
+ msgstr ""
1007
+
951
1008
  #. module: account_financial_report
952
1009
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
953
1010
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
@@ -1014,6 +1071,8 @@ msgid "Journals"
1014
1071
  msgstr "Journaux"
1015
1072
 
1016
1073
  #. module: account_financial_report
1074
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
1075
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
1017
1076
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
1018
1077
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
1019
1078
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
@@ -1024,6 +1083,8 @@ msgid "Last Modified on"
1024
1083
  msgstr "Dernière modification le"
1025
1084
 
1026
1085
  #. module: account_financial_report
1086
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
1087
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
1027
1088
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
1028
1089
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
1029
1090
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
@@ -1034,6 +1095,8 @@ msgid "Last Updated by"
1034
1095
  msgstr "Dernière mise à jour par"
1035
1096
 
1036
1097
  #. module: account_financial_report
1098
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
1099
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
1037
1100
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
1038
1101
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
1039
1102
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
@@ -1063,6 +1126,11 @@ msgstr "Niveau %s"
1063
1126
  msgid "Limit hierarchy levels"
1064
1127
  msgstr "Limiter les niveaux de hiérarchie"
1065
1128
 
1129
+ #. module: account_financial_report
1130
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
1131
+ msgid "Line"
1132
+ msgstr ""
1133
+
1066
1134
  #. module: account_financial_report
1067
1135
  #: code:addons/account_financial_report/report/general_ledger.py:0
1068
1136
  #: code:addons/account_financial_report/report/open_items.py:0
@@ -1071,6 +1139,16 @@ msgstr "Limiter les niveaux de hiérarchie"
1071
1139
  msgid "Missing Partner"
1072
1140
  msgstr ""
1073
1141
 
1142
+ #. module: account_financial_report
1143
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
1144
+ msgid "Model to set interval lines for Age partner balance report"
1145
+ msgstr ""
1146
+
1147
+ #. module: account_financial_report
1148
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
1149
+ msgid "Model to set intervals for Age partner balance report"
1150
+ msgstr ""
1151
+
1074
1152
  #. module: account_financial_report
1075
1153
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
1076
1154
  msgid "Move Target"
@@ -1081,9 +1159,17 @@ msgstr "Mouvement cible"
1081
1159
  msgid "Moves"
1082
1160
  msgstr "Mouvements"
1083
1161
 
1162
+ #. module: account_financial_report
1163
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1164
+ #, python-format
1165
+ msgid "Must complete Configuration Lines"
1166
+ msgstr ""
1167
+
1084
1168
  #. module: account_financial_report
1085
1169
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1086
1170
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1171
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
1172
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
1087
1173
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1088
1174
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1089
1175
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1091,6 +1177,13 @@ msgstr "Mouvements"
1091
1177
  msgid "Name"
1092
1178
  msgstr "Nom"
1093
1179
 
1180
+ #. module: account_financial_report
1181
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1182
+ #: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
1183
+ #, python-format
1184
+ msgid "Name must be unique per report configuration"
1185
+ msgstr ""
1186
+
1094
1187
  #. module: account_financial_report
1095
1188
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1096
1189
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1142,6 +1235,11 @@ msgstr "Non comptabilisé"
1142
1235
  msgid "Not due"
1143
1236
  msgstr "Non échu"
1144
1237
 
1238
+ #. module: account_financial_report
1239
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
1240
+ msgid "OCA Aged Report Configuration"
1241
+ msgstr ""
1242
+
1145
1243
  #. module: account_financial_report
1146
1244
  #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
1147
1245
  msgid "OCA accounting reports"
@@ -1805,6 +1903,26 @@ msgstr "Largeur : 38,92%;"
1805
1903
  msgid "width: 8.11%;"
1806
1904
  msgstr "largeur : 8.11% ;"
1807
1905
 
1906
+ #~ msgid ""
1907
+ #~ "Age ≤ 120\n"
1908
+ #~ " d."
1909
+ #~ msgstr "≤ 120"
1910
+
1911
+ #~ msgid ""
1912
+ #~ "Age ≤ 30\n"
1913
+ #~ " d."
1914
+ #~ msgstr "≤ 30 jours"
1915
+
1916
+ #~ msgid ""
1917
+ #~ "Age ≤ 60\n"
1918
+ #~ " d."
1919
+ #~ msgstr "≤ 60 jours"
1920
+
1921
+ #~ msgid ""
1922
+ #~ "Age ≤ 90\n"
1923
+ #~ " d."
1924
+ #~ msgstr "≤ 90 j."
1925
+
1808
1926
  #~ msgid "Child Accounts"
1809
1927
  #~ msgstr "Comptes enfants"
1810
1928
 
@@ -53,6 +53,11 @@ msgstr ""
53
53
  msgid "<b>Taxes summary</b>"
54
54
  msgstr ""
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
@@ -92,6 +97,11 @@ msgstr ""
92
97
  msgid "Account"
93
98
  msgstr "Konto"
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 ""
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
@@ -151,11 +161,16 @@ msgstr ""
151
161
  msgid "Additional Filtering"
152
162
  msgstr ""
153
163
 
164
+ #. module: account_financial_report
165
+ #: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
166
+ msgid "Age Partner Report Configuration"
167
+ msgstr ""
168
+
154
169
  #. module: account_financial_report
155
170
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
156
171
  msgid ""
157
172
  "Age ≤ 120\n"
158
- " d."
173
+ " d."
159
174
  msgstr ""
160
175
 
161
176
  #. module: account_financial_report
@@ -168,7 +183,7 @@ msgstr ""
168
183
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
169
184
  msgid ""
170
185
  "Age ≤ 30\n"
171
- " d."
186
+ " d."
172
187
  msgstr ""
173
188
 
174
189
  #. module: account_financial_report
@@ -181,7 +196,7 @@ msgstr ""
181
196
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
182
197
  msgid ""
183
198
  "Age ≤ 60\n"
184
- " d."
199
+ " d."
185
200
  msgstr ""
186
201
 
187
202
  #. module: account_financial_report
@@ -194,7 +209,7 @@ msgstr ""
194
209
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
195
210
  msgid ""
196
211
  "Age ≤ 90\n"
197
- " d."
212
+ " d."
198
213
  msgstr ""
199
214
 
200
215
  #. module: account_financial_report
@@ -393,6 +408,7 @@ msgstr ""
393
408
 
394
409
  #. module: account_financial_report
395
410
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
411
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
396
412
  #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
397
413
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
398
414
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
@@ -410,6 +426,18 @@ msgid "Compute accounts"
410
426
  msgstr ""
411
427
 
412
428
  #. module: account_financial_report
429
+ #: model:ir.model,name:account_financial_report.model_res_config_settings
430
+ msgid "Config Settings"
431
+ msgstr ""
432
+
433
+ #. module: account_financial_report
434
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
435
+ msgid "Configurations"
436
+ msgstr ""
437
+
438
+ #. module: account_financial_report
439
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
440
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
413
441
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
414
442
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
415
443
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
@@ -420,6 +448,8 @@ msgid "Created by"
420
448
  msgstr "Kreirao"
421
449
 
422
450
  #. module: account_financial_report
451
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
452
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
423
453
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
424
454
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
425
455
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
@@ -593,6 +623,8 @@ msgid "Detail Taxes"
593
623
  msgstr ""
594
624
 
595
625
  #. module: account_financial_report
626
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
627
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
596
628
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
597
629
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
598
630
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
@@ -867,6 +899,12 @@ msgstr ""
867
899
  msgid "Grouped By"
868
900
  msgstr ""
869
901
 
902
+ #. module: account_financial_report
903
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
904
+ msgid ""
905
+ "Here you can set the intervals that will appear on the Aged Partner Balance."
906
+ msgstr ""
907
+
870
908
  #. module: account_financial_report
871
909
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
872
910
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -895,6 +933,8 @@ msgid "Hierarchy Levels to display"
895
933
  msgstr ""
896
934
 
897
935
  #. module: account_financial_report
936
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
937
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
898
938
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
899
939
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
900
940
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
@@ -911,6 +951,17 @@ msgid ""
911
951
  "webkit one only), only centralized amounts per period."
912
952
  msgstr ""
913
953
 
954
+ #. module: account_financial_report
955
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
956
+ msgid "Inferior Limit"
957
+ msgstr ""
958
+
959
+ #. module: account_financial_report
960
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
961
+ #, python-format
962
+ msgid "Inferior Limit must be greather than zero"
963
+ msgstr ""
964
+
914
965
  #. module: account_financial_report
915
966
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
916
967
  msgid ""
@@ -933,6 +984,12 @@ msgstr ""
933
984
  msgid "Initial balance"
934
985
  msgstr ""
935
986
 
987
+ #. module: account_financial_report
988
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
989
+ #: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
990
+ msgid "Intervals configuration"
991
+ msgstr ""
992
+
936
993
  #. module: account_financial_report
937
994
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
938
995
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
@@ -999,6 +1056,8 @@ msgid "Journals"
999
1056
  msgstr ""
1000
1057
 
1001
1058
  #. module: account_financial_report
1059
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
1060
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
1002
1061
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
1003
1062
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
1004
1063
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
@@ -1009,6 +1068,8 @@ msgid "Last Modified on"
1009
1068
  msgstr ""
1010
1069
 
1011
1070
  #. module: account_financial_report
1071
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
1072
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
1012
1073
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
1013
1074
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
1014
1075
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
@@ -1019,6 +1080,8 @@ msgid "Last Updated by"
1019
1080
  msgstr ""
1020
1081
 
1021
1082
  #. module: account_financial_report
1083
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
1084
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
1022
1085
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
1023
1086
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
1024
1087
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
@@ -1048,6 +1111,11 @@ msgstr ""
1048
1111
  msgid "Limit hierarchy levels"
1049
1112
  msgstr ""
1050
1113
 
1114
+ #. module: account_financial_report
1115
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
1116
+ msgid "Line"
1117
+ msgstr ""
1118
+
1051
1119
  #. module: account_financial_report
1052
1120
  #: code:addons/account_financial_report/report/general_ledger.py:0
1053
1121
  #: code:addons/account_financial_report/report/open_items.py:0
@@ -1056,6 +1124,16 @@ msgstr ""
1056
1124
  msgid "Missing Partner"
1057
1125
  msgstr ""
1058
1126
 
1127
+ #. module: account_financial_report
1128
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
1129
+ msgid "Model to set interval lines for Age partner balance report"
1130
+ msgstr ""
1131
+
1132
+ #. module: account_financial_report
1133
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
1134
+ msgid "Model to set intervals for Age partner balance report"
1135
+ msgstr ""
1136
+
1059
1137
  #. module: account_financial_report
1060
1138
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
1061
1139
  msgid "Move Target"
@@ -1066,9 +1144,17 @@ msgstr ""
1066
1144
  msgid "Moves"
1067
1145
  msgstr ""
1068
1146
 
1147
+ #. module: account_financial_report
1148
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1149
+ #, python-format
1150
+ msgid "Must complete Configuration Lines"
1151
+ msgstr ""
1152
+
1069
1153
  #. module: account_financial_report
1070
1154
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1071
1155
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1156
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
1157
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
1072
1158
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1073
1159
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1074
1160
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1076,6 +1162,13 @@ msgstr ""
1076
1162
  msgid "Name"
1077
1163
  msgstr ""
1078
1164
 
1165
+ #. module: account_financial_report
1166
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1167
+ #: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
1168
+ #, python-format
1169
+ msgid "Name must be unique per report configuration"
1170
+ msgstr ""
1171
+
1079
1172
  #. module: account_financial_report
1080
1173
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1081
1174
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1127,6 +1220,11 @@ msgstr ""
1127
1220
  msgid "Not due"
1128
1221
  msgstr ""
1129
1222
 
1223
+ #. module: account_financial_report
1224
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
1225
+ msgid "OCA Aged Report Configuration"
1226
+ msgstr ""
1227
+
1130
1228
  #. module: account_financial_report
1131
1229
  #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
1132
1230
  msgid "OCA accounting reports"