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
@@ -55,6 +55,11 @@ msgstr "91 - 120 j."
55
55
  msgid "<b>Taxes summary</b>"
56
56
  msgstr "<b> Synthèse des taxes</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 "Résumé du rapport financier comptable au format XLSX"
94
99
  msgid "Account"
95
100
  msgstr "Compte"
96
101
 
102
+ #. module: account_financial_report
103
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
104
+ msgid "Account Age Report Config"
105
+ msgstr ""
106
+
97
107
  #. module: account_financial_report
98
108
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
99
109
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
@@ -152,12 +162,17 @@ msgstr "Activer la centralisation"
152
162
  msgid "Additional Filtering"
153
163
  msgstr "Filtre supplémentaire"
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
- " d."
160
- msgstr "≤ 120"
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 "≤ 120 jours"
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
- " d."
173
- msgstr "≤ 30 jours"
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 "≤ 30 j."
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
- " d."
186
- msgstr "≤ 60 jours"
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 "≤ 60 j."
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
- " d."
199
- msgstr "≤ 90 j."
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 "Code"
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 "Calculer les comptes"
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 "Créé par"
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 "Détail des taxes"
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
@@ -880,6 +912,12 @@ msgstr "Grouper les écritures par"
880
912
  msgid "Grouped By"
881
913
  msgstr ""
882
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
+
883
921
  #. module: account_financial_report
884
922
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
885
923
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -908,6 +946,8 @@ msgid "Hierarchy Levels to display"
908
946
  msgstr "Niveaux de hiérarchie à afficher"
909
947
 
910
948
  #. module: account_financial_report
949
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
950
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
911
951
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
912
952
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
913
953
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
@@ -926,6 +966,17 @@ msgstr ""
926
966
  "Si coché, aucun détail ne sera affiché dans les rapport du Grand Livre "
927
967
  "(uniquement le webkit), seulement les montants centralisés par période."
928
968
 
969
+ #. module: account_financial_report
970
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
971
+ msgid "Inferior Limit"
972
+ msgstr ""
973
+
974
+ #. module: account_financial_report
975
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
976
+ #, python-format
977
+ msgid "Inferior Limit must be greather than zero"
978
+ msgstr ""
979
+
929
980
  #. module: account_financial_report
930
981
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
931
982
  #, fuzzy
@@ -953,6 +1004,12 @@ msgstr ""
953
1004
  msgid "Initial balance"
954
1005
  msgstr "Solde initial"
955
1006
 
1007
+ #. module: account_financial_report
1008
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
1009
+ #: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
1010
+ msgid "Intervals configuration"
1011
+ msgstr ""
1012
+
956
1013
  #. module: account_financial_report
957
1014
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
958
1015
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
@@ -1019,6 +1076,8 @@ msgid "Journals"
1019
1076
  msgstr "Journaux"
1020
1077
 
1021
1078
  #. module: account_financial_report
1079
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
1080
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
1022
1081
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
1023
1082
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
1024
1083
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
@@ -1029,6 +1088,8 @@ msgid "Last Modified on"
1029
1088
  msgstr "Dernière modification le"
1030
1089
 
1031
1090
  #. module: account_financial_report
1091
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
1092
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
1032
1093
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
1033
1094
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
1034
1095
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
@@ -1039,6 +1100,8 @@ msgid "Last Updated by"
1039
1100
  msgstr "Dernière mise à jour par"
1040
1101
 
1041
1102
  #. module: account_financial_report
1103
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
1104
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
1042
1105
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
1043
1106
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
1044
1107
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
@@ -1068,6 +1131,11 @@ msgstr "Niveau %s"
1068
1131
  msgid "Limit hierarchy levels"
1069
1132
  msgstr "Limiter les niveaux de hiérarchie"
1070
1133
 
1134
+ #. module: account_financial_report
1135
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
1136
+ msgid "Line"
1137
+ msgstr "Ligne"
1138
+
1071
1139
  #. module: account_financial_report
1072
1140
  #: code:addons/account_financial_report/report/general_ledger.py:0
1073
1141
  #: code:addons/account_financial_report/report/open_items.py:0
@@ -1076,6 +1144,16 @@ msgstr "Limiter les niveaux de hiérarchie"
1076
1144
  msgid "Missing Partner"
1077
1145
  msgstr ""
1078
1146
 
1147
+ #. module: account_financial_report
1148
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
1149
+ msgid "Model to set interval lines for Age partner balance report"
1150
+ msgstr ""
1151
+
1152
+ #. module: account_financial_report
1153
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
1154
+ msgid "Model to set intervals for Age partner balance report"
1155
+ msgstr ""
1156
+
1079
1157
  #. module: account_financial_report
1080
1158
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
1081
1159
  msgid "Move Target"
@@ -1086,9 +1164,17 @@ msgstr "Mouvement cible"
1086
1164
  msgid "Moves"
1087
1165
  msgstr "Mouvements"
1088
1166
 
1167
+ #. module: account_financial_report
1168
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1169
+ #, python-format
1170
+ msgid "Must complete Configuration Lines"
1171
+ msgstr ""
1172
+
1089
1173
  #. module: account_financial_report
1090
1174
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1091
1175
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1176
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
1177
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
1092
1178
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1093
1179
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1094
1180
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1096,6 +1182,13 @@ msgstr "Mouvements"
1096
1182
  msgid "Name"
1097
1183
  msgstr "Nom"
1098
1184
 
1185
+ #. module: account_financial_report
1186
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1187
+ #: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
1188
+ #, python-format
1189
+ msgid "Name must be unique per report configuration"
1190
+ msgstr ""
1191
+
1099
1192
  #. module: account_financial_report
1100
1193
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1101
1194
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1147,6 +1240,11 @@ msgstr "Non comptabilisé"
1147
1240
  msgid "Not due"
1148
1241
  msgstr "Non échu"
1149
1242
 
1243
+ #. module: account_financial_report
1244
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
1245
+ msgid "OCA Aged Report Configuration"
1246
+ msgstr ""
1247
+
1150
1248
  #. module: account_financial_report
1151
1249
  #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
1152
1250
  msgid "OCA accounting reports"
@@ -1811,6 +1909,26 @@ msgstr "Largeur : 38,92%;"
1811
1909
  msgid "width: 8.11%;"
1812
1910
  msgstr "largeur : 8.11% ;"
1813
1911
 
1912
+ #~ msgid ""
1913
+ #~ "Age ≤ 120\n"
1914
+ #~ " d."
1915
+ #~ msgstr "≤ 120"
1916
+
1917
+ #~ msgid ""
1918
+ #~ "Age ≤ 30\n"
1919
+ #~ " d."
1920
+ #~ msgstr "≤ 30 jours"
1921
+
1922
+ #~ msgid ""
1923
+ #~ "Age ≤ 60\n"
1924
+ #~ " d."
1925
+ #~ msgstr "≤ 60 jours"
1926
+
1927
+ #~ msgid ""
1928
+ #~ "Age ≤ 90\n"
1929
+ #~ " d."
1930
+ #~ msgstr "≤ 90 j."
1931
+
1814
1932
  #~ msgid "Child Accounts"
1815
1933
  #~ msgstr "Comptes enfants"
1816
1934
 
@@ -2043,9 +2161,6 @@ msgstr "largeur : 8.11% ;"
2043
2161
  #~ msgid "Label"
2044
2162
  #~ msgstr "Libellé"
2045
2163
 
2046
- #~ msgid "Line"
2047
- #~ msgstr "Ligne"
2048
-
2049
2164
  #~ msgid "Matching Number"
2050
2165
  #~ msgstr "Correspond au numéro"
2051
2166
 
@@ -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 ""
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
@@ -151,12 +161,17 @@ msgstr "Activer la centralisation"
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."
159
- msgstr "≤ 120 jours"
173
+ " d."
174
+ msgstr ""
160
175
 
161
176
  #. module: account_financial_report
162
177
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -168,8 +183,8 @@ msgstr "≤ 120 jours"
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."
172
- msgstr "≤ 30 jours"
186
+ " d."
187
+ msgstr ""
173
188
 
174
189
  #. module: account_financial_report
175
190
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -181,8 +196,8 @@ msgstr "≤ 30 j."
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."
185
- msgstr "≤ 60 jours"
199
+ " d."
200
+ msgstr ""
186
201
 
187
202
  #. module: account_financial_report
188
203
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -194,8 +209,8 @@ msgstr "≤ 60 j."
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."
198
- msgstr "≤ 90 j."
212
+ " d."
213
+ msgstr ""
199
214
 
200
215
  #. module: account_financial_report
201
216
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -395,6 +410,7 @@ msgstr "Code"
395
410
 
396
411
  #. module: account_financial_report
397
412
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
413
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
398
414
  #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
399
415
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
400
416
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
@@ -412,6 +428,18 @@ msgid "Compute accounts"
412
428
  msgstr "Calculer les comptes"
413
429
 
414
430
  #. module: account_financial_report
431
+ #: model:ir.model,name:account_financial_report.model_res_config_settings
432
+ msgid "Config Settings"
433
+ msgstr ""
434
+
435
+ #. module: account_financial_report
436
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
437
+ msgid "Configurations"
438
+ msgstr ""
439
+
440
+ #. module: account_financial_report
441
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
442
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
415
443
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
416
444
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
417
445
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
@@ -422,6 +450,8 @@ msgid "Created by"
422
450
  msgstr "Créé par"
423
451
 
424
452
  #. module: account_financial_report
453
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
454
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
425
455
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
426
456
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
427
457
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
@@ -595,6 +625,8 @@ msgid "Detail Taxes"
595
625
  msgstr "Détail des taxes"
596
626
 
597
627
  #. module: account_financial_report
628
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
629
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
598
630
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
599
631
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
600
632
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
@@ -888,6 +920,12 @@ msgstr "Grouper les entrées par"
888
920
  msgid "Grouped By"
889
921
  msgstr ""
890
922
 
923
+ #. module: account_financial_report
924
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
925
+ msgid ""
926
+ "Here you can set the intervals that will appear on the Aged Partner Balance."
927
+ msgstr ""
928
+
891
929
  #. module: account_financial_report
892
930
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
893
931
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -916,6 +954,8 @@ msgid "Hierarchy Levels to display"
916
954
  msgstr "Niveaux de hiérarchie à afficher"
917
955
 
918
956
  #. module: account_financial_report
957
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
958
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
919
959
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
920
960
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
921
961
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
@@ -934,6 +974,17 @@ msgstr ""
934
974
  "Si coché, aucun détail ne sera affiché dans les rapport du Grand Livre "
935
975
  "(uniquement le webkit), seulement les montants centralisés par période."
936
976
 
977
+ #. module: account_financial_report
978
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
979
+ msgid "Inferior Limit"
980
+ msgstr ""
981
+
982
+ #. module: account_financial_report
983
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
984
+ #, python-format
985
+ msgid "Inferior Limit must be greather than zero"
986
+ msgstr ""
987
+
937
988
  #. module: account_financial_report
938
989
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
939
990
  #, fuzzy
@@ -961,6 +1012,12 @@ msgstr ""
961
1012
  msgid "Initial balance"
962
1013
  msgstr "Solde initial"
963
1014
 
1015
+ #. module: account_financial_report
1016
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
1017
+ #: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
1018
+ msgid "Intervals configuration"
1019
+ msgstr ""
1020
+
964
1021
  #. module: account_financial_report
965
1022
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
966
1023
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
@@ -1029,6 +1086,8 @@ msgid "Journals"
1029
1086
  msgstr "Journaux"
1030
1087
 
1031
1088
  #. module: account_financial_report
1089
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
1090
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
1032
1091
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
1033
1092
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
1034
1093
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
@@ -1039,6 +1098,8 @@ msgid "Last Modified on"
1039
1098
  msgstr "Dernière modification le"
1040
1099
 
1041
1100
  #. module: account_financial_report
1101
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
1102
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
1042
1103
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
1043
1104
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
1044
1105
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
@@ -1049,6 +1110,8 @@ msgid "Last Updated by"
1049
1110
  msgstr "Dernière mise à jour par"
1050
1111
 
1051
1112
  #. module: account_financial_report
1113
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
1114
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
1052
1115
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
1053
1116
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
1054
1117
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
@@ -1078,6 +1141,11 @@ msgstr "Niveau %s"
1078
1141
  msgid "Limit hierarchy levels"
1079
1142
  msgstr "Limiter les niveaux de hiérarchie"
1080
1143
 
1144
+ #. module: account_financial_report
1145
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
1146
+ msgid "Line"
1147
+ msgstr "Ligne"
1148
+
1081
1149
  #. module: account_financial_report
1082
1150
  #: code:addons/account_financial_report/report/general_ledger.py:0
1083
1151
  #: code:addons/account_financial_report/report/open_items.py:0
@@ -1086,6 +1154,16 @@ msgstr "Limiter les niveaux de hiérarchie"
1086
1154
  msgid "Missing Partner"
1087
1155
  msgstr ""
1088
1156
 
1157
+ #. module: account_financial_report
1158
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
1159
+ msgid "Model to set interval lines for Age partner balance report"
1160
+ msgstr ""
1161
+
1162
+ #. module: account_financial_report
1163
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
1164
+ msgid "Model to set intervals for Age partner balance report"
1165
+ msgstr ""
1166
+
1089
1167
  #. module: account_financial_report
1090
1168
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
1091
1169
  msgid "Move Target"
@@ -1096,9 +1174,17 @@ msgstr "Mouvement cible"
1096
1174
  msgid "Moves"
1097
1175
  msgstr "Mouvements"
1098
1176
 
1177
+ #. module: account_financial_report
1178
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1179
+ #, python-format
1180
+ msgid "Must complete Configuration Lines"
1181
+ msgstr ""
1182
+
1099
1183
  #. module: account_financial_report
1100
1184
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1101
1185
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1186
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
1187
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
1102
1188
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1103
1189
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1104
1190
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1106,6 +1192,13 @@ msgstr "Mouvements"
1106
1192
  msgid "Name"
1107
1193
  msgstr "Nom"
1108
1194
 
1195
+ #. module: account_financial_report
1196
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1197
+ #: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
1198
+ #, python-format
1199
+ msgid "Name must be unique per report configuration"
1200
+ msgstr ""
1201
+
1109
1202
  #. module: account_financial_report
1110
1203
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1111
1204
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1157,6 +1250,11 @@ msgstr "Non comptabilisé"
1157
1250
  msgid "Not due"
1158
1251
  msgstr "Non échu"
1159
1252
 
1253
+ #. module: account_financial_report
1254
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
1255
+ msgid "OCA Aged Report Configuration"
1256
+ msgstr ""
1257
+
1160
1258
  #. module: account_financial_report
1161
1259
  #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
1162
1260
  msgid "OCA accounting reports"
@@ -1828,6 +1926,26 @@ msgstr ""
1828
1926
  msgid "width: 8.11%;"
1829
1927
  msgstr ""
1830
1928
 
1929
+ #~ msgid ""
1930
+ #~ "Age ≤ 120\n"
1931
+ #~ " d."
1932
+ #~ msgstr "≤ 120 jours"
1933
+
1934
+ #~ msgid ""
1935
+ #~ "Age ≤ 30\n"
1936
+ #~ " d."
1937
+ #~ msgstr "≤ 30 jours"
1938
+
1939
+ #~ msgid ""
1940
+ #~ "Age ≤ 60\n"
1941
+ #~ " d."
1942
+ #~ msgstr "≤ 60 jours"
1943
+
1944
+ #~ msgid ""
1945
+ #~ "Age ≤ 90\n"
1946
+ #~ " d."
1947
+ #~ msgstr "≤ 90 j."
1948
+
1831
1949
  #~ msgid "Child Accounts"
1832
1950
  #~ msgstr "Comptes enfants"
1833
1951
 
@@ -2038,9 +2156,6 @@ msgstr ""
2038
2156
  #~ msgid "Label"
2039
2157
  #~ msgstr "Libellé"
2040
2158
 
2041
- #~ msgid "Line"
2042
- #~ msgstr "Ligne"
2043
-
2044
2159
  #~ msgid "Matching Number"
2045
2160
  #~ msgstr "Correspond au numéro"
2046
2161