odoo-addon-account-financial-report 16.0.1.5.4.4__py3-none-any.whl → 16.0.1.6.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of odoo-addon-account-financial-report might be problematic. Click here for more details.
- odoo/addons/account_financial_report/README.rst +36 -1
- odoo/addons/account_financial_report/__manifest__.py +4 -1
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +105 -5
- odoo/addons/account_financial_report/i18n/ar.po +129 -12
- odoo/addons/account_financial_report/i18n/ca.po +133 -13
- odoo/addons/account_financial_report/i18n/de.po +133 -16
- odoo/addons/account_financial_report/i18n/es.po +142 -13
- odoo/addons/account_financial_report/i18n/es_AR.po +133 -13
- odoo/addons/account_financial_report/i18n/es_MX.po +105 -5
- odoo/addons/account_financial_report/i18n/fr.po +133 -16
- odoo/addons/account_financial_report/i18n/fr_CH.po +129 -12
- odoo/addons/account_financial_report/i18n/fr_FR.po +133 -13
- odoo/addons/account_financial_report/i18n/hr.po +133 -13
- odoo/addons/account_financial_report/i18n/hr_HR.po +105 -5
- odoo/addons/account_financial_report/i18n/it.po +133 -16
- odoo/addons/account_financial_report/i18n/ja.po +105 -5
- odoo/addons/account_financial_report/i18n/nl.po +133 -16
- odoo/addons/account_financial_report/i18n/nl_NL.po +105 -5
- odoo/addons/account_financial_report/i18n/pt.po +129 -9
- odoo/addons/account_financial_report/i18n/pt_BR.po +133 -16
- odoo/addons/account_financial_report/i18n/ro.po +133 -16
- odoo/addons/account_financial_report/i18n/sv.po +133 -13
- odoo/addons/account_financial_report/i18n/tr.po +105 -5
- odoo/addons/account_financial_report/models/__init__.py +2 -0
- odoo/addons/account_financial_report/models/account_age_report_configuration.py +47 -0
- odoo/addons/account_financial_report/models/res_config_settings.py +14 -0
- odoo/addons/account_financial_report/readme/CONFIGURE.rst +26 -0
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst +1 -0
- odoo/addons/account_financial_report/readme/DESCRIPTION.rst +4 -0
- odoo/addons/account_financial_report/report/aged_partner_balance.py +69 -8
- odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +145 -104
- odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +428 -333
- odoo/addons/account_financial_report/security/ir.model.access.csv +2 -0
- odoo/addons/account_financial_report/security/security.xml +10 -0
- odoo/addons/account_financial_report/static/description/index.html +45 -21
- odoo/addons/account_financial_report/tests/__init__.py +1 -0
- odoo/addons/account_financial_report/tests/test_age_report_configuration.py +41 -0
- odoo/addons/account_financial_report/tests/test_aged_partner_balance.py +88 -7
- odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +41 -0
- odoo/addons/account_financial_report/view/res_config_settings_views.xml +56 -0
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +4 -0
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml +2 -3
- {odoo_addon_account_financial_report-16.0.1.5.4.4.dist-info → odoo_addon_account_financial_report-16.0.1.6.0.1.dist-info}/METADATA +37 -2
- {odoo_addon_account_financial_report-16.0.1.5.4.4.dist-info → odoo_addon_account_financial_report-16.0.1.6.0.1.dist-info}/RECORD +46 -39
- {odoo_addon_account_financial_report-16.0.1.5.4.4.dist-info → odoo_addon_account_financial_report-16.0.1.6.0.1.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-16.0.1.5.4.4.dist-info → odoo_addon_account_financial_report-16.0.1.6.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
|
|
@@ -92,6 +97,11 @@ msgstr ""
|
|
|
92
97
|
msgid "Account"
|
|
93
98
|
msgstr "Compte"
|
|
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
|
|
@@ -155,12 +165,17 @@ msgstr "Activer la centralisation"
|
|
|
155
165
|
msgid "Additional Filtering"
|
|
156
166
|
msgstr ""
|
|
157
167
|
|
|
168
|
+
#. module: account_financial_report
|
|
169
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
170
|
+
msgid "Age Partner Report Configuration"
|
|
171
|
+
msgstr ""
|
|
172
|
+
|
|
158
173
|
#. module: account_financial_report
|
|
159
174
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
160
175
|
msgid ""
|
|
161
176
|
"Age ≤ 120\n"
|
|
162
|
-
"
|
|
163
|
-
msgstr "
|
|
177
|
+
" d."
|
|
178
|
+
msgstr ""
|
|
164
179
|
|
|
165
180
|
#. module: account_financial_report
|
|
166
181
|
#. odoo-python
|
|
@@ -173,8 +188,8 @@ msgstr "≤ 120 jours"
|
|
|
173
188
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
174
189
|
msgid ""
|
|
175
190
|
"Age ≤ 30\n"
|
|
176
|
-
"
|
|
177
|
-
msgstr "
|
|
191
|
+
" d."
|
|
192
|
+
msgstr ""
|
|
178
193
|
|
|
179
194
|
#. module: account_financial_report
|
|
180
195
|
#. odoo-python
|
|
@@ -187,8 +202,8 @@ msgstr "≤ 30 j."
|
|
|
187
202
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
188
203
|
msgid ""
|
|
189
204
|
"Age ≤ 60\n"
|
|
190
|
-
"
|
|
191
|
-
msgstr "
|
|
205
|
+
" d."
|
|
206
|
+
msgstr ""
|
|
192
207
|
|
|
193
208
|
#. module: account_financial_report
|
|
194
209
|
#. odoo-python
|
|
@@ -201,8 +216,8 @@ msgstr "≤ 60 j."
|
|
|
201
216
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
202
217
|
msgid ""
|
|
203
218
|
"Age ≤ 90\n"
|
|
204
|
-
"
|
|
205
|
-
msgstr "
|
|
219
|
+
" d."
|
|
220
|
+
msgstr ""
|
|
206
221
|
|
|
207
222
|
#. module: account_financial_report
|
|
208
223
|
#. odoo-python
|
|
@@ -423,6 +438,7 @@ msgstr "Code"
|
|
|
423
438
|
#. module: account_financial_report
|
|
424
439
|
#. odoo-python
|
|
425
440
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
441
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
426
442
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
427
443
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
428
444
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -440,6 +456,18 @@ msgid "Compute accounts"
|
|
|
440
456
|
msgstr "Calculer les comptes"
|
|
441
457
|
|
|
442
458
|
#. module: account_financial_report
|
|
459
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
460
|
+
msgid "Config Settings"
|
|
461
|
+
msgstr ""
|
|
462
|
+
|
|
463
|
+
#. module: account_financial_report
|
|
464
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
465
|
+
msgid "Configurations"
|
|
466
|
+
msgstr ""
|
|
467
|
+
|
|
468
|
+
#. module: account_financial_report
|
|
469
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
470
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
443
471
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
444
472
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
445
473
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -450,6 +478,8 @@ msgid "Created by"
|
|
|
450
478
|
msgstr "Créé par"
|
|
451
479
|
|
|
452
480
|
#. module: account_financial_report
|
|
481
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
482
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
453
483
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
454
484
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
455
485
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -638,6 +668,8 @@ msgid "Detail Taxes"
|
|
|
638
668
|
msgstr "Détail des taxes"
|
|
639
669
|
|
|
640
670
|
#. module: account_financial_report
|
|
671
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
672
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
641
673
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
642
674
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
643
675
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -932,6 +964,12 @@ msgstr "Grouper les entrées par"
|
|
|
932
964
|
msgid "Grouped By"
|
|
933
965
|
msgstr ""
|
|
934
966
|
|
|
967
|
+
#. module: account_financial_report
|
|
968
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
969
|
+
msgid ""
|
|
970
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
971
|
+
msgstr ""
|
|
972
|
+
|
|
935
973
|
#. module: account_financial_report
|
|
936
974
|
#. odoo-python
|
|
937
975
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -961,6 +999,8 @@ msgid "Hierarchy Levels to display"
|
|
|
961
999
|
msgstr "Niveaux de hiérarchie à afficher"
|
|
962
1000
|
|
|
963
1001
|
#. module: account_financial_report
|
|
1002
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
1003
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
964
1004
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
965
1005
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
966
1006
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -979,6 +1019,18 @@ msgstr ""
|
|
|
979
1019
|
"Si coché, aucun détail ne sera affiché dans les rapport du Grand Livre "
|
|
980
1020
|
"(uniquement le webkit), seulement les montants centralisés par période."
|
|
981
1021
|
|
|
1022
|
+
#. module: account_financial_report
|
|
1023
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
1024
|
+
msgid "Inferior Limit"
|
|
1025
|
+
msgstr ""
|
|
1026
|
+
|
|
1027
|
+
#. module: account_financial_report
|
|
1028
|
+
#. odoo-python
|
|
1029
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1030
|
+
#, python-format
|
|
1031
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1032
|
+
msgstr ""
|
|
1033
|
+
|
|
982
1034
|
#. module: account_financial_report
|
|
983
1035
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
984
1036
|
#, fuzzy
|
|
@@ -1007,6 +1059,12 @@ msgstr ""
|
|
|
1007
1059
|
msgid "Initial balance"
|
|
1008
1060
|
msgstr "Solde initial"
|
|
1009
1061
|
|
|
1062
|
+
#. module: account_financial_report
|
|
1063
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1064
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1065
|
+
msgid "Intervals configuration"
|
|
1066
|
+
msgstr ""
|
|
1067
|
+
|
|
1010
1068
|
#. module: account_financial_report
|
|
1011
1069
|
#. odoo-python
|
|
1012
1070
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -1078,6 +1136,8 @@ msgid "Journals"
|
|
|
1078
1136
|
msgstr "Journaux"
|
|
1079
1137
|
|
|
1080
1138
|
#. module: account_financial_report
|
|
1139
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1140
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1081
1141
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1082
1142
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1083
1143
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1088,6 +1148,8 @@ msgid "Last Modified on"
|
|
|
1088
1148
|
msgstr "Dernière modification le"
|
|
1089
1149
|
|
|
1090
1150
|
#. module: account_financial_report
|
|
1151
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1152
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1091
1153
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1092
1154
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1093
1155
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1098,6 +1160,8 @@ msgid "Last Updated by"
|
|
|
1098
1160
|
msgstr "Dernière mise à jour par"
|
|
1099
1161
|
|
|
1100
1162
|
#. module: account_financial_report
|
|
1163
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1164
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1101
1165
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1102
1166
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1103
1167
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1129,6 +1193,11 @@ msgstr "Niveau %s"
|
|
|
1129
1193
|
msgid "Limit hierarchy levels"
|
|
1130
1194
|
msgstr "Limiter les niveaux de hiérarchie"
|
|
1131
1195
|
|
|
1196
|
+
#. module: account_financial_report
|
|
1197
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1198
|
+
msgid "Line"
|
|
1199
|
+
msgstr "Ligne"
|
|
1200
|
+
|
|
1132
1201
|
#. module: account_financial_report
|
|
1133
1202
|
#. odoo-python
|
|
1134
1203
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
@@ -1138,6 +1207,16 @@ msgstr "Limiter les niveaux de hiérarchie"
|
|
|
1138
1207
|
msgid "Missing Partner"
|
|
1139
1208
|
msgstr ""
|
|
1140
1209
|
|
|
1210
|
+
#. module: account_financial_report
|
|
1211
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1212
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1213
|
+
msgstr ""
|
|
1214
|
+
|
|
1215
|
+
#. module: account_financial_report
|
|
1216
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1217
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1218
|
+
msgstr ""
|
|
1219
|
+
|
|
1141
1220
|
#. module: account_financial_report
|
|
1142
1221
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1143
1222
|
msgid "Move Target"
|
|
@@ -1148,10 +1227,19 @@ msgstr "Mouvement cible"
|
|
|
1148
1227
|
msgid "Moves"
|
|
1149
1228
|
msgstr "Mouvements"
|
|
1150
1229
|
|
|
1230
|
+
#. module: account_financial_report
|
|
1231
|
+
#. odoo-python
|
|
1232
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1233
|
+
#, python-format
|
|
1234
|
+
msgid "Must complete Configuration Lines"
|
|
1235
|
+
msgstr ""
|
|
1236
|
+
|
|
1151
1237
|
#. module: account_financial_report
|
|
1152
1238
|
#. odoo-python
|
|
1153
1239
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1154
1240
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1241
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1242
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1155
1243
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1156
1244
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1157
1245
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1159,6 +1247,14 @@ msgstr "Mouvements"
|
|
|
1159
1247
|
msgid "Name"
|
|
1160
1248
|
msgstr "Nom"
|
|
1161
1249
|
|
|
1250
|
+
#. module: account_financial_report
|
|
1251
|
+
#. odoo-python
|
|
1252
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1253
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1254
|
+
#, python-format
|
|
1255
|
+
msgid "Name must be unique per report configuration"
|
|
1256
|
+
msgstr ""
|
|
1257
|
+
|
|
1162
1258
|
#. module: account_financial_report
|
|
1163
1259
|
#. odoo-python
|
|
1164
1260
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
@@ -1215,6 +1311,11 @@ msgstr "Non comptabilisé"
|
|
|
1215
1311
|
msgid "Not due"
|
|
1216
1312
|
msgstr "Non échu"
|
|
1217
1313
|
|
|
1314
|
+
#. module: account_financial_report
|
|
1315
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1316
|
+
msgid "OCA Aged Report Configuration"
|
|
1317
|
+
msgstr ""
|
|
1318
|
+
|
|
1218
1319
|
#. module: account_financial_report
|
|
1219
1320
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1220
1321
|
msgid "OCA accounting reports"
|
|
@@ -1849,7 +1950,6 @@ msgid "future"
|
|
|
1849
1950
|
msgstr ""
|
|
1850
1951
|
|
|
1851
1952
|
#. module: account_financial_report
|
|
1852
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1853
1953
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1854
1954
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1855
1955
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1898,6 +1998,26 @@ msgstr ""
|
|
|
1898
1998
|
msgid "width: 8.11%;"
|
|
1899
1999
|
msgstr ""
|
|
1900
2000
|
|
|
2001
|
+
#~ msgid ""
|
|
2002
|
+
#~ "Age ≤ 120\n"
|
|
2003
|
+
#~ " d."
|
|
2004
|
+
#~ msgstr "≤ 120 jours"
|
|
2005
|
+
|
|
2006
|
+
#~ msgid ""
|
|
2007
|
+
#~ "Age ≤ 30\n"
|
|
2008
|
+
#~ " d."
|
|
2009
|
+
#~ msgstr "≤ 30 jours"
|
|
2010
|
+
|
|
2011
|
+
#~ msgid ""
|
|
2012
|
+
#~ "Age ≤ 60\n"
|
|
2013
|
+
#~ " d."
|
|
2014
|
+
#~ msgstr "≤ 60 jours"
|
|
2015
|
+
|
|
2016
|
+
#~ msgid ""
|
|
2017
|
+
#~ "Age ≤ 90\n"
|
|
2018
|
+
#~ " d."
|
|
2019
|
+
#~ msgstr "≤ 90 j."
|
|
2020
|
+
|
|
1901
2021
|
#~ msgid "Filter analytic tags"
|
|
1902
2022
|
#~ msgstr "Filtrer les étiquettes analytiques"
|
|
1903
2023
|
|
|
@@ -2115,9 +2235,6 @@ msgstr ""
|
|
|
2115
2235
|
#~ msgid "Label"
|
|
2116
2236
|
#~ msgstr "Libellé"
|
|
2117
2237
|
|
|
2118
|
-
#~ msgid "Line"
|
|
2119
|
-
#~ msgstr "Ligne"
|
|
2120
|
-
|
|
2121
2238
|
#~ msgid "Matching Number"
|
|
2122
2239
|
#~ msgstr "Correspond au numéro"
|
|
2123
2240
|
|
|
@@ -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
|
|
@@ -92,6 +97,11 @@ msgstr "Résumé du rapport financier comptable au format XLSX"
|
|
|
92
97
|
msgid "Account"
|
|
93
98
|
msgstr "Compte"
|
|
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
|
|
@@ -153,14 +163,17 @@ msgstr "Activer la centralisation"
|
|
|
153
163
|
msgid "Additional Filtering"
|
|
154
164
|
msgstr "Filtre supplémentaire"
|
|
155
165
|
|
|
166
|
+
#. module: account_financial_report
|
|
167
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
168
|
+
msgid "Age Partner Report Configuration"
|
|
169
|
+
msgstr ""
|
|
170
|
+
|
|
156
171
|
#. module: account_financial_report
|
|
157
172
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
158
173
|
msgid ""
|
|
159
174
|
"Age ≤ 120\n"
|
|
160
|
-
"
|
|
175
|
+
" d."
|
|
161
176
|
msgstr ""
|
|
162
|
-
"Age≤ 120\n"
|
|
163
|
-
" d."
|
|
164
177
|
|
|
165
178
|
#. module: account_financial_report
|
|
166
179
|
#. odoo-python
|
|
@@ -173,10 +186,8 @@ msgstr "Age≤ 120 jours."
|
|
|
173
186
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
174
187
|
msgid ""
|
|
175
188
|
"Age ≤ 30\n"
|
|
176
|
-
"
|
|
189
|
+
" d."
|
|
177
190
|
msgstr ""
|
|
178
|
-
"Age≤ 30\n"
|
|
179
|
-
" jours."
|
|
180
191
|
|
|
181
192
|
#. module: account_financial_report
|
|
182
193
|
#. odoo-python
|
|
@@ -189,10 +200,8 @@ msgstr "≤ 30 j."
|
|
|
189
200
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
190
201
|
msgid ""
|
|
191
202
|
"Age ≤ 60\n"
|
|
192
|
-
"
|
|
203
|
+
" d."
|
|
193
204
|
msgstr ""
|
|
194
|
-
"Age≤ 60\n"
|
|
195
|
-
" jours."
|
|
196
205
|
|
|
197
206
|
#. module: account_financial_report
|
|
198
207
|
#. odoo-python
|
|
@@ -205,10 +214,8 @@ msgstr "≤ 60 j."
|
|
|
205
214
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
206
215
|
msgid ""
|
|
207
216
|
"Age ≤ 90\n"
|
|
208
|
-
"
|
|
217
|
+
" d."
|
|
209
218
|
msgstr ""
|
|
210
|
-
"Age≤ 90\n"
|
|
211
|
-
" jours."
|
|
212
219
|
|
|
213
220
|
#. module: account_financial_report
|
|
214
221
|
#. odoo-python
|
|
@@ -426,6 +433,7 @@ msgstr "Code"
|
|
|
426
433
|
#. module: account_financial_report
|
|
427
434
|
#. odoo-python
|
|
428
435
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
436
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
429
437
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
430
438
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
431
439
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -443,6 +451,18 @@ msgid "Compute accounts"
|
|
|
443
451
|
msgstr "Calculer les comptes"
|
|
444
452
|
|
|
445
453
|
#. module: account_financial_report
|
|
454
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
455
|
+
msgid "Config Settings"
|
|
456
|
+
msgstr ""
|
|
457
|
+
|
|
458
|
+
#. module: account_financial_report
|
|
459
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
460
|
+
msgid "Configurations"
|
|
461
|
+
msgstr ""
|
|
462
|
+
|
|
463
|
+
#. module: account_financial_report
|
|
464
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
465
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
446
466
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
447
467
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
448
468
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -453,6 +473,8 @@ msgid "Created by"
|
|
|
453
473
|
msgstr "Créé par"
|
|
454
474
|
|
|
455
475
|
#. module: account_financial_report
|
|
476
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
477
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
456
478
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
457
479
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
458
480
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -641,6 +663,8 @@ msgid "Detail Taxes"
|
|
|
641
663
|
msgstr "Détail des taxes"
|
|
642
664
|
|
|
643
665
|
#. module: account_financial_report
|
|
666
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
667
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
644
668
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
645
669
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
646
670
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -929,6 +953,12 @@ msgstr "Grouper les écritures par"
|
|
|
929
953
|
msgid "Grouped By"
|
|
930
954
|
msgstr "Groupé par"
|
|
931
955
|
|
|
956
|
+
#. module: account_financial_report
|
|
957
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
958
|
+
msgid ""
|
|
959
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
960
|
+
msgstr ""
|
|
961
|
+
|
|
932
962
|
#. module: account_financial_report
|
|
933
963
|
#. odoo-python
|
|
934
964
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -958,6 +988,8 @@ msgid "Hierarchy Levels to display"
|
|
|
958
988
|
msgstr "Niveaux de hiérarchie à afficher"
|
|
959
989
|
|
|
960
990
|
#. module: account_financial_report
|
|
991
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
992
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
961
993
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
962
994
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
963
995
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -976,6 +1008,18 @@ msgstr ""
|
|
|
976
1008
|
"Si coché, aucun détail ne sera affiché dans les rapport du Grand Livre "
|
|
977
1009
|
"(uniquement le webkit), seulement les montants centralisés par période."
|
|
978
1010
|
|
|
1011
|
+
#. module: account_financial_report
|
|
1012
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
1013
|
+
msgid "Inferior Limit"
|
|
1014
|
+
msgstr ""
|
|
1015
|
+
|
|
1016
|
+
#. module: account_financial_report
|
|
1017
|
+
#. odoo-python
|
|
1018
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1019
|
+
#, python-format
|
|
1020
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1021
|
+
msgstr ""
|
|
1022
|
+
|
|
979
1023
|
#. module: account_financial_report
|
|
980
1024
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
981
1025
|
msgid ""
|
|
@@ -1003,6 +1047,12 @@ msgstr ""
|
|
|
1003
1047
|
msgid "Initial balance"
|
|
1004
1048
|
msgstr "Solde initial"
|
|
1005
1049
|
|
|
1050
|
+
#. module: account_financial_report
|
|
1051
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1052
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1053
|
+
msgid "Intervals configuration"
|
|
1054
|
+
msgstr ""
|
|
1055
|
+
|
|
1006
1056
|
#. module: account_financial_report
|
|
1007
1057
|
#. odoo-python
|
|
1008
1058
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -1072,6 +1122,8 @@ msgid "Journals"
|
|
|
1072
1122
|
msgstr "Journaux"
|
|
1073
1123
|
|
|
1074
1124
|
#. module: account_financial_report
|
|
1125
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1126
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1075
1127
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1076
1128
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1077
1129
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1082,6 +1134,8 @@ msgid "Last Modified on"
|
|
|
1082
1134
|
msgstr "Dernière modification le"
|
|
1083
1135
|
|
|
1084
1136
|
#. module: account_financial_report
|
|
1137
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1138
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1085
1139
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1086
1140
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1087
1141
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1092,6 +1146,8 @@ msgid "Last Updated by"
|
|
|
1092
1146
|
msgstr "Dernière mise à jour par"
|
|
1093
1147
|
|
|
1094
1148
|
#. module: account_financial_report
|
|
1149
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1150
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1095
1151
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1096
1152
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1097
1153
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1123,6 +1179,11 @@ msgstr "Niveau %s"
|
|
|
1123
1179
|
msgid "Limit hierarchy levels"
|
|
1124
1180
|
msgstr "Limiter les niveaux de hiérarchie"
|
|
1125
1181
|
|
|
1182
|
+
#. module: account_financial_report
|
|
1183
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1184
|
+
msgid "Line"
|
|
1185
|
+
msgstr ""
|
|
1186
|
+
|
|
1126
1187
|
#. module: account_financial_report
|
|
1127
1188
|
#. odoo-python
|
|
1128
1189
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
@@ -1132,6 +1193,16 @@ msgstr "Limiter les niveaux de hiérarchie"
|
|
|
1132
1193
|
msgid "Missing Partner"
|
|
1133
1194
|
msgstr ""
|
|
1134
1195
|
|
|
1196
|
+
#. module: account_financial_report
|
|
1197
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1198
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1199
|
+
msgstr ""
|
|
1200
|
+
|
|
1201
|
+
#. module: account_financial_report
|
|
1202
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1203
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1204
|
+
msgstr ""
|
|
1205
|
+
|
|
1135
1206
|
#. module: account_financial_report
|
|
1136
1207
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1137
1208
|
msgid "Move Target"
|
|
@@ -1142,10 +1213,19 @@ msgstr "Mouvement cible"
|
|
|
1142
1213
|
msgid "Moves"
|
|
1143
1214
|
msgstr "Mouvements"
|
|
1144
1215
|
|
|
1216
|
+
#. module: account_financial_report
|
|
1217
|
+
#. odoo-python
|
|
1218
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1219
|
+
#, python-format
|
|
1220
|
+
msgid "Must complete Configuration Lines"
|
|
1221
|
+
msgstr ""
|
|
1222
|
+
|
|
1145
1223
|
#. module: account_financial_report
|
|
1146
1224
|
#. odoo-python
|
|
1147
1225
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1148
1226
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1227
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1228
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1149
1229
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1150
1230
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1151
1231
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1153,6 +1233,14 @@ msgstr "Mouvements"
|
|
|
1153
1233
|
msgid "Name"
|
|
1154
1234
|
msgstr "Nom"
|
|
1155
1235
|
|
|
1236
|
+
#. module: account_financial_report
|
|
1237
|
+
#. odoo-python
|
|
1238
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1239
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1240
|
+
#, python-format
|
|
1241
|
+
msgid "Name must be unique per report configuration"
|
|
1242
|
+
msgstr ""
|
|
1243
|
+
|
|
1156
1244
|
#. module: account_financial_report
|
|
1157
1245
|
#. odoo-python
|
|
1158
1246
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
@@ -1209,6 +1297,11 @@ msgstr "Non comptabilisé"
|
|
|
1209
1297
|
msgid "Not due"
|
|
1210
1298
|
msgstr "Non échu"
|
|
1211
1299
|
|
|
1300
|
+
#. module: account_financial_report
|
|
1301
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1302
|
+
msgid "OCA Aged Report Configuration"
|
|
1303
|
+
msgstr ""
|
|
1304
|
+
|
|
1212
1305
|
#. module: account_financial_report
|
|
1213
1306
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1214
1307
|
msgid "OCA accounting reports"
|
|
@@ -1838,7 +1931,6 @@ msgid "future"
|
|
|
1838
1931
|
msgstr "futur"
|
|
1839
1932
|
|
|
1840
1933
|
#. module: account_financial_report
|
|
1841
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1842
1934
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1843
1935
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1844
1936
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1887,6 +1979,34 @@ msgstr "Largeur : 38,92% ;"
|
|
|
1887
1979
|
msgid "width: 8.11%;"
|
|
1888
1980
|
msgstr "largeur : 8.11% ;"
|
|
1889
1981
|
|
|
1982
|
+
#~ msgid ""
|
|
1983
|
+
#~ "Age ≤ 120\n"
|
|
1984
|
+
#~ " d."
|
|
1985
|
+
#~ msgstr ""
|
|
1986
|
+
#~ "Age≤ 120\n"
|
|
1987
|
+
#~ " d."
|
|
1988
|
+
|
|
1989
|
+
#~ msgid ""
|
|
1990
|
+
#~ "Age ≤ 30\n"
|
|
1991
|
+
#~ " d."
|
|
1992
|
+
#~ msgstr ""
|
|
1993
|
+
#~ "Age≤ 30\n"
|
|
1994
|
+
#~ " jours."
|
|
1995
|
+
|
|
1996
|
+
#~ msgid ""
|
|
1997
|
+
#~ "Age ≤ 60\n"
|
|
1998
|
+
#~ " d."
|
|
1999
|
+
#~ msgstr ""
|
|
2000
|
+
#~ "Age≤ 60\n"
|
|
2001
|
+
#~ " jours."
|
|
2002
|
+
|
|
2003
|
+
#~ msgid ""
|
|
2004
|
+
#~ "Age ≤ 90\n"
|
|
2005
|
+
#~ " d."
|
|
2006
|
+
#~ msgstr ""
|
|
2007
|
+
#~ "Age≤ 90\n"
|
|
2008
|
+
#~ " jours."
|
|
2009
|
+
|
|
1890
2010
|
#~ msgid "Filter analytic tags"
|
|
1891
2011
|
#~ msgstr "Filtrer les étiquettes analytiques"
|
|
1892
2012
|
|