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
@@ -7,7 +7,7 @@ Account Financial Reports
7
7
  !! This file is generated by oca-gen-addon-readme !!
8
8
  !! changes will be overwritten. !!
9
9
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:63c22ffc36a866253069bb79e215fde2ac28e02e6aff126107095dfdf6e50206
10
+ !! source digest: sha256:69b3d19762f381e8a9fd056cf714d8bef620cd7ec717219660247213175028ad
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -45,11 +45,45 @@ currency used in account move lines is properly shown.
45
45
  In case that in an account has not been configured a second currency foreign
46
46
  currency balances are not available.
47
47
 
48
+ Invoicing / Settings / Invoicing / OCA Aged Report Configuration you will be able to set
49
+ dynamic intervals that will appear on the Aged Partner Balance.
50
+ For further information, check CONFIGURE.rst
51
+
48
52
  **Table of contents**
49
53
 
50
54
  .. contents::
51
55
  :local:
52
56
 
57
+ Configuration
58
+ =============
59
+
60
+ To configure dynamic intervals for Aged Partner Balance you need to:
61
+
62
+ Go on 'Settings' -> 'Invoicing' -> 'OCA Aged Report Configuration'.
63
+
64
+ Click on option 'Configurations' and create new record.
65
+
66
+ Create new interval.
67
+ The name established on line will be the column to display in Aged Partner Balance.
68
+ Inferior limit established on line is the interval
69
+
70
+ Example of configuration inferior limit:
71
+
72
+ -> 15
73
+ -> 30
74
+ -> 60
75
+
76
+ It means the first interval is from 0 to 15, the second from 16 to 30, and the third is 61+.
77
+
78
+ Go on 'Invoicing' -> 'Reports' -> 'OCA accounting reports' -> 'Aged Partner Balance'
79
+
80
+ When wizard is open, you need to select your interval configuration and print report.
81
+
82
+ If you want to get default interval configuration any time you wish to print Aged Partner Report,
83
+ you can set default interval configuration per company in:
84
+
85
+ 'Settings' -> 'Invoicing' -> 'OCA Aged Report Configuration'.
86
+
53
87
  Known issues / Roadmap
54
88
  ======================
55
89
 
@@ -134,6 +168,7 @@ Contributors
134
168
  * João Marques
135
169
  * Alexandre D. Díaz
136
170
  * Víctor Martínez
171
+ * Carolina Fernandez
137
172
 
138
173
  * `Sygel <https://www.sygel.es>`__:
139
174
 
@@ -6,7 +6,7 @@
6
6
  # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
7
7
  {
8
8
  "name": "Account Financial Reports",
9
- "version": "15.0.2.9.2",
9
+ "version": "15.0.2.10.0",
10
10
  "category": "Reporting",
11
11
  "summary": "OCA Financial Reports",
12
12
  "author": "Camptocamp SA,"
@@ -18,12 +18,14 @@
18
18
  "depends": ["account", "date_range", "report_xlsx"],
19
19
  "data": [
20
20
  "security/ir.model.access.csv",
21
+ "security/security.xml",
21
22
  "wizard/aged_partner_balance_wizard_view.xml",
22
23
  "wizard/general_ledger_wizard_view.xml",
23
24
  "wizard/journal_ledger_wizard_view.xml",
24
25
  "wizard/open_items_wizard_view.xml",
25
26
  "wizard/trial_balance_wizard_view.xml",
26
27
  "wizard/vat_report_wizard_view.xml",
28
+ "view/account_age_report_configuration_views.xml",
27
29
  "menuitems.xml",
28
30
  "reports.xml",
29
31
  "report/templates/layouts.xml",
@@ -40,6 +42,7 @@
40
42
  "view/report_open_items.xml",
41
43
  "view/report_aged_partner_balance.xml",
42
44
  "view/report_vat_report.xml",
45
+ "view/res_config_settings_views.xml",
43
46
  ],
44
47
  "assets": {
45
48
  "web.assets_backend": [
@@ -49,6 +49,11 @@ msgstr ""
49
49
  msgid "<b>Taxes summary</b>"
50
50
  msgstr ""
51
51
 
52
+ #. module: account_financial_report
53
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
54
+ msgid "<span class=\"o_form_label\">Intervals configuration</span>"
55
+ msgstr ""
56
+
52
57
  #. module: account_financial_report
53
58
  #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
54
59
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
@@ -88,6 +93,11 @@ msgstr ""
88
93
  msgid "Account"
89
94
  msgstr ""
90
95
 
96
+ #. module: account_financial_report
97
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
98
+ msgid "Account Age Report Config"
99
+ msgstr ""
100
+
91
101
  #. module: account_financial_report
92
102
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
93
103
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
@@ -146,11 +156,16 @@ msgstr ""
146
156
  msgid "Additional Filtering"
147
157
  msgstr ""
148
158
 
159
+ #. module: account_financial_report
160
+ #: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
161
+ msgid "Age Partner Report Configuration"
162
+ msgstr ""
163
+
149
164
  #. module: account_financial_report
150
165
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
151
166
  msgid ""
152
167
  "Age ≤ 120\n"
153
- " d."
168
+ " d."
154
169
  msgstr ""
155
170
 
156
171
  #. module: account_financial_report
@@ -164,7 +179,7 @@ msgstr ""
164
179
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
165
180
  msgid ""
166
181
  "Age ≤ 30\n"
167
- " d."
182
+ " d."
168
183
  msgstr ""
169
184
 
170
185
  #. module: account_financial_report
@@ -178,7 +193,7 @@ msgstr ""
178
193
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
179
194
  msgid ""
180
195
  "Age ≤ 60\n"
181
- " d."
196
+ " d."
182
197
  msgstr ""
183
198
 
184
199
  #. module: account_financial_report
@@ -192,7 +207,7 @@ msgstr ""
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."
210
+ " d."
196
211
  msgstr ""
197
212
 
198
213
  #. module: account_financial_report
@@ -392,6 +407,7 @@ msgstr ""
392
407
 
393
408
  #. module: account_financial_report
394
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
395
411
  #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
396
412
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
397
413
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
@@ -409,6 +425,18 @@ msgid "Compute accounts"
409
425
  msgstr ""
410
426
 
411
427
  #. module: account_financial_report
428
+ #: model:ir.model,name:account_financial_report.model_res_config_settings
429
+ msgid "Config Settings"
430
+ msgstr ""
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 ""
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
412
440
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
413
441
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
414
442
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
@@ -419,6 +447,8 @@ msgid "Created by"
419
447
  msgstr ""
420
448
 
421
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
422
452
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
423
453
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
424
454
  #: 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 ""
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
@@ -873,6 +905,12 @@ msgstr ""
873
905
  msgid "Grouped By"
874
906
  msgstr ""
875
907
 
908
+ #. module: account_financial_report
909
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
910
+ msgid ""
911
+ "Here you can set the intervals that will appear on the Aged Partner Balance."
912
+ msgstr ""
913
+
876
914
  #. module: account_financial_report
877
915
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
878
916
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -901,6 +939,8 @@ msgid "Hierarchy Levels to display"
901
939
  msgstr ""
902
940
 
903
941
  #. module: account_financial_report
942
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
943
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
904
944
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
905
945
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
906
946
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
@@ -917,6 +957,17 @@ msgid ""
917
957
  "webkit one only), only centralized amounts per period."
918
958
  msgstr ""
919
959
 
960
+ #. module: account_financial_report
961
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
962
+ msgid "Inferior Limit"
963
+ msgstr ""
964
+
965
+ #. module: account_financial_report
966
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
967
+ #, python-format
968
+ msgid "Inferior Limit must be greather than zero"
969
+ msgstr ""
970
+
920
971
  #. module: account_financial_report
921
972
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
922
973
  msgid ""
@@ -942,6 +993,12 @@ msgstr ""
942
993
  msgid "Initial balance"
943
994
  msgstr ""
944
995
 
996
+ #. module: account_financial_report
997
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
998
+ #: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
999
+ msgid "Intervals configuration"
1000
+ msgstr ""
1001
+
945
1002
  #. module: account_financial_report
946
1003
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
947
1004
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
@@ -1008,6 +1065,8 @@ msgid "Journals"
1008
1065
  msgstr ""
1009
1066
 
1010
1067
  #. module: account_financial_report
1068
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
1069
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
1011
1070
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
1012
1071
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
1013
1072
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
@@ -1018,6 +1077,8 @@ msgid "Last Modified on"
1018
1077
  msgstr ""
1019
1078
 
1020
1079
  #. module: account_financial_report
1080
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
1081
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
1021
1082
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
1022
1083
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
1023
1084
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
@@ -1028,6 +1089,8 @@ msgid "Last Updated by"
1028
1089
  msgstr ""
1029
1090
 
1030
1091
  #. module: account_financial_report
1092
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
1093
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
1031
1094
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
1032
1095
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
1033
1096
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
@@ -1057,6 +1120,11 @@ msgstr ""
1057
1120
  msgid "Limit hierarchy levels"
1058
1121
  msgstr ""
1059
1122
 
1123
+ #. module: account_financial_report
1124
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
1125
+ msgid "Line"
1126
+ msgstr ""
1127
+
1060
1128
  #. module: account_financial_report
1061
1129
  #: code:addons/account_financial_report/report/general_ledger.py:0
1062
1130
  #: code:addons/account_financial_report/report/general_ledger.py:0
@@ -1067,6 +1135,16 @@ msgstr ""
1067
1135
  msgid "Missing Partner"
1068
1136
  msgstr ""
1069
1137
 
1138
+ #. module: account_financial_report
1139
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
1140
+ msgid "Model to set interval lines for Age partner balance report"
1141
+ msgstr ""
1142
+
1143
+ #. module: account_financial_report
1144
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
1145
+ msgid "Model to set intervals for Age partner balance report"
1146
+ msgstr ""
1147
+
1070
1148
  #. module: account_financial_report
1071
1149
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
1072
1150
  msgid "Move Target"
@@ -1077,9 +1155,17 @@ msgstr ""
1077
1155
  msgid "Moves"
1078
1156
  msgstr ""
1079
1157
 
1158
+ #. module: account_financial_report
1159
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1160
+ #, python-format
1161
+ msgid "Must complete Configuration Lines"
1162
+ msgstr ""
1163
+
1080
1164
  #. module: account_financial_report
1081
1165
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1082
1166
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1167
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
1168
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
1083
1169
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1084
1170
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1085
1171
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1087,6 +1173,13 @@ msgstr ""
1087
1173
  msgid "Name"
1088
1174
  msgstr ""
1089
1175
 
1176
+ #. module: account_financial_report
1177
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1178
+ #: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
1179
+ #, python-format
1180
+ msgid "Name must be unique per report configuration"
1181
+ msgstr ""
1182
+
1090
1183
  #. module: account_financial_report
1091
1184
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1092
1185
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1140,6 +1233,11 @@ msgstr ""
1140
1233
  msgid "Not due"
1141
1234
  msgstr ""
1142
1235
 
1236
+ #. module: account_financial_report
1237
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
1238
+ msgid "OCA Aged Report Configuration"
1239
+ msgstr ""
1240
+
1143
1241
  #. module: account_financial_report
1144
1242
  #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
1145
1243
  msgid "OCA accounting reports"
@@ -52,6 +52,11 @@ msgstr "91 - 120 يوم."
52
52
  msgid "<b>Taxes summary</b>"
53
53
  msgstr "‫<b>موجز الضرائب</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 "الحساب"
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 "تجميع القيود"
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 يوم."
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 يوم."
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 يوم."
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 يوم."
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 يوم."
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 يوم."
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 يوم."
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
@@ -396,6 +411,7 @@ msgstr "الرمز"
396
411
 
397
412
  #. module: account_financial_report
398
413
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
414
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
399
415
  #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
400
416
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
401
417
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
@@ -414,6 +430,18 @@ msgid "Compute accounts"
414
430
  msgstr "حسابات محسوبة"
415
431
 
416
432
  #. module: account_financial_report
433
+ #: model:ir.model,name:account_financial_report.model_res_config_settings
434
+ msgid "Config Settings"
435
+ msgstr ""
436
+
437
+ #. module: account_financial_report
438
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
439
+ msgid "Configurations"
440
+ msgstr ""
441
+
442
+ #. module: account_financial_report
443
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
444
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
417
445
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
418
446
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
419
447
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
@@ -424,6 +452,8 @@ msgid "Created by"
424
452
  msgstr "أنشئ بواسطة"
425
453
 
426
454
  #. module: account_financial_report
455
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
456
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
427
457
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
428
458
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
429
459
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
@@ -597,6 +627,8 @@ msgid "Detail Taxes"
597
627
  msgstr "تفصيل الضرائب"
598
628
 
599
629
  #. module: account_financial_report
630
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
631
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
600
632
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
601
633
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
602
634
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
@@ -882,6 +914,12 @@ msgstr "تجميع القيود حسب"
882
914
  msgid "Grouped By"
883
915
  msgstr ""
884
916
 
917
+ #. module: account_financial_report
918
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
919
+ msgid ""
920
+ "Here you can set the intervals that will appear on the Aged Partner Balance."
921
+ msgstr ""
922
+
885
923
  #. module: account_financial_report
886
924
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
887
925
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -911,6 +949,8 @@ msgid "Hierarchy Levels to display"
911
949
  msgstr ""
912
950
 
913
951
  #. module: account_financial_report
952
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
953
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
914
954
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
915
955
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
916
956
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
@@ -927,6 +967,17 @@ msgid ""
927
967
  "webkit one only), only centralized amounts per period."
928
968
  msgstr ""
929
969
 
970
+ #. module: account_financial_report
971
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
972
+ msgid "Inferior Limit"
973
+ msgstr ""
974
+
975
+ #. module: account_financial_report
976
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
977
+ #, python-format
978
+ msgid "Inferior Limit must be greather than zero"
979
+ msgstr ""
980
+
930
981
  #. module: account_financial_report
931
982
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
932
983
  #, fuzzy
@@ -950,6 +1001,12 @@ msgstr "الرصيد الافتتاحي"
950
1001
  msgid "Initial balance"
951
1002
  msgstr "الرصيد الافتتاحي"
952
1003
 
1004
+ #. module: account_financial_report
1005
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
1006
+ #: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
1007
+ msgid "Intervals configuration"
1008
+ msgstr ""
1009
+
953
1010
  #. module: account_financial_report
954
1011
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
955
1012
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
@@ -1020,6 +1077,8 @@ msgid "Journals"
1020
1077
  msgstr "اليوميات"
1021
1078
 
1022
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
1023
1082
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
1024
1083
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
1025
1084
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
@@ -1030,6 +1089,8 @@ msgid "Last Modified on"
1030
1089
  msgstr "آخر تعديل في"
1031
1090
 
1032
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
1033
1094
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
1034
1095
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
1035
1096
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
@@ -1040,6 +1101,8 @@ msgid "Last Updated by"
1040
1101
  msgstr "آخر تحديث بواسطة"
1041
1102
 
1042
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
1043
1106
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
1044
1107
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
1045
1108
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
@@ -1069,6 +1132,11 @@ msgstr "المستوى %s"
1069
1132
  msgid "Limit hierarchy levels"
1070
1133
  msgstr ""
1071
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 "بند"
1139
+
1072
1140
  #. module: account_financial_report
1073
1141
  #: code:addons/account_financial_report/report/general_ledger.py:0
1074
1142
  #: code:addons/account_financial_report/report/open_items.py:0
@@ -1077,6 +1145,16 @@ msgstr ""
1077
1145
  msgid "Missing Partner"
1078
1146
  msgstr ""
1079
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
+
1153
+ #. module: account_financial_report
1154
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
1155
+ msgid "Model to set intervals for Age partner balance report"
1156
+ msgstr ""
1157
+
1080
1158
  #. module: account_financial_report
1081
1159
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
1082
1160
  msgid "Move Target"
@@ -1087,9 +1165,17 @@ msgstr "التحركات المستهدفة"
1087
1165
  msgid "Moves"
1088
1166
  msgstr "القيود"
1089
1167
 
1168
+ #. module: account_financial_report
1169
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1170
+ #, python-format
1171
+ msgid "Must complete Configuration Lines"
1172
+ msgstr ""
1173
+
1090
1174
  #. module: account_financial_report
1091
1175
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1092
1176
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1177
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
1178
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
1093
1179
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1094
1180
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1095
1181
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1097,6 +1183,13 @@ msgstr "القيود"
1097
1183
  msgid "Name"
1098
1184
  msgstr "الاسم"
1099
1185
 
1186
+ #. module: account_financial_report
1187
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1188
+ #: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
1189
+ #, python-format
1190
+ msgid "Name must be unique per report configuration"
1191
+ msgstr ""
1192
+
1100
1193
  #. module: account_financial_report
1101
1194
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1102
1195
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1148,6 +1241,11 @@ msgstr "غير مرحّل"
1148
1241
  msgid "Not due"
1149
1242
  msgstr "غير مستحق"
1150
1243
 
1244
+ #. module: account_financial_report
1245
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
1246
+ msgid "OCA Aged Report Configuration"
1247
+ msgstr ""
1248
+
1151
1249
  #. module: account_financial_report
1152
1250
  #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
1153
1251
  msgid "OCA accounting reports"
@@ -1801,6 +1899,26 @@ msgstr ""
1801
1899
  msgid "width: 8.11%;"
1802
1900
  msgstr ""
1803
1901
 
1902
+ #~ msgid ""
1903
+ #~ "Age ≤ 120\n"
1904
+ #~ " d."
1905
+ #~ msgstr "≤ 120 يوم."
1906
+
1907
+ #~ msgid ""
1908
+ #~ "Age ≤ 30\n"
1909
+ #~ " d."
1910
+ #~ msgstr "المدة ≤ 30 يوم."
1911
+
1912
+ #~ msgid ""
1913
+ #~ "Age ≤ 60\n"
1914
+ #~ " d."
1915
+ #~ msgstr "المدة ≤ 60 يوم."
1916
+
1917
+ #~ msgid ""
1918
+ #~ "Age ≤ 90\n"
1919
+ #~ " d."
1920
+ #~ msgstr "المدة ≤ 90 يوم."
1921
+
1804
1922
  #~ msgid "Child Accounts"
1805
1923
  #~ msgstr "حسابات فرعية"
1806
1924
 
@@ -1983,9 +2101,6 @@ msgstr ""
1983
2101
  #~ msgid "Label"
1984
2102
  #~ msgstr "البيان"
1985
2103
 
1986
- #~ msgid "Line"
1987
- #~ msgstr "بند"
1988
-
1989
2104
  #~ msgid "Matching Number"
1990
2105
  #~ msgstr "الرقم المطابق"
1991
2106