odoo-addon-account-financial-report 17.0.1.6.1.1__py3-none-any.whl → 18.0.1.0.0.3__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 +15 -8
- odoo/addons/account_financial_report/__manifest__.py +3 -2
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +1 -124
- odoo/addons/account_financial_report/i18n/ar.po +3 -100
- odoo/addons/account_financial_report/i18n/ca.po +1 -100
- odoo/addons/account_financial_report/i18n/de.po +3 -100
- odoo/addons/account_financial_report/i18n/es.po +0 -100
- odoo/addons/account_financial_report/i18n/es_AR.po +0 -100
- odoo/addons/account_financial_report/i18n/es_MX.po +0 -100
- odoo/addons/account_financial_report/i18n/fr.po +0 -100
- odoo/addons/account_financial_report/i18n/fr_CH.po +1 -100
- odoo/addons/account_financial_report/i18n/fr_FR.po +0 -100
- odoo/addons/account_financial_report/i18n/hr.po +0 -100
- odoo/addons/account_financial_report/i18n/hr_HR.po +3 -100
- odoo/addons/account_financial_report/i18n/it.po +3 -107
- odoo/addons/account_financial_report/i18n/ja.po +3 -100
- odoo/addons/account_financial_report/i18n/nl.po +1 -100
- odoo/addons/account_financial_report/i18n/nl_NL.po +2 -100
- odoo/addons/account_financial_report/i18n/pt.po +0 -100
- odoo/addons/account_financial_report/i18n/pt_BR.po +0 -100
- odoo/addons/account_financial_report/i18n/ro.po +1 -100
- odoo/addons/account_financial_report/i18n/sv.po +0 -100
- odoo/addons/account_financial_report/i18n/tr.po +0 -100
- odoo/addons/account_financial_report/models/account.py +1 -1
- odoo/addons/account_financial_report/models/account_age_report_configuration.py +6 -4
- odoo/addons/account_financial_report/models/account_group.py +3 -3
- odoo/addons/account_financial_report/readme/CONFIGURE.md +1 -1
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.md +2 -1
- odoo/addons/account_financial_report/readme/CREDITS.md +1 -0
- odoo/addons/account_financial_report/report/__init__.py +3 -3
- odoo/addons/account_financial_report/report/abstract_report.py +3 -1
- odoo/addons/account_financial_report/report/abstract_report_xlsx.py +5 -5
- odoo/addons/account_financial_report/report/aged_partner_balance.py +16 -20
- odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +30 -30
- odoo/addons/account_financial_report/report/general_ledger.py +26 -14
- odoo/addons/account_financial_report/report/general_ledger_xlsx.py +3 -3
- odoo/addons/account_financial_report/report/journal_ledger.py +9 -9
- odoo/addons/account_financial_report/report/journal_ledger_xlsx.py +1 -1
- odoo/addons/account_financial_report/report/open_items.py +1 -1
- odoo/addons/account_financial_report/report/open_items_xlsx.py +1 -1
- odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +29 -27
- odoo/addons/account_financial_report/report/templates/general_ledger.xml +2 -2
- odoo/addons/account_financial_report/report/templates/journal_ledger.xml +58 -66
- odoo/addons/account_financial_report/report/templates/layouts.xml +3 -9
- odoo/addons/account_financial_report/report/templates/trial_balance.xml +3 -5
- odoo/addons/account_financial_report/report/trial_balance.py +27 -30
- odoo/addons/account_financial_report/report/trial_balance_xlsx.py +1 -1
- odoo/addons/account_financial_report/report/vat_report.py +8 -4
- odoo/addons/account_financial_report/report/vat_report_xlsx.py +1 -1
- odoo/addons/account_financial_report/static/description/index.html +15 -8
- odoo/addons/account_financial_report/static/src/js/report.esm.js +1 -2
- odoo/addons/account_financial_report/static/src/js/report_action.esm.js +0 -1
- odoo/addons/account_financial_report/static/src/{css/report.css → scss/report.scss} +74 -42
- odoo/addons/account_financial_report/static/src/scss/report_html.scss +10 -0
- odoo/addons/account_financial_report/tests/__init__.py +1 -1
- odoo/addons/account_financial_report/tests/test_general_ledger.py +3 -3
- odoo/addons/account_financial_report/tests/test_journal_ledger.py +3 -4
- odoo/addons/account_financial_report/tests/test_open_items.py +2 -2
- odoo/addons/account_financial_report/tests/test_trial_balance.py +15 -8
- odoo/addons/account_financial_report/tests/test_vat_report.py +4 -5
- odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +6 -6
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +6 -4
- odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +5 -5
- odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py +8 -4
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/open_items_wizard.py +1 -1
- odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/trial_balance_wizard.py +10 -8
- odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/vat_report_wizard.py +2 -2
- odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml +14 -14
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/METADATA +20 -13
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/RECORD +76 -75
- odoo/addons/account_financial_report/static/src/css/report_html.css +0 -7
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/top_level.txt +0 -0
|
@@ -101,7 +101,6 @@ msgstr "R??sum?? du rapport financier comptable au format XLSX"
|
|
|
101
101
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
102
102
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
103
103
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
104
|
-
#, python-format
|
|
105
104
|
msgid "Account"
|
|
106
105
|
msgstr "Compte"
|
|
107
106
|
|
|
@@ -134,7 +133,6 @@ msgstr "Groupe de compte"
|
|
|
134
133
|
#. module: account_financial_report
|
|
135
134
|
#. odoo-python
|
|
136
135
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
137
|
-
#, python-format
|
|
138
136
|
msgid "Account Name"
|
|
139
137
|
msgstr "Nom du compte"
|
|
140
138
|
|
|
@@ -142,7 +140,6 @@ msgstr "Nom du compte"
|
|
|
142
140
|
#. odoo-python
|
|
143
141
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
144
142
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
145
|
-
#, python-format
|
|
146
143
|
msgid "Account at 0 filter"
|
|
147
144
|
msgstr "Filtrer les comptes ?? 0"
|
|
148
145
|
|
|
@@ -152,7 +149,6 @@ msgstr "Filtrer les comptes ?? 0"
|
|
|
152
149
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
153
150
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
154
151
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
155
|
-
#, python-format
|
|
156
152
|
msgid "Account balance at 0 filter"
|
|
157
153
|
msgstr "Filtrer les soldes de compte ?? 0"
|
|
158
154
|
|
|
@@ -186,7 +182,6 @@ msgstr ""
|
|
|
186
182
|
#. module: account_financial_report
|
|
187
183
|
#. odoo-python
|
|
188
184
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
189
|
-
#, python-format
|
|
190
185
|
msgid "Age ≤ 120 d."
|
|
191
186
|
msgstr ""
|
|
192
187
|
|
|
@@ -200,7 +195,6 @@ msgstr ""
|
|
|
200
195
|
#. module: account_financial_report
|
|
201
196
|
#. odoo-python
|
|
202
197
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
203
|
-
#, python-format
|
|
204
198
|
msgid "Age ≤ 30 d."
|
|
205
199
|
msgstr ""
|
|
206
200
|
|
|
@@ -214,7 +208,6 @@ msgstr ""
|
|
|
214
208
|
#. module: account_financial_report
|
|
215
209
|
#. odoo-python
|
|
216
210
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
217
|
-
#, python-format
|
|
218
211
|
msgid "Age ≤ 60 d."
|
|
219
212
|
msgstr ""
|
|
220
213
|
|
|
@@ -228,7 +221,6 @@ msgstr ""
|
|
|
228
221
|
#. module: account_financial_report
|
|
229
222
|
#. odoo-python
|
|
230
223
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
231
|
-
#, python-format
|
|
232
224
|
msgid "Age ≤ 90 d."
|
|
233
225
|
msgstr ""
|
|
234
226
|
|
|
@@ -239,7 +231,6 @@ msgstr ""
|
|
|
239
231
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
240
232
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
241
233
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
242
|
-
#, python-format
|
|
243
234
|
msgid "Aged Partner Balance"
|
|
244
235
|
msgstr "Balance ??g??e des tiers"
|
|
245
236
|
|
|
@@ -271,7 +262,6 @@ msgstr "Balance ??g??e des tiers XLSX"
|
|
|
271
262
|
#. module: account_financial_report
|
|
272
263
|
#. odoo-python
|
|
273
264
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
274
|
-
#, python-format
|
|
275
265
|
msgid "All"
|
|
276
266
|
msgstr "Tous"
|
|
277
267
|
|
|
@@ -303,7 +293,6 @@ msgstr "??critures comptabilis??es seulement"
|
|
|
303
293
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
304
294
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
305
295
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
306
|
-
#, python-format
|
|
307
296
|
msgid "All entries"
|
|
308
297
|
msgstr "Toutes les ??critures"
|
|
309
298
|
|
|
@@ -317,7 +306,6 @@ msgstr "Toutes les ??critures"
|
|
|
317
306
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
318
307
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
319
308
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
320
|
-
#, python-format
|
|
321
309
|
msgid "All posted entries"
|
|
322
310
|
msgstr "Toutes les ??critures comptabilis??es"
|
|
323
311
|
|
|
@@ -329,7 +317,6 @@ msgstr "Montant Devise."
|
|
|
329
317
|
#. module: account_financial_report
|
|
330
318
|
#. odoo-python
|
|
331
319
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
332
|
-
#, python-format
|
|
333
320
|
msgid "Amount Currency"
|
|
334
321
|
msgstr "Montant Devise"
|
|
335
322
|
|
|
@@ -337,7 +324,6 @@ msgstr "Montant Devise"
|
|
|
337
324
|
#. odoo-python
|
|
338
325
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
339
326
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
340
|
-
#, python-format
|
|
341
327
|
msgid "Amount cur."
|
|
342
328
|
msgstr "Montant Devise."
|
|
343
329
|
|
|
@@ -351,7 +337,6 @@ msgstr "Compte analytique"
|
|
|
351
337
|
#. odoo-python
|
|
352
338
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
353
339
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
354
|
-
#, python-format
|
|
355
340
|
msgid "Analytic Distribution"
|
|
356
341
|
msgstr "Distribution analytique"
|
|
357
342
|
|
|
@@ -370,21 +355,18 @@ msgstr "Montant de base"
|
|
|
370
355
|
#. module: account_financial_report
|
|
371
356
|
#. odoo-python
|
|
372
357
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
373
|
-
#, python-format
|
|
374
358
|
msgid "Base Balance"
|
|
375
359
|
msgstr "Solde de base"
|
|
376
360
|
|
|
377
361
|
#. module: account_financial_report
|
|
378
362
|
#. odoo-python
|
|
379
363
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
380
|
-
#, python-format
|
|
381
364
|
msgid "Base Credit"
|
|
382
365
|
msgstr "Cr??dit de base"
|
|
383
366
|
|
|
384
367
|
#. module: account_financial_report
|
|
385
368
|
#. odoo-python
|
|
386
369
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
387
|
-
#, python-format
|
|
388
370
|
msgid "Base Debit"
|
|
389
371
|
msgstr "D??bit de base"
|
|
390
372
|
|
|
@@ -397,7 +379,6 @@ msgstr "Bas?? sur"
|
|
|
397
379
|
#. module: account_financial_report
|
|
398
380
|
#. odoo-python
|
|
399
381
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
400
|
-
#, python-format
|
|
401
382
|
msgid "Based on"
|
|
402
383
|
msgstr "Bas??e sur"
|
|
403
384
|
|
|
@@ -415,7 +396,6 @@ msgstr "Annuler"
|
|
|
415
396
|
#. odoo-python
|
|
416
397
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
417
398
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
418
|
-
#, python-format
|
|
419
399
|
msgid "Centralize filter"
|
|
420
400
|
msgstr "Filtre de centralisation"
|
|
421
401
|
|
|
@@ -435,7 +415,6 @@ msgstr "Groupes enfants"
|
|
|
435
415
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
436
416
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
437
417
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
438
|
-
#, python-format
|
|
439
418
|
msgid "Code"
|
|
440
419
|
msgstr "Code"
|
|
441
420
|
|
|
@@ -450,7 +429,6 @@ msgstr "Code"
|
|
|
450
429
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
451
430
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
452
431
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
453
|
-
#, python-format
|
|
454
432
|
msgid "Company"
|
|
455
433
|
msgstr "Soci??t??"
|
|
456
434
|
|
|
@@ -503,7 +481,6 @@ msgstr "Cr???? le"
|
|
|
503
481
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
504
482
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
505
483
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
506
|
-
#, python-format
|
|
507
484
|
msgid "Credit"
|
|
508
485
|
msgstr "Cr??dit"
|
|
509
486
|
|
|
@@ -511,7 +488,6 @@ msgstr "Cr??dit"
|
|
|
511
488
|
#. odoo-python
|
|
512
489
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
513
490
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
514
|
-
#, python-format
|
|
515
491
|
msgid "Cumul cur."
|
|
516
492
|
msgstr "Cumul en devise."
|
|
517
493
|
|
|
@@ -519,7 +495,6 @@ msgstr "Cumul en devise."
|
|
|
519
495
|
#. odoo-python
|
|
520
496
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
521
497
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
522
|
-
#, python-format
|
|
523
498
|
msgid "Cumul. Bal."
|
|
524
499
|
msgstr "Cumuler bal."
|
|
525
500
|
|
|
@@ -528,7 +503,6 @@ msgstr "Cumuler bal."
|
|
|
528
503
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
529
504
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
530
505
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
531
|
-
#, python-format
|
|
532
506
|
msgid "Cur."
|
|
533
507
|
msgstr "Courant"
|
|
534
508
|
|
|
@@ -536,7 +510,6 @@ msgstr "Courant"
|
|
|
536
510
|
#. odoo-python
|
|
537
511
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
538
512
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
539
|
-
#, python-format
|
|
540
513
|
msgid "Cur. Original"
|
|
541
514
|
msgstr "Courant original"
|
|
542
515
|
|
|
@@ -544,14 +517,12 @@ msgstr "Courant original"
|
|
|
544
517
|
#. odoo-python
|
|
545
518
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
546
519
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
547
|
-
#, python-format
|
|
548
520
|
msgid "Cur. Residual"
|
|
549
521
|
msgstr "Courant r??siduel"
|
|
550
522
|
|
|
551
523
|
#. module: account_financial_report
|
|
552
524
|
#. odoo-python
|
|
553
525
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
554
|
-
#, python-format
|
|
555
526
|
msgid "Currency"
|
|
556
527
|
msgstr "Devise"
|
|
557
528
|
|
|
@@ -559,7 +530,6 @@ msgstr "Devise"
|
|
|
559
530
|
#. odoo-python
|
|
560
531
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
561
532
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
562
|
-
#, python-format
|
|
563
533
|
msgid "Current"
|
|
564
534
|
msgstr "Courant"
|
|
565
535
|
|
|
@@ -574,7 +544,6 @@ msgstr "Courant"
|
|
|
574
544
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
575
545
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
576
546
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
577
|
-
#, python-format
|
|
578
547
|
msgid "Date"
|
|
579
548
|
msgstr "Date"
|
|
580
549
|
|
|
@@ -606,14 +575,12 @@ msgstr "Date au"
|
|
|
606
575
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
607
576
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
608
577
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
609
|
-
#, python-format
|
|
610
578
|
msgid "Date at filter"
|
|
611
579
|
msgstr "Date au filtre"
|
|
612
580
|
|
|
613
581
|
#. module: account_financial_report
|
|
614
582
|
#. odoo-python
|
|
615
583
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
616
|
-
#, python-format
|
|
617
584
|
msgid "Date from"
|
|
618
585
|
msgstr "Date du"
|
|
619
586
|
|
|
@@ -632,14 +599,12 @@ msgstr "Plage de date"
|
|
|
632
599
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
633
600
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
634
601
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
635
|
-
#, python-format
|
|
636
602
|
msgid "Date range filter"
|
|
637
603
|
msgstr "Filtre de plage de dates"
|
|
638
604
|
|
|
639
605
|
#. module: account_financial_report
|
|
640
606
|
#. odoo-python
|
|
641
607
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
642
|
-
#, python-format
|
|
643
608
|
msgid "Date to"
|
|
644
609
|
msgstr "Date au"
|
|
645
610
|
|
|
@@ -653,7 +618,6 @@ msgstr "Date au"
|
|
|
653
618
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
654
619
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
655
620
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
656
|
-
#, python-format
|
|
657
621
|
msgid "Debit"
|
|
658
622
|
msgstr "D??bit"
|
|
659
623
|
|
|
@@ -662,7 +626,6 @@ msgstr "D??bit"
|
|
|
662
626
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
663
627
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
664
628
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
665
|
-
#, python-format
|
|
666
629
|
msgid "Description"
|
|
667
630
|
msgstr "Description"
|
|
668
631
|
|
|
@@ -723,7 +686,6 @@ msgstr ""
|
|
|
723
686
|
#. odoo-python
|
|
724
687
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
725
688
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
726
|
-
#, python-format
|
|
727
689
|
msgid "Due date"
|
|
728
690
|
msgstr "Date d'??ch??ance"
|
|
729
691
|
|
|
@@ -761,7 +723,6 @@ msgstr "Compte de fin dans une p??riode"
|
|
|
761
723
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
762
724
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
763
725
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
764
|
-
#, python-format
|
|
765
726
|
msgid "Ending balance"
|
|
766
727
|
msgstr "Solde de cl??ture"
|
|
767
728
|
|
|
@@ -777,7 +738,6 @@ msgstr ""
|
|
|
777
738
|
#. module: account_financial_report
|
|
778
739
|
#. odoo-python
|
|
779
740
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
780
|
-
#, python-format
|
|
781
741
|
msgid "Entries sorted by"
|
|
782
742
|
msgstr "??criture tri??es par"
|
|
783
743
|
|
|
@@ -791,21 +751,18 @@ msgstr "??criture tri??es par"
|
|
|
791
751
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
792
752
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
793
753
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
794
|
-
#, python-format
|
|
795
754
|
msgid "Entry"
|
|
796
755
|
msgstr "??criture"
|
|
797
756
|
|
|
798
757
|
#. module: account_financial_report
|
|
799
758
|
#. odoo-python
|
|
800
759
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
801
|
-
#, python-format
|
|
802
760
|
msgid "Entry number"
|
|
803
761
|
msgstr "Num??ro d'??criture"
|
|
804
762
|
|
|
805
763
|
#. module: account_financial_report
|
|
806
764
|
#. odoo-javascript
|
|
807
765
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
808
|
-
#, python-format
|
|
809
766
|
msgid "Export"
|
|
810
767
|
msgstr "Export"
|
|
811
768
|
|
|
@@ -886,7 +843,6 @@ msgstr "Du :"
|
|
|
886
843
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
887
844
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
888
845
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
889
|
-
#, python-format
|
|
890
846
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
891
847
|
msgstr "Du : %(date_from)s Au : %(date_to)s"
|
|
892
848
|
|
|
@@ -914,7 +870,6 @@ msgstr "Af Date de d??but"
|
|
|
914
870
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
915
871
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
916
872
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
917
|
-
#, python-format
|
|
918
873
|
msgid "General Ledger"
|
|
919
874
|
msgstr "Grand livre"
|
|
920
875
|
|
|
@@ -978,7 +933,6 @@ msgstr ""
|
|
|
978
933
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
979
934
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
980
935
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
981
|
-
#, python-format
|
|
982
936
|
msgid "Hide"
|
|
983
937
|
msgstr "Cacher"
|
|
984
938
|
|
|
@@ -1027,7 +981,6 @@ msgstr ""
|
|
|
1027
981
|
#. module: account_financial_report
|
|
1028
982
|
#. odoo-python
|
|
1029
983
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1030
|
-
#, python-format
|
|
1031
984
|
msgid "Inferior Limit must be greather than zero"
|
|
1032
985
|
msgstr ""
|
|
1033
986
|
|
|
@@ -1054,7 +1007,6 @@ msgstr ""
|
|
|
1054
1007
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1055
1008
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1056
1009
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1057
|
-
#, python-format
|
|
1058
1010
|
msgid "Initial balance"
|
|
1059
1011
|
msgstr "Solde initial"
|
|
1060
1012
|
|
|
@@ -1074,7 +1026,6 @@ msgstr ""
|
|
|
1074
1026
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1075
1027
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1076
1028
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1077
|
-
#, python-format
|
|
1078
1029
|
msgid "Journal"
|
|
1079
1030
|
msgstr "Journal"
|
|
1080
1031
|
|
|
@@ -1094,7 +1045,6 @@ msgstr "Domaine des ??critures comptables"
|
|
|
1094
1045
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1095
1046
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1096
1047
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1097
|
-
#, python-format
|
|
1098
1048
|
msgid "Journal Ledger"
|
|
1099
1049
|
msgstr "Livre des journaux"
|
|
1100
1050
|
|
|
@@ -1128,7 +1078,6 @@ msgstr "Livre des journaux au format XLSX"
|
|
|
1128
1078
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1129
1079
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1130
1080
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1131
|
-
#, python-format
|
|
1132
1081
|
msgid "Journals"
|
|
1133
1082
|
msgstr "Journaux"
|
|
1134
1083
|
|
|
@@ -1165,7 +1114,6 @@ msgstr "Niveau"
|
|
|
1165
1114
|
#. module: account_financial_report
|
|
1166
1115
|
#. odoo-python
|
|
1167
1116
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1168
|
-
#, python-format
|
|
1169
1117
|
msgid "Level %s"
|
|
1170
1118
|
msgstr "Niveau %s"
|
|
1171
1119
|
|
|
@@ -1174,7 +1122,6 @@ msgstr "Niveau %s"
|
|
|
1174
1122
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1175
1123
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1176
1124
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1177
|
-
#, python-format
|
|
1178
1125
|
msgid "Limit hierarchy levels"
|
|
1179
1126
|
msgstr "Limiter les niveaux de hi??rarchie"
|
|
1180
1127
|
|
|
@@ -1188,7 +1135,6 @@ msgstr ""
|
|
|
1188
1135
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1189
1136
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1190
1137
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1191
|
-
#, python-format
|
|
1192
1138
|
msgid "Missing Partner"
|
|
1193
1139
|
msgstr ""
|
|
1194
1140
|
|
|
@@ -1215,7 +1161,6 @@ msgstr "Mouvements"
|
|
|
1215
1161
|
#. module: account_financial_report
|
|
1216
1162
|
#. odoo-python
|
|
1217
1163
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1218
|
-
#, python-format
|
|
1219
1164
|
msgid "Must complete Configuration Lines"
|
|
1220
1165
|
msgstr ""
|
|
1221
1166
|
|
|
@@ -1228,15 +1173,11 @@ msgstr ""
|
|
|
1228
1173
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1229
1174
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1230
1175
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1231
|
-
#, python-format
|
|
1232
1176
|
msgid "Name"
|
|
1233
1177
|
msgstr "Nom"
|
|
1234
1178
|
|
|
1235
1179
|
#. module: account_financial_report
|
|
1236
|
-
#. odoo-python
|
|
1237
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1238
1180
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1239
|
-
#, python-format
|
|
1240
1181
|
msgid "Name must be unique per report configuration"
|
|
1241
1182
|
msgstr ""
|
|
1242
1183
|
|
|
@@ -1244,7 +1185,6 @@ msgstr ""
|
|
|
1244
1185
|
#. odoo-python
|
|
1245
1186
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1246
1187
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1247
|
-
#, python-format
|
|
1248
1188
|
msgid "Net"
|
|
1249
1189
|
msgstr "Net"
|
|
1250
1190
|
|
|
@@ -1254,14 +1194,12 @@ msgstr "Net"
|
|
|
1254
1194
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1255
1195
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1256
1196
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1257
|
-
#, python-format
|
|
1258
1197
|
msgid "No"
|
|
1259
1198
|
msgstr "Non"
|
|
1260
1199
|
|
|
1261
1200
|
#. module: account_financial_report
|
|
1262
1201
|
#. odoo-python
|
|
1263
1202
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1264
|
-
#, python-format
|
|
1265
1203
|
msgid "No group"
|
|
1266
1204
|
msgstr "Sans groupe"
|
|
1267
1205
|
|
|
@@ -1269,7 +1207,6 @@ msgstr "Sans groupe"
|
|
|
1269
1207
|
#. odoo-python
|
|
1270
1208
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1271
1209
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1272
|
-
#, python-format
|
|
1273
1210
|
msgid "No limit"
|
|
1274
1211
|
msgstr "Sans limite"
|
|
1275
1212
|
|
|
@@ -1281,7 +1218,6 @@ msgstr "Aucun"
|
|
|
1281
1218
|
#. module: account_financial_report
|
|
1282
1219
|
#. odoo-python
|
|
1283
1220
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1284
|
-
#, python-format
|
|
1285
1221
|
msgid "Not Posted"
|
|
1286
1222
|
msgstr "Non comptabilis??"
|
|
1287
1223
|
|
|
@@ -1304,7 +1240,6 @@ msgstr "Rapports de comptabilit?? OCA"
|
|
|
1304
1240
|
#. odoo-python
|
|
1305
1241
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1306
1242
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1307
|
-
#, python-format
|
|
1308
1243
|
msgid "Older"
|
|
1309
1244
|
msgstr "Plus ancien"
|
|
1310
1245
|
|
|
@@ -1321,7 +1256,6 @@ msgstr ""
|
|
|
1321
1256
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1322
1257
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1323
1258
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1324
|
-
#, python-format
|
|
1325
1259
|
msgid "Open Items"
|
|
1326
1260
|
msgstr "Ecritures non lettr??es"
|
|
1327
1261
|
|
|
@@ -1364,7 +1298,6 @@ msgstr "Options"
|
|
|
1364
1298
|
#. odoo-python
|
|
1365
1299
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1366
1300
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1367
|
-
#, python-format
|
|
1368
1301
|
msgid "Original"
|
|
1369
1302
|
msgstr "Original"
|
|
1370
1303
|
|
|
@@ -1381,7 +1314,6 @@ msgstr "Original"
|
|
|
1381
1314
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1382
1315
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1383
1316
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1384
|
-
#, python-format
|
|
1385
1317
|
msgid "Partner"
|
|
1386
1318
|
msgstr "Partenaire"
|
|
1387
1319
|
|
|
@@ -1397,14 +1329,12 @@ msgstr ""
|
|
|
1397
1329
|
#. module: account_financial_report
|
|
1398
1330
|
#. odoo-python
|
|
1399
1331
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1400
|
-
#, python-format
|
|
1401
1332
|
msgid "Partner Initial balance"
|
|
1402
1333
|
msgstr "Solde initial du partenaire"
|
|
1403
1334
|
|
|
1404
1335
|
#. module: account_financial_report
|
|
1405
1336
|
#. odoo-python
|
|
1406
1337
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1407
|
-
#, python-format
|
|
1408
1338
|
msgid "Partner cumul aged balance"
|
|
1409
1339
|
msgstr "Balance ??g??e cumul??e du partenaire"
|
|
1410
1340
|
|
|
@@ -1414,7 +1344,6 @@ msgstr "Balance ??g??e cumul??e du partenaire"
|
|
|
1414
1344
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1415
1345
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1416
1346
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1417
|
-
#, python-format
|
|
1418
1347
|
msgid "Partner ending balance"
|
|
1419
1348
|
msgstr "Solde de cl??ture du partenaire"
|
|
1420
1349
|
|
|
@@ -1445,7 +1374,6 @@ msgstr "Pourcentages"
|
|
|
1445
1374
|
#. odoo-python
|
|
1446
1375
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1447
1376
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1448
|
-
#, python-format
|
|
1449
1377
|
msgid "Period balance"
|
|
1450
1378
|
msgstr "Solde de la p??riode"
|
|
1451
1379
|
|
|
@@ -1457,7 +1385,6 @@ msgstr "P??riodes"
|
|
|
1457
1385
|
#. module: account_financial_report
|
|
1458
1386
|
#. odoo-python
|
|
1459
1387
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1460
|
-
#, python-format
|
|
1461
1388
|
msgid "Posted"
|
|
1462
1389
|
msgstr "Comptabilis??"
|
|
1463
1390
|
|
|
@@ -1465,7 +1392,6 @@ msgstr "Comptabilis??"
|
|
|
1465
1392
|
#. odoo-python
|
|
1466
1393
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1467
1394
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1468
|
-
#, python-format
|
|
1469
1395
|
msgid "Rec."
|
|
1470
1396
|
msgstr "R??c."
|
|
1471
1397
|
|
|
@@ -1503,7 +1429,6 @@ msgstr ""
|
|
|
1503
1429
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1504
1430
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1505
1431
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1506
|
-
#, python-format
|
|
1507
1432
|
msgid "Ref - Label"
|
|
1508
1433
|
msgstr "Ref - Libell??"
|
|
1509
1434
|
|
|
@@ -1519,7 +1444,6 @@ msgstr "Reporter une action"
|
|
|
1519
1444
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1520
1445
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1521
1446
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1522
|
-
#, python-format
|
|
1523
1447
|
msgid "Residual"
|
|
1524
1448
|
msgstr "R??siduel"
|
|
1525
1449
|
|
|
@@ -1527,7 +1451,6 @@ msgstr "R??siduel"
|
|
|
1527
1451
|
#. odoo-python
|
|
1528
1452
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1529
1453
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1530
|
-
#, python-format
|
|
1531
1454
|
msgid "Sequence"
|
|
1532
1455
|
msgstr "S??quence"
|
|
1533
1456
|
|
|
@@ -1539,7 +1462,6 @@ msgstr "S??quence"
|
|
|
1539
1462
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1540
1463
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1541
1464
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1542
|
-
#, python-format
|
|
1543
1465
|
msgid "Show"
|
|
1544
1466
|
msgstr "Afficher"
|
|
1545
1467
|
|
|
@@ -1572,7 +1494,6 @@ msgstr "Afficher le d??tails du partenaire"
|
|
|
1572
1494
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1573
1495
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1574
1496
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1575
|
-
#, python-format
|
|
1576
1497
|
msgid "Show foreign currency"
|
|
1577
1498
|
msgstr "Afficher les devises ??trang??res"
|
|
1578
1499
|
|
|
@@ -1607,7 +1528,6 @@ msgstr "Compte de d??but dans une p??riode"
|
|
|
1607
1528
|
#. odoo-python
|
|
1608
1529
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1609
1530
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1610
|
-
#, python-format
|
|
1611
1531
|
msgid "TOTAL"
|
|
1612
1532
|
msgstr ""
|
|
1613
1533
|
|
|
@@ -1636,7 +1556,6 @@ msgstr "??critures cibl??es"
|
|
|
1636
1556
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1637
1557
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1638
1558
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1639
|
-
#, python-format
|
|
1640
1559
|
msgid "Target moves filter"
|
|
1641
1560
|
msgstr "Filtre sur les ??critures cibles"
|
|
1642
1561
|
|
|
@@ -1644,7 +1563,6 @@ msgstr "Filtre sur les ??critures cibles"
|
|
|
1644
1563
|
#. odoo-python
|
|
1645
1564
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1646
1565
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1647
|
-
#, python-format
|
|
1648
1566
|
msgid "Tax"
|
|
1649
1567
|
msgstr "Taxe"
|
|
1650
1568
|
|
|
@@ -1657,21 +1575,18 @@ msgstr "Montant de la taxe"
|
|
|
1657
1575
|
#. module: account_financial_report
|
|
1658
1576
|
#. odoo-python
|
|
1659
1577
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1660
|
-
#, python-format
|
|
1661
1578
|
msgid "Tax Balance"
|
|
1662
1579
|
msgstr "Solde des taxes"
|
|
1663
1580
|
|
|
1664
1581
|
#. module: account_financial_report
|
|
1665
1582
|
#. odoo-python
|
|
1666
1583
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1667
|
-
#, python-format
|
|
1668
1584
|
msgid "Tax Credit"
|
|
1669
1585
|
msgstr "Cr??dit de taxe"
|
|
1670
1586
|
|
|
1671
1587
|
#. module: account_financial_report
|
|
1672
1588
|
#. odoo-python
|
|
1673
1589
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1674
|
-
#, python-format
|
|
1675
1590
|
msgid "Tax Debit"
|
|
1676
1591
|
msgstr "D??bit de taxe"
|
|
1677
1592
|
|
|
@@ -1679,14 +1594,12 @@ msgstr "D??bit de taxe"
|
|
|
1679
1594
|
#. odoo-python
|
|
1680
1595
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1681
1596
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1682
|
-
#, python-format
|
|
1683
1597
|
msgid "Tax Groups"
|
|
1684
1598
|
msgstr "Groupes de taxe"
|
|
1685
1599
|
|
|
1686
1600
|
#. module: account_financial_report
|
|
1687
1601
|
#. odoo-python
|
|
1688
1602
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1689
|
-
#, python-format
|
|
1690
1603
|
msgid "Tax Initial balance"
|
|
1691
1604
|
msgstr "Balance initiale de la taxe"
|
|
1692
1605
|
|
|
@@ -1694,7 +1607,6 @@ msgstr "Balance initiale de la taxe"
|
|
|
1694
1607
|
#. odoo-python
|
|
1695
1608
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1696
1609
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1697
|
-
#, python-format
|
|
1698
1610
|
msgid "Tax Tags"
|
|
1699
1611
|
msgstr "??tiquettes de taxe"
|
|
1700
1612
|
|
|
@@ -1702,7 +1614,6 @@ msgstr "??tiquettes de taxe"
|
|
|
1702
1614
|
#. odoo-python
|
|
1703
1615
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1704
1616
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1705
|
-
#, python-format
|
|
1706
1617
|
msgid "Tax ending balance"
|
|
1707
1618
|
msgstr "Balance finale de la taxe"
|
|
1708
1619
|
|
|
@@ -1718,14 +1629,12 @@ msgstr "Balance initiale de la taxe"
|
|
|
1718
1629
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1719
1630
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1720
1631
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1721
|
-
#, python-format
|
|
1722
1632
|
msgid "Taxes"
|
|
1723
1633
|
msgstr "Taxes"
|
|
1724
1634
|
|
|
1725
1635
|
#. module: account_financial_report
|
|
1726
1636
|
#. odoo-python
|
|
1727
1637
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1728
|
-
#, python-format
|
|
1729
1638
|
msgid ""
|
|
1730
1639
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1731
1640
|
"the same."
|
|
@@ -1736,7 +1645,6 @@ msgstr ""
|
|
|
1736
1645
|
#. module: account_financial_report
|
|
1737
1646
|
#. odoo-python
|
|
1738
1647
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1739
|
-
#, python-format
|
|
1740
1648
|
msgid ""
|
|
1741
1649
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1742
1650
|
"same."
|
|
@@ -1747,7 +1655,6 @@ msgstr ""
|
|
|
1747
1655
|
#. module: account_financial_report
|
|
1748
1656
|
#. odoo-python
|
|
1749
1657
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1750
|
-
#, python-format
|
|
1751
1658
|
msgid ""
|
|
1752
1659
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1753
1660
|
msgstr ""
|
|
@@ -1757,7 +1664,6 @@ msgstr ""
|
|
|
1757
1664
|
#. module: account_financial_report
|
|
1758
1665
|
#. odoo-python
|
|
1759
1666
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1760
|
-
#, python-format
|
|
1761
1667
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1762
1668
|
msgstr "Le niveau de hi??rarchie ?? filtrer doit ??tre plus grand que 0."
|
|
1763
1669
|
|
|
@@ -1782,7 +1688,6 @@ msgstr "Au :"
|
|
|
1782
1688
|
#. odoo-python
|
|
1783
1689
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1784
1690
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1785
|
-
#, python-format
|
|
1786
1691
|
msgid "Total"
|
|
1787
1692
|
msgstr "Total"
|
|
1788
1693
|
|
|
@@ -1793,7 +1698,6 @@ msgstr "Total"
|
|
|
1793
1698
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1794
1699
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1795
1700
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1796
|
-
#, python-format
|
|
1797
1701
|
msgid "Trial Balance"
|
|
1798
1702
|
msgstr "Balance g??n??rale"
|
|
1799
1703
|
|
|
@@ -1886,7 +1790,6 @@ msgstr "Etat de TVA XLSX"
|
|
|
1886
1790
|
#. module: account_financial_report
|
|
1887
1791
|
#. odoo-python
|
|
1888
1792
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1889
|
-
#, python-format
|
|
1890
1793
|
msgid "Vat Report"
|
|
1891
1794
|
msgstr "Etat de TVA"
|
|
1892
1795
|
|
|
@@ -1927,7 +1830,6 @@ msgstr "Avec le nom du compte"
|
|
|
1927
1830
|
#. module: account_financial_report
|
|
1928
1831
|
#. odoo-python
|
|
1929
1832
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1930
|
-
#, python-format
|
|
1931
1833
|
msgid "Without analytic account"
|
|
1932
1834
|
msgstr ""
|
|
1933
1835
|
|
|
@@ -1937,14 +1839,12 @@ msgstr ""
|
|
|
1937
1839
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1938
1840
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1939
1841
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1940
|
-
#, python-format
|
|
1941
1842
|
msgid "Yes"
|
|
1942
1843
|
msgstr "Oui"
|
|
1943
1844
|
|
|
1944
1845
|
#. module: account_financial_report
|
|
1945
1846
|
#. odoo-python
|
|
1946
1847
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1947
|
-
#, python-format
|
|
1948
1848
|
msgid "future"
|
|
1949
1849
|
msgstr "futur"
|
|
1950
1850
|
|