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
|
@@ -104,7 +104,6 @@ msgstr "Rapport comptable au format XLSX - Couche d'abstraction"
|
|
|
104
104
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
105
105
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
106
106
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
107
|
-
#, python-format
|
|
108
107
|
msgid "Account"
|
|
109
108
|
msgstr "Compte"
|
|
110
109
|
|
|
@@ -137,7 +136,6 @@ msgstr "Groupe de compte"
|
|
|
137
136
|
#. module: account_financial_report
|
|
138
137
|
#. odoo-python
|
|
139
138
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
140
|
-
#, python-format
|
|
141
139
|
msgid "Account Name"
|
|
142
140
|
msgstr "Nom du compte"
|
|
143
141
|
|
|
@@ -145,7 +143,6 @@ msgstr "Nom du compte"
|
|
|
145
143
|
#. odoo-python
|
|
146
144
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
147
145
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
148
|
-
#, python-format
|
|
149
146
|
msgid "Account at 0 filter"
|
|
150
147
|
msgstr "Masquer les comptes ?? 0"
|
|
151
148
|
|
|
@@ -155,7 +152,6 @@ msgstr "Masquer les comptes ?? 0"
|
|
|
155
152
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
156
153
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
157
154
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
158
|
-
#, python-format
|
|
159
155
|
msgid "Account balance at 0 filter"
|
|
160
156
|
msgstr "Masquer les soldes de compte ?? 0"
|
|
161
157
|
|
|
@@ -189,7 +185,6 @@ msgstr ""
|
|
|
189
185
|
#. module: account_financial_report
|
|
190
186
|
#. odoo-python
|
|
191
187
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
192
|
-
#, python-format
|
|
193
188
|
msgid "Age ≤ 120 d."
|
|
194
189
|
msgstr ""
|
|
195
190
|
|
|
@@ -203,7 +198,6 @@ msgstr ""
|
|
|
203
198
|
#. module: account_financial_report
|
|
204
199
|
#. odoo-python
|
|
205
200
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
206
|
-
#, python-format
|
|
207
201
|
msgid "Age ≤ 30 d."
|
|
208
202
|
msgstr ""
|
|
209
203
|
|
|
@@ -217,7 +211,6 @@ msgstr ""
|
|
|
217
211
|
#. module: account_financial_report
|
|
218
212
|
#. odoo-python
|
|
219
213
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
220
|
-
#, python-format
|
|
221
214
|
msgid "Age ≤ 60 d."
|
|
222
215
|
msgstr ""
|
|
223
216
|
|
|
@@ -231,7 +224,6 @@ msgstr ""
|
|
|
231
224
|
#. module: account_financial_report
|
|
232
225
|
#. odoo-python
|
|
233
226
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
234
|
-
#, python-format
|
|
235
227
|
msgid "Age ≤ 90 d."
|
|
236
228
|
msgstr ""
|
|
237
229
|
|
|
@@ -242,7 +234,6 @@ msgstr ""
|
|
|
242
234
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
243
235
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
244
236
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
245
|
-
#, python-format
|
|
246
237
|
msgid "Aged Partner Balance"
|
|
247
238
|
msgstr "Balance ??g??e auxiliaire"
|
|
248
239
|
|
|
@@ -274,7 +265,6 @@ msgstr "Balance ??g??e auxiliaire XLSX"
|
|
|
274
265
|
#. module: account_financial_report
|
|
275
266
|
#. odoo-python
|
|
276
267
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
277
|
-
#, python-format
|
|
278
268
|
msgid "All"
|
|
279
269
|
msgstr "Tous"
|
|
280
270
|
|
|
@@ -306,7 +296,6 @@ msgstr "??critures comptabilis??es seulement"
|
|
|
306
296
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
307
297
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
308
298
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
309
|
-
#, python-format
|
|
310
299
|
msgid "All entries"
|
|
311
300
|
msgstr "Toutes les ??critures"
|
|
312
301
|
|
|
@@ -320,7 +309,6 @@ msgstr "Toutes les ??critures"
|
|
|
320
309
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
321
310
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
322
311
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
323
|
-
#, python-format
|
|
324
312
|
msgid "All posted entries"
|
|
325
313
|
msgstr "??critures comptabilis??es seulement"
|
|
326
314
|
|
|
@@ -332,7 +320,6 @@ msgstr "Montant dev."
|
|
|
332
320
|
#. module: account_financial_report
|
|
333
321
|
#. odoo-python
|
|
334
322
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
335
|
-
#, python-format
|
|
336
323
|
msgid "Amount Currency"
|
|
337
324
|
msgstr "Montant devise"
|
|
338
325
|
|
|
@@ -340,7 +327,6 @@ msgstr "Montant devise"
|
|
|
340
327
|
#. odoo-python
|
|
341
328
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
342
329
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
343
|
-
#, python-format
|
|
344
330
|
msgid "Amount cur."
|
|
345
331
|
msgstr "Montant dev."
|
|
346
332
|
|
|
@@ -354,7 +340,6 @@ msgstr "Compte analytique"
|
|
|
354
340
|
#. odoo-python
|
|
355
341
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
356
342
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
357
|
-
#, python-format
|
|
358
343
|
msgid "Analytic Distribution"
|
|
359
344
|
msgstr "Distribution analytique"
|
|
360
345
|
|
|
@@ -373,21 +358,18 @@ msgstr "Base"
|
|
|
373
358
|
#. module: account_financial_report
|
|
374
359
|
#. odoo-python
|
|
375
360
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
376
|
-
#, python-format
|
|
377
361
|
msgid "Base Balance"
|
|
378
362
|
msgstr "Base Solde"
|
|
379
363
|
|
|
380
364
|
#. module: account_financial_report
|
|
381
365
|
#. odoo-python
|
|
382
366
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
383
|
-
#, python-format
|
|
384
367
|
msgid "Base Credit"
|
|
385
368
|
msgstr "Base Cr??dit"
|
|
386
369
|
|
|
387
370
|
#. module: account_financial_report
|
|
388
371
|
#. odoo-python
|
|
389
372
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
390
|
-
#, python-format
|
|
391
373
|
msgid "Base Debit"
|
|
392
374
|
msgstr "Base D??bit"
|
|
393
375
|
|
|
@@ -400,7 +382,6 @@ msgstr "Bas?? sur"
|
|
|
400
382
|
#. module: account_financial_report
|
|
401
383
|
#. odoo-python
|
|
402
384
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
403
|
-
#, python-format
|
|
404
385
|
msgid "Based on"
|
|
405
386
|
msgstr "Bas??e sur"
|
|
406
387
|
|
|
@@ -418,7 +399,6 @@ msgstr "Annuler"
|
|
|
418
399
|
#. odoo-python
|
|
419
400
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
420
401
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
421
|
-
#, python-format
|
|
422
402
|
msgid "Centralize filter"
|
|
423
403
|
msgstr "Filtre de centralisation"
|
|
424
404
|
|
|
@@ -438,7 +418,6 @@ msgstr "Groupes enfant"
|
|
|
438
418
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
439
419
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
440
420
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
441
|
-
#, python-format
|
|
442
421
|
msgid "Code"
|
|
443
422
|
msgstr "Code"
|
|
444
423
|
|
|
@@ -453,7 +432,6 @@ msgstr "Code"
|
|
|
453
432
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
454
433
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
455
434
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
456
|
-
#, python-format
|
|
457
435
|
msgid "Company"
|
|
458
436
|
msgstr "Soci??t??"
|
|
459
437
|
|
|
@@ -506,7 +484,6 @@ msgstr "Cr???? le"
|
|
|
506
484
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
507
485
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
508
486
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
509
|
-
#, python-format
|
|
510
487
|
msgid "Credit"
|
|
511
488
|
msgstr "Cr??dit"
|
|
512
489
|
|
|
@@ -514,7 +491,6 @@ msgstr "Cr??dit"
|
|
|
514
491
|
#. odoo-python
|
|
515
492
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
516
493
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
517
|
-
#, python-format
|
|
518
494
|
msgid "Cumul cur."
|
|
519
495
|
msgstr "Cumul devise"
|
|
520
496
|
|
|
@@ -522,7 +498,6 @@ msgstr "Cumul devise"
|
|
|
522
498
|
#. odoo-python
|
|
523
499
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
524
500
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
525
|
-
#, python-format
|
|
526
501
|
msgid "Cumul. Bal."
|
|
527
502
|
msgstr "Cumul bal."
|
|
528
503
|
|
|
@@ -531,7 +506,6 @@ msgstr "Cumul bal."
|
|
|
531
506
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
532
507
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
533
508
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
534
|
-
#, python-format
|
|
535
509
|
msgid "Cur."
|
|
536
510
|
msgstr "Dev."
|
|
537
511
|
|
|
@@ -539,7 +513,6 @@ msgstr "Dev."
|
|
|
539
513
|
#. odoo-python
|
|
540
514
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
541
515
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
542
|
-
#, python-format
|
|
543
516
|
msgid "Cur. Original"
|
|
544
517
|
msgstr "Dev. originale"
|
|
545
518
|
|
|
@@ -547,14 +520,12 @@ msgstr "Dev. originale"
|
|
|
547
520
|
#. odoo-python
|
|
548
521
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
549
522
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
550
|
-
#, python-format
|
|
551
523
|
msgid "Cur. Residual"
|
|
552
524
|
msgstr "R??siduel dev."
|
|
553
525
|
|
|
554
526
|
#. module: account_financial_report
|
|
555
527
|
#. odoo-python
|
|
556
528
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
557
|
-
#, python-format
|
|
558
529
|
msgid "Currency"
|
|
559
530
|
msgstr "Devise"
|
|
560
531
|
|
|
@@ -562,7 +533,6 @@ msgstr "Devise"
|
|
|
562
533
|
#. odoo-python
|
|
563
534
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
564
535
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
565
|
-
#, python-format
|
|
566
536
|
msgid "Current"
|
|
567
537
|
msgstr "Actuel"
|
|
568
538
|
|
|
@@ -577,7 +547,6 @@ msgstr "Actuel"
|
|
|
577
547
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
578
548
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
579
549
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
580
|
-
#, python-format
|
|
581
550
|
msgid "Date"
|
|
582
551
|
msgstr "Date"
|
|
583
552
|
|
|
@@ -609,14 +578,12 @@ msgstr "Date de fin"
|
|
|
609
578
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
610
579
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
611
580
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
612
|
-
#, python-format
|
|
613
581
|
msgid "Date at filter"
|
|
614
582
|
msgstr "Filtre de date"
|
|
615
583
|
|
|
616
584
|
#. module: account_financial_report
|
|
617
585
|
#. odoo-python
|
|
618
586
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
619
|
-
#, python-format
|
|
620
587
|
msgid "Date from"
|
|
621
588
|
msgstr "Date de d??but"
|
|
622
589
|
|
|
@@ -635,14 +602,12 @@ msgstr "Plage de date"
|
|
|
635
602
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
636
603
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
637
604
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
638
|
-
#, python-format
|
|
639
605
|
msgid "Date range filter"
|
|
640
606
|
msgstr "Filtre de plage de dates"
|
|
641
607
|
|
|
642
608
|
#. module: account_financial_report
|
|
643
609
|
#. odoo-python
|
|
644
610
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
645
|
-
#, python-format
|
|
646
611
|
msgid "Date to"
|
|
647
612
|
msgstr "Date de fin"
|
|
648
613
|
|
|
@@ -656,7 +621,6 @@ msgstr "Date de fin"
|
|
|
656
621
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
657
622
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
658
623
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
659
|
-
#, python-format
|
|
660
624
|
msgid "Debit"
|
|
661
625
|
msgstr "D??bit"
|
|
662
626
|
|
|
@@ -665,7 +629,6 @@ msgstr "D??bit"
|
|
|
665
629
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
666
630
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
667
631
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
668
|
-
#, python-format
|
|
669
632
|
msgid "Description"
|
|
670
633
|
msgstr "Description"
|
|
671
634
|
|
|
@@ -726,7 +689,6 @@ msgstr ""
|
|
|
726
689
|
#. odoo-python
|
|
727
690
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
728
691
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
729
|
-
#, python-format
|
|
730
692
|
msgid "Due date"
|
|
731
693
|
msgstr "Date d'??ch??ance"
|
|
732
694
|
|
|
@@ -764,7 +726,6 @@ msgstr "Compte de fin dans un intervalle"
|
|
|
764
726
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
765
727
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
766
728
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
767
|
-
#, python-format
|
|
768
729
|
msgid "Ending balance"
|
|
769
730
|
msgstr "Solde final"
|
|
770
731
|
|
|
@@ -780,7 +741,6 @@ msgstr ""
|
|
|
780
741
|
#. module: account_financial_report
|
|
781
742
|
#. odoo-python
|
|
782
743
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
783
|
-
#, python-format
|
|
784
744
|
msgid "Entries sorted by"
|
|
785
745
|
msgstr "??critures tri??es par"
|
|
786
746
|
|
|
@@ -794,21 +754,18 @@ msgstr "??critures tri??es par"
|
|
|
794
754
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
795
755
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
796
756
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
797
|
-
#, python-format
|
|
798
757
|
msgid "Entry"
|
|
799
758
|
msgstr "Pi??ce"
|
|
800
759
|
|
|
801
760
|
#. module: account_financial_report
|
|
802
761
|
#. odoo-python
|
|
803
762
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
804
|
-
#, python-format
|
|
805
763
|
msgid "Entry number"
|
|
806
764
|
msgstr "Num??ro de pi??ce"
|
|
807
765
|
|
|
808
766
|
#. module: account_financial_report
|
|
809
767
|
#. odoo-javascript
|
|
810
768
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
811
|
-
#, python-format
|
|
812
769
|
msgid "Export"
|
|
813
770
|
msgstr "Export"
|
|
814
771
|
|
|
@@ -889,7 +846,6 @@ msgstr "Du :"
|
|
|
889
846
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
890
847
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
891
848
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
892
|
-
#, python-format
|
|
893
849
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
894
850
|
msgstr "Du : %(date_from)s au : %(date_to)s"
|
|
895
851
|
|
|
@@ -917,7 +873,6 @@ msgstr "Date de d??but"
|
|
|
917
873
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
918
874
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
919
875
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
920
|
-
#, python-format
|
|
921
876
|
msgid "General Ledger"
|
|
922
877
|
msgstr "Grand livre"
|
|
923
878
|
|
|
@@ -981,7 +936,6 @@ msgstr ""
|
|
|
981
936
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
982
937
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
983
938
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
984
|
-
#, python-format
|
|
985
939
|
msgid "Hide"
|
|
986
940
|
msgstr "Masquer"
|
|
987
941
|
|
|
@@ -1030,7 +984,6 @@ msgstr ""
|
|
|
1030
984
|
#. module: account_financial_report
|
|
1031
985
|
#. odoo-python
|
|
1032
986
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1033
|
-
#, python-format
|
|
1034
987
|
msgid "Inferior Limit must be greather than zero"
|
|
1035
988
|
msgstr ""
|
|
1036
989
|
|
|
@@ -1057,7 +1010,6 @@ msgstr ""
|
|
|
1057
1010
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1058
1011
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1059
1012
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1060
|
-
#, python-format
|
|
1061
1013
|
msgid "Initial balance"
|
|
1062
1014
|
msgstr "Solde initial"
|
|
1063
1015
|
|
|
@@ -1077,7 +1029,6 @@ msgstr ""
|
|
|
1077
1029
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1078
1030
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1079
1031
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1080
|
-
#, python-format
|
|
1081
1032
|
msgid "Journal"
|
|
1082
1033
|
msgstr "Journal"
|
|
1083
1034
|
|
|
@@ -1097,7 +1048,6 @@ msgstr "Domaine des ??critures comptables"
|
|
|
1097
1048
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1098
1049
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1099
1050
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1100
|
-
#, python-format
|
|
1101
1051
|
msgid "Journal Ledger"
|
|
1102
1052
|
msgstr "Livre-journal"
|
|
1103
1053
|
|
|
@@ -1131,7 +1081,6 @@ msgstr "Livre-journal XLSX"
|
|
|
1131
1081
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1132
1082
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1133
1083
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1134
|
-
#, python-format
|
|
1135
1084
|
msgid "Journals"
|
|
1136
1085
|
msgstr "Journaux"
|
|
1137
1086
|
|
|
@@ -1168,7 +1117,6 @@ msgstr "Niveau"
|
|
|
1168
1117
|
#. module: account_financial_report
|
|
1169
1118
|
#. odoo-python
|
|
1170
1119
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1171
|
-
#, python-format
|
|
1172
1120
|
msgid "Level %s"
|
|
1173
1121
|
msgstr "Niveau %s"
|
|
1174
1122
|
|
|
@@ -1177,7 +1125,6 @@ msgstr "Niveau %s"
|
|
|
1177
1125
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1178
1126
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1179
1127
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1180
|
-
#, python-format
|
|
1181
1128
|
msgid "Limit hierarchy levels"
|
|
1182
1129
|
msgstr "Limiter les niveaux de hi??rarchie"
|
|
1183
1130
|
|
|
@@ -1191,7 +1138,6 @@ msgstr "Ligne"
|
|
|
1191
1138
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1192
1139
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1193
1140
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1194
|
-
#, python-format
|
|
1195
1141
|
msgid "Missing Partner"
|
|
1196
1142
|
msgstr ""
|
|
1197
1143
|
|
|
@@ -1218,7 +1164,6 @@ msgstr "??critures"
|
|
|
1218
1164
|
#. module: account_financial_report
|
|
1219
1165
|
#. odoo-python
|
|
1220
1166
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1221
|
-
#, python-format
|
|
1222
1167
|
msgid "Must complete Configuration Lines"
|
|
1223
1168
|
msgstr ""
|
|
1224
1169
|
|
|
@@ -1231,15 +1176,11 @@ msgstr ""
|
|
|
1231
1176
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1232
1177
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1233
1178
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1234
|
-
#, python-format
|
|
1235
1179
|
msgid "Name"
|
|
1236
1180
|
msgstr "Nom"
|
|
1237
1181
|
|
|
1238
1182
|
#. module: account_financial_report
|
|
1239
|
-
#. odoo-python
|
|
1240
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1241
1183
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1242
|
-
#, python-format
|
|
1243
1184
|
msgid "Name must be unique per report configuration"
|
|
1244
1185
|
msgstr ""
|
|
1245
1186
|
|
|
@@ -1247,7 +1188,6 @@ msgstr ""
|
|
|
1247
1188
|
#. odoo-python
|
|
1248
1189
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1249
1190
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1250
|
-
#, python-format
|
|
1251
1191
|
msgid "Net"
|
|
1252
1192
|
msgstr "Net"
|
|
1253
1193
|
|
|
@@ -1257,14 +1197,12 @@ msgstr "Net"
|
|
|
1257
1197
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1258
1198
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1259
1199
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1260
|
-
#, python-format
|
|
1261
1200
|
msgid "No"
|
|
1262
1201
|
msgstr "Non"
|
|
1263
1202
|
|
|
1264
1203
|
#. module: account_financial_report
|
|
1265
1204
|
#. odoo-python
|
|
1266
1205
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1267
|
-
#, python-format
|
|
1268
1206
|
msgid "No group"
|
|
1269
1207
|
msgstr "Sans groupe"
|
|
1270
1208
|
|
|
@@ -1272,7 +1210,6 @@ msgstr "Sans groupe"
|
|
|
1272
1210
|
#. odoo-python
|
|
1273
1211
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1274
1212
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1275
|
-
#, python-format
|
|
1276
1213
|
msgid "No limit"
|
|
1277
1214
|
msgstr "Sans limite"
|
|
1278
1215
|
|
|
@@ -1284,7 +1221,6 @@ msgstr "Aucun"
|
|
|
1284
1221
|
#. module: account_financial_report
|
|
1285
1222
|
#. odoo-python
|
|
1286
1223
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1287
|
-
#, python-format
|
|
1288
1224
|
msgid "Not Posted"
|
|
1289
1225
|
msgstr "Non comptabilis??"
|
|
1290
1226
|
|
|
@@ -1307,7 +1243,6 @@ msgstr "Rapports comptables OCA"
|
|
|
1307
1243
|
#. odoo-python
|
|
1308
1244
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1309
1245
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1310
|
-
#, python-format
|
|
1311
1246
|
msgid "Older"
|
|
1312
1247
|
msgstr "Plus ancien"
|
|
1313
1248
|
|
|
@@ -1324,7 +1259,6 @@ msgstr ""
|
|
|
1324
1259
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1325
1260
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1326
1261
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1327
|
-
#, python-format
|
|
1328
1262
|
msgid "Open Items"
|
|
1329
1263
|
msgstr "Grand livre non-lettr??"
|
|
1330
1264
|
|
|
@@ -1367,7 +1301,6 @@ msgstr "Options"
|
|
|
1367
1301
|
#. odoo-python
|
|
1368
1302
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1369
1303
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1370
|
-
#, python-format
|
|
1371
1304
|
msgid "Original"
|
|
1372
1305
|
msgstr "Original"
|
|
1373
1306
|
|
|
@@ -1384,7 +1317,6 @@ msgstr "Original"
|
|
|
1384
1317
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1385
1318
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1386
1319
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1387
|
-
#, python-format
|
|
1388
1320
|
msgid "Partner"
|
|
1389
1321
|
msgstr "Partenaire"
|
|
1390
1322
|
|
|
@@ -1400,14 +1332,12 @@ msgstr ""
|
|
|
1400
1332
|
#. module: account_financial_report
|
|
1401
1333
|
#. odoo-python
|
|
1402
1334
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1403
|
-
#, python-format
|
|
1404
1335
|
msgid "Partner Initial balance"
|
|
1405
1336
|
msgstr "Solde initial du partenaire"
|
|
1406
1337
|
|
|
1407
1338
|
#. module: account_financial_report
|
|
1408
1339
|
#. odoo-python
|
|
1409
1340
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1410
|
-
#, python-format
|
|
1411
1341
|
msgid "Partner cumul aged balance"
|
|
1412
1342
|
msgstr "Balance ??g??e cumul??e du partenaire"
|
|
1413
1343
|
|
|
@@ -1417,7 +1347,6 @@ msgstr "Balance ??g??e cumul??e du partenaire"
|
|
|
1417
1347
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1418
1348
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1419
1349
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1420
|
-
#, python-format
|
|
1421
1350
|
msgid "Partner ending balance"
|
|
1422
1351
|
msgstr "Solde final du partenaire"
|
|
1423
1352
|
|
|
@@ -1448,7 +1377,6 @@ msgstr "Pourcentages"
|
|
|
1448
1377
|
#. odoo-python
|
|
1449
1378
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1450
1379
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1451
|
-
#, python-format
|
|
1452
1380
|
msgid "Period balance"
|
|
1453
1381
|
msgstr "Solde sur la p??riode"
|
|
1454
1382
|
|
|
@@ -1460,7 +1388,6 @@ msgstr "P??riodes"
|
|
|
1460
1388
|
#. module: account_financial_report
|
|
1461
1389
|
#. odoo-python
|
|
1462
1390
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1463
|
-
#, python-format
|
|
1464
1391
|
msgid "Posted"
|
|
1465
1392
|
msgstr "Comptabilis??"
|
|
1466
1393
|
|
|
@@ -1468,7 +1395,6 @@ msgstr "Comptabilis??"
|
|
|
1468
1395
|
#. odoo-python
|
|
1469
1396
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1470
1397
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1471
|
-
#, python-format
|
|
1472
1398
|
msgid "Rec."
|
|
1473
1399
|
msgstr "Let."
|
|
1474
1400
|
|
|
@@ -1506,7 +1432,6 @@ msgstr ""
|
|
|
1506
1432
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1507
1433
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1508
1434
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1509
|
-
#, python-format
|
|
1510
1435
|
msgid "Ref - Label"
|
|
1511
1436
|
msgstr "R??f - Libell??"
|
|
1512
1437
|
|
|
@@ -1522,7 +1447,6 @@ msgstr "Action du rapport"
|
|
|
1522
1447
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1523
1448
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1524
1449
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1525
|
-
#, python-format
|
|
1526
1450
|
msgid "Residual"
|
|
1527
1451
|
msgstr "R??siduel"
|
|
1528
1452
|
|
|
@@ -1530,7 +1454,6 @@ msgstr "R??siduel"
|
|
|
1530
1454
|
#. odoo-python
|
|
1531
1455
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1532
1456
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1533
|
-
#, python-format
|
|
1534
1457
|
msgid "Sequence"
|
|
1535
1458
|
msgstr "S??quence"
|
|
1536
1459
|
|
|
@@ -1542,7 +1465,6 @@ msgstr "S??quence"
|
|
|
1542
1465
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1543
1466
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1544
1467
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1545
|
-
#, python-format
|
|
1546
1468
|
msgid "Show"
|
|
1547
1469
|
msgstr "Afficher"
|
|
1548
1470
|
|
|
@@ -1575,7 +1497,6 @@ msgstr "Afficher le d??tail du partenaire"
|
|
|
1575
1497
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1576
1498
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1577
1499
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1578
|
-
#, python-format
|
|
1579
1500
|
msgid "Show foreign currency"
|
|
1580
1501
|
msgstr "Afficher les devises ??trang??res"
|
|
1581
1502
|
|
|
@@ -1610,7 +1531,6 @@ msgstr "Compte de d??but dans un intervalle"
|
|
|
1610
1531
|
#. odoo-python
|
|
1611
1532
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1612
1533
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1613
|
-
#, python-format
|
|
1614
1534
|
msgid "TOTAL"
|
|
1615
1535
|
msgstr ""
|
|
1616
1536
|
|
|
@@ -1639,7 +1559,6 @@ msgstr "??critures cibles"
|
|
|
1639
1559
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1640
1560
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1641
1561
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1642
|
-
#, python-format
|
|
1643
1562
|
msgid "Target moves filter"
|
|
1644
1563
|
msgstr "Filtre sur les ??critures cibles"
|
|
1645
1564
|
|
|
@@ -1647,7 +1566,6 @@ msgstr "Filtre sur les ??critures cibles"
|
|
|
1647
1566
|
#. odoo-python
|
|
1648
1567
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1649
1568
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1650
|
-
#, python-format
|
|
1651
1569
|
msgid "Tax"
|
|
1652
1570
|
msgstr "Taxe"
|
|
1653
1571
|
|
|
@@ -1660,21 +1578,18 @@ msgstr "Taxe"
|
|
|
1660
1578
|
#. module: account_financial_report
|
|
1661
1579
|
#. odoo-python
|
|
1662
1580
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1663
|
-
#, python-format
|
|
1664
1581
|
msgid "Tax Balance"
|
|
1665
1582
|
msgstr "Taxe Solde"
|
|
1666
1583
|
|
|
1667
1584
|
#. module: account_financial_report
|
|
1668
1585
|
#. odoo-python
|
|
1669
1586
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1670
|
-
#, python-format
|
|
1671
1587
|
msgid "Tax Credit"
|
|
1672
1588
|
msgstr "Taxe Cr??dit"
|
|
1673
1589
|
|
|
1674
1590
|
#. module: account_financial_report
|
|
1675
1591
|
#. odoo-python
|
|
1676
1592
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1677
|
-
#, python-format
|
|
1678
1593
|
msgid "Tax Debit"
|
|
1679
1594
|
msgstr "Taxe D??bit"
|
|
1680
1595
|
|
|
@@ -1682,14 +1597,12 @@ msgstr "Taxe D??bit"
|
|
|
1682
1597
|
#. odoo-python
|
|
1683
1598
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1684
1599
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1685
|
-
#, python-format
|
|
1686
1600
|
msgid "Tax Groups"
|
|
1687
1601
|
msgstr "Groupes de taxe"
|
|
1688
1602
|
|
|
1689
1603
|
#. module: account_financial_report
|
|
1690
1604
|
#. odoo-python
|
|
1691
1605
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1692
|
-
#, python-format
|
|
1693
1606
|
msgid "Tax Initial balance"
|
|
1694
1607
|
msgstr "Taxe Balance initiale"
|
|
1695
1608
|
|
|
@@ -1697,7 +1610,6 @@ msgstr "Taxe Balance initiale"
|
|
|
1697
1610
|
#. odoo-python
|
|
1698
1611
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1699
1612
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1700
|
-
#, python-format
|
|
1701
1613
|
msgid "Tax Tags"
|
|
1702
1614
|
msgstr "??tiquettes de taxe"
|
|
1703
1615
|
|
|
@@ -1705,7 +1617,6 @@ msgstr "??tiquettes de taxe"
|
|
|
1705
1617
|
#. odoo-python
|
|
1706
1618
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1707
1619
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1708
|
-
#, python-format
|
|
1709
1620
|
msgid "Tax ending balance"
|
|
1710
1621
|
msgstr "Taxe Balance finale"
|
|
1711
1622
|
|
|
@@ -1721,14 +1632,12 @@ msgstr "Taxe Balance initiale"
|
|
|
1721
1632
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1722
1633
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1723
1634
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1724
|
-
#, python-format
|
|
1725
1635
|
msgid "Taxes"
|
|
1726
1636
|
msgstr "Taxes"
|
|
1727
1637
|
|
|
1728
1638
|
#. module: account_financial_report
|
|
1729
1639
|
#. odoo-python
|
|
1730
1640
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1731
|
-
#, python-format
|
|
1732
1641
|
msgid ""
|
|
1733
1642
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1734
1643
|
"the same."
|
|
@@ -1739,7 +1648,6 @@ msgstr ""
|
|
|
1739
1648
|
#. module: account_financial_report
|
|
1740
1649
|
#. odoo-python
|
|
1741
1650
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1742
|
-
#, python-format
|
|
1743
1651
|
msgid ""
|
|
1744
1652
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1745
1653
|
"same."
|
|
@@ -1750,7 +1658,6 @@ msgstr ""
|
|
|
1750
1658
|
#. module: account_financial_report
|
|
1751
1659
|
#. odoo-python
|
|
1752
1660
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1753
|
-
#, python-format
|
|
1754
1661
|
msgid ""
|
|
1755
1662
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1756
1663
|
msgstr ""
|
|
@@ -1760,7 +1667,6 @@ msgstr ""
|
|
|
1760
1667
|
#. module: account_financial_report
|
|
1761
1668
|
#. odoo-python
|
|
1762
1669
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1763
|
-
#, python-format
|
|
1764
1670
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1765
1671
|
msgstr "Le niveau de hi??rarchie ?? filtrer doit ??tre plus grand que 0."
|
|
1766
1672
|
|
|
@@ -1783,7 +1689,6 @@ msgstr "Jusqu'au :"
|
|
|
1783
1689
|
#. odoo-python
|
|
1784
1690
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1785
1691
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1786
|
-
#, python-format
|
|
1787
1692
|
msgid "Total"
|
|
1788
1693
|
msgstr "Total"
|
|
1789
1694
|
|
|
@@ -1794,7 +1699,6 @@ msgstr "Total"
|
|
|
1794
1699
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1795
1700
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1796
1701
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1797
|
-
#, python-format
|
|
1798
1702
|
msgid "Trial Balance"
|
|
1799
1703
|
msgstr "Balance g??n??rale"
|
|
1800
1704
|
|
|
@@ -1888,7 +1792,6 @@ msgstr "Rapport de TVA XLSX"
|
|
|
1888
1792
|
#. module: account_financial_report
|
|
1889
1793
|
#. odoo-python
|
|
1890
1794
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1891
|
-
#, python-format
|
|
1892
1795
|
msgid "Vat Report"
|
|
1893
1796
|
msgstr "Rapport de TVA"
|
|
1894
1797
|
|
|
@@ -1929,7 +1832,6 @@ msgstr "Avec le libell?? du compte"
|
|
|
1929
1832
|
#. module: account_financial_report
|
|
1930
1833
|
#. odoo-python
|
|
1931
1834
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1932
|
-
#, python-format
|
|
1933
1835
|
msgid "Without analytic account"
|
|
1934
1836
|
msgstr ""
|
|
1935
1837
|
|
|
@@ -1939,14 +1841,12 @@ msgstr ""
|
|
|
1939
1841
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1940
1842
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1941
1843
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1942
|
-
#, python-format
|
|
1943
1844
|
msgid "Yes"
|
|
1944
1845
|
msgstr "Oui"
|
|
1945
1846
|
|
|
1946
1847
|
#. module: account_financial_report
|
|
1947
1848
|
#. odoo-python
|
|
1948
1849
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1949
|
-
#, python-format
|
|
1950
1850
|
msgid "future"
|
|
1951
1851
|
msgstr "futur"
|
|
1952
1852
|
|