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 ""
|
|
|
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
|
|
|
@@ -136,7 +135,6 @@ msgstr "Groupe de compte"
|
|
|
136
135
|
#. module: account_financial_report
|
|
137
136
|
#. odoo-python
|
|
138
137
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
139
|
-
#, python-format
|
|
140
138
|
msgid "Account Name"
|
|
141
139
|
msgstr "Nom du compte"
|
|
142
140
|
|
|
@@ -144,7 +142,6 @@ msgstr "Nom du compte"
|
|
|
144
142
|
#. odoo-python
|
|
145
143
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
146
144
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
147
|
-
#, python-format
|
|
148
145
|
msgid "Account at 0 filter"
|
|
149
146
|
msgstr "Le compte a 0 filtre"
|
|
150
147
|
|
|
@@ -154,7 +151,6 @@ msgstr "Le compte a 0 filtre"
|
|
|
154
151
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
155
152
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
156
153
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
157
|
-
#, python-format
|
|
158
154
|
msgid "Account balance at 0 filter"
|
|
159
155
|
msgstr "Filtrer les soldes de compte ?? 0"
|
|
160
156
|
|
|
@@ -188,7 +184,6 @@ msgstr ""
|
|
|
188
184
|
#. module: account_financial_report
|
|
189
185
|
#. odoo-python
|
|
190
186
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
191
|
-
#, python-format
|
|
192
187
|
msgid "Age ≤ 120 d."
|
|
193
188
|
msgstr ""
|
|
194
189
|
|
|
@@ -202,7 +197,6 @@ msgstr ""
|
|
|
202
197
|
#. module: account_financial_report
|
|
203
198
|
#. odoo-python
|
|
204
199
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
205
|
-
#, python-format
|
|
206
200
|
msgid "Age ≤ 30 d."
|
|
207
201
|
msgstr ""
|
|
208
202
|
|
|
@@ -216,7 +210,6 @@ msgstr ""
|
|
|
216
210
|
#. module: account_financial_report
|
|
217
211
|
#. odoo-python
|
|
218
212
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
219
|
-
#, python-format
|
|
220
213
|
msgid "Age ≤ 60 d."
|
|
221
214
|
msgstr ""
|
|
222
215
|
|
|
@@ -230,7 +223,6 @@ msgstr ""
|
|
|
230
223
|
#. module: account_financial_report
|
|
231
224
|
#. odoo-python
|
|
232
225
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
233
|
-
#, python-format
|
|
234
226
|
msgid "Age ≤ 90 d."
|
|
235
227
|
msgstr ""
|
|
236
228
|
|
|
@@ -241,7 +233,6 @@ msgstr ""
|
|
|
241
233
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
242
234
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
243
235
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
244
|
-
#, python-format
|
|
245
236
|
msgid "Aged Partner Balance"
|
|
246
237
|
msgstr "Balance ??g??e partenaire"
|
|
247
238
|
|
|
@@ -275,7 +266,6 @@ msgstr "Balance ??g??e partenaire XLSX"
|
|
|
275
266
|
#. module: account_financial_report
|
|
276
267
|
#. odoo-python
|
|
277
268
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
278
|
-
#, python-format
|
|
279
269
|
msgid "All"
|
|
280
270
|
msgstr "Tous"
|
|
281
271
|
|
|
@@ -307,7 +297,6 @@ msgstr "??critures comptabilis??es seulement"
|
|
|
307
297
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
308
298
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
309
299
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
310
|
-
#, python-format
|
|
311
300
|
msgid "All entries"
|
|
312
301
|
msgstr "Toutes les ??critures"
|
|
313
302
|
|
|
@@ -321,7 +310,6 @@ msgstr "Toutes les ??critures"
|
|
|
321
310
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
322
311
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
323
312
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
324
|
-
#, python-format
|
|
325
313
|
msgid "All posted entries"
|
|
326
314
|
msgstr "Toutes les ??critures post??es"
|
|
327
315
|
|
|
@@ -333,7 +321,6 @@ msgstr "Montant Devise"
|
|
|
333
321
|
#. module: account_financial_report
|
|
334
322
|
#. odoo-python
|
|
335
323
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
336
|
-
#, python-format
|
|
337
324
|
msgid "Amount Currency"
|
|
338
325
|
msgstr "Montant Devise"
|
|
339
326
|
|
|
@@ -341,7 +328,6 @@ msgstr "Montant Devise"
|
|
|
341
328
|
#. odoo-python
|
|
342
329
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
343
330
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
344
|
-
#, python-format
|
|
345
331
|
msgid "Amount cur."
|
|
346
332
|
msgstr "Montant Devise"
|
|
347
333
|
|
|
@@ -356,7 +342,6 @@ msgstr "Filtrer les comptes"
|
|
|
356
342
|
#. odoo-python
|
|
357
343
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
358
344
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
359
|
-
#, python-format
|
|
360
345
|
msgid "Analytic Distribution"
|
|
361
346
|
msgstr ""
|
|
362
347
|
|
|
@@ -375,21 +360,18 @@ msgstr "Montant de base"
|
|
|
375
360
|
#. module: account_financial_report
|
|
376
361
|
#. odoo-python
|
|
377
362
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
378
|
-
#, python-format
|
|
379
363
|
msgid "Base Balance"
|
|
380
364
|
msgstr "Solde de base"
|
|
381
365
|
|
|
382
366
|
#. module: account_financial_report
|
|
383
367
|
#. odoo-python
|
|
384
368
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
385
|
-
#, python-format
|
|
386
369
|
msgid "Base Credit"
|
|
387
370
|
msgstr "Cr??dit de base"
|
|
388
371
|
|
|
389
372
|
#. module: account_financial_report
|
|
390
373
|
#. odoo-python
|
|
391
374
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
392
|
-
#, python-format
|
|
393
375
|
msgid "Base Debit"
|
|
394
376
|
msgstr "D??bit de base"
|
|
395
377
|
|
|
@@ -402,7 +384,6 @@ msgstr "Bas?? sur"
|
|
|
402
384
|
#. module: account_financial_report
|
|
403
385
|
#. odoo-python
|
|
404
386
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
405
|
-
#, python-format
|
|
406
387
|
msgid "Based on"
|
|
407
388
|
msgstr "Bas??e sur"
|
|
408
389
|
|
|
@@ -420,7 +401,6 @@ msgstr "Annuler"
|
|
|
420
401
|
#. odoo-python
|
|
421
402
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
422
403
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
423
|
-
#, python-format
|
|
424
404
|
msgid "Centralize filter"
|
|
425
405
|
msgstr "Filtre de centralisation"
|
|
426
406
|
|
|
@@ -440,7 +420,6 @@ msgstr "Groupes enfants"
|
|
|
440
420
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
441
421
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
442
422
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
443
|
-
#, python-format
|
|
444
423
|
msgid "Code"
|
|
445
424
|
msgstr "Code"
|
|
446
425
|
|
|
@@ -455,7 +434,6 @@ msgstr "Code"
|
|
|
455
434
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
456
435
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
457
436
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
458
|
-
#, python-format
|
|
459
437
|
msgid "Company"
|
|
460
438
|
msgstr "Soci??t??"
|
|
461
439
|
|
|
@@ -508,7 +486,6 @@ msgstr "Cr???? le"
|
|
|
508
486
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
509
487
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
510
488
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
511
|
-
#, python-format
|
|
512
489
|
msgid "Credit"
|
|
513
490
|
msgstr "Cr??dit"
|
|
514
491
|
|
|
@@ -516,7 +493,6 @@ msgstr "Cr??dit"
|
|
|
516
493
|
#. odoo-python
|
|
517
494
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
518
495
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
519
|
-
#, python-format
|
|
520
496
|
msgid "Cumul cur."
|
|
521
497
|
msgstr ""
|
|
522
498
|
|
|
@@ -524,7 +500,6 @@ msgstr ""
|
|
|
524
500
|
#. odoo-python
|
|
525
501
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
526
502
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
527
|
-
#, python-format
|
|
528
503
|
msgid "Cumul. Bal."
|
|
529
504
|
msgstr "Cumuler bal."
|
|
530
505
|
|
|
@@ -533,7 +508,6 @@ msgstr "Cumuler bal."
|
|
|
533
508
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
534
509
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
535
510
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
536
|
-
#, python-format
|
|
537
511
|
msgid "Cur."
|
|
538
512
|
msgstr "Courant"
|
|
539
513
|
|
|
@@ -541,7 +515,6 @@ msgstr "Courant"
|
|
|
541
515
|
#. odoo-python
|
|
542
516
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
543
517
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
544
|
-
#, python-format
|
|
545
518
|
msgid "Cur. Original"
|
|
546
519
|
msgstr "Courant original"
|
|
547
520
|
|
|
@@ -549,14 +522,12 @@ msgstr "Courant original"
|
|
|
549
522
|
#. odoo-python
|
|
550
523
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
551
524
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
552
|
-
#, python-format
|
|
553
525
|
msgid "Cur. Residual"
|
|
554
526
|
msgstr "Courant r??siduel"
|
|
555
527
|
|
|
556
528
|
#. module: account_financial_report
|
|
557
529
|
#. odoo-python
|
|
558
530
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
559
|
-
#, python-format
|
|
560
531
|
msgid "Currency"
|
|
561
532
|
msgstr "Devise"
|
|
562
533
|
|
|
@@ -564,7 +535,6 @@ msgstr "Devise"
|
|
|
564
535
|
#. odoo-python
|
|
565
536
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
566
537
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
567
|
-
#, python-format
|
|
568
538
|
msgid "Current"
|
|
569
539
|
msgstr "Courant"
|
|
570
540
|
|
|
@@ -579,7 +549,6 @@ msgstr "Courant"
|
|
|
579
549
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
580
550
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
581
551
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
582
|
-
#, python-format
|
|
583
552
|
msgid "Date"
|
|
584
553
|
msgstr "Date"
|
|
585
554
|
|
|
@@ -611,14 +580,12 @@ msgstr "Date au"
|
|
|
611
580
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
612
581
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
613
582
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
614
|
-
#, python-format
|
|
615
583
|
msgid "Date at filter"
|
|
616
584
|
msgstr "Date au filtre"
|
|
617
585
|
|
|
618
586
|
#. module: account_financial_report
|
|
619
587
|
#. odoo-python
|
|
620
588
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
621
|
-
#, python-format
|
|
622
589
|
msgid "Date from"
|
|
623
590
|
msgstr "Date du"
|
|
624
591
|
|
|
@@ -637,14 +604,12 @@ msgstr "Plage de date"
|
|
|
637
604
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
638
605
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
639
606
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
640
|
-
#, python-format
|
|
641
607
|
msgid "Date range filter"
|
|
642
608
|
msgstr "Filtre de plage de dates"
|
|
643
609
|
|
|
644
610
|
#. module: account_financial_report
|
|
645
611
|
#. odoo-python
|
|
646
612
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
647
|
-
#, python-format
|
|
648
613
|
msgid "Date to"
|
|
649
614
|
msgstr "Date au"
|
|
650
615
|
|
|
@@ -658,7 +623,6 @@ msgstr "Date au"
|
|
|
658
623
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
659
624
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
660
625
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
661
|
-
#, python-format
|
|
662
626
|
msgid "Debit"
|
|
663
627
|
msgstr "D??bit"
|
|
664
628
|
|
|
@@ -667,7 +631,6 @@ msgstr "D??bit"
|
|
|
667
631
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
668
632
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
669
633
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
670
|
-
#, python-format
|
|
671
634
|
msgid "Description"
|
|
672
635
|
msgstr "Description"
|
|
673
636
|
|
|
@@ -729,7 +692,6 @@ msgstr ""
|
|
|
729
692
|
#. odoo-python
|
|
730
693
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
731
694
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
732
|
-
#, python-format
|
|
733
695
|
msgid "Due date"
|
|
734
696
|
msgstr "Date d'??ch??ance"
|
|
735
697
|
|
|
@@ -767,7 +729,6 @@ msgstr ""
|
|
|
767
729
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
768
730
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
769
731
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
770
|
-
#, python-format
|
|
771
732
|
msgid "Ending balance"
|
|
772
733
|
msgstr "Solde de cl??ture"
|
|
773
734
|
|
|
@@ -784,7 +745,6 @@ msgstr ""
|
|
|
784
745
|
#. module: account_financial_report
|
|
785
746
|
#. odoo-python
|
|
786
747
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
787
|
-
#, python-format
|
|
788
748
|
msgid "Entries sorted by"
|
|
789
749
|
msgstr "??criture tri??es par"
|
|
790
750
|
|
|
@@ -798,21 +758,18 @@ msgstr "??criture tri??es par"
|
|
|
798
758
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
799
759
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
800
760
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
801
|
-
#, python-format
|
|
802
761
|
msgid "Entry"
|
|
803
762
|
msgstr "??criture"
|
|
804
763
|
|
|
805
764
|
#. module: account_financial_report
|
|
806
765
|
#. odoo-python
|
|
807
766
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
808
|
-
#, python-format
|
|
809
767
|
msgid "Entry number"
|
|
810
768
|
msgstr "Num??ro d'??criture"
|
|
811
769
|
|
|
812
770
|
#. module: account_financial_report
|
|
813
771
|
#. odoo-javascript
|
|
814
772
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
815
|
-
#, python-format
|
|
816
773
|
msgid "Export"
|
|
817
774
|
msgstr ""
|
|
818
775
|
|
|
@@ -895,7 +852,6 @@ msgstr "Du:"
|
|
|
895
852
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
896
853
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
897
854
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
898
|
-
#, python-format
|
|
899
855
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
900
856
|
msgstr ""
|
|
901
857
|
|
|
@@ -925,7 +881,6 @@ msgstr ""
|
|
|
925
881
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
926
882
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
927
883
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
928
|
-
#, python-format
|
|
929
884
|
msgid "General Ledger"
|
|
930
885
|
msgstr "Grand livre"
|
|
931
886
|
|
|
@@ -988,7 +943,6 @@ msgstr ""
|
|
|
988
943
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
989
944
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
990
945
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
991
|
-
#, python-format
|
|
992
946
|
msgid "Hide"
|
|
993
947
|
msgstr "Cacher"
|
|
994
948
|
|
|
@@ -1037,7 +991,6 @@ msgstr ""
|
|
|
1037
991
|
#. module: account_financial_report
|
|
1038
992
|
#. odoo-python
|
|
1039
993
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1040
|
-
#, python-format
|
|
1041
994
|
msgid "Inferior Limit must be greather than zero"
|
|
1042
995
|
msgstr ""
|
|
1043
996
|
|
|
@@ -1065,7 +1018,6 @@ msgstr ""
|
|
|
1065
1018
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1066
1019
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1067
1020
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1068
|
-
#, python-format
|
|
1069
1021
|
msgid "Initial balance"
|
|
1070
1022
|
msgstr "Solde initial"
|
|
1071
1023
|
|
|
@@ -1085,7 +1037,6 @@ msgstr ""
|
|
|
1085
1037
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1086
1038
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1087
1039
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1088
|
-
#, python-format
|
|
1089
1040
|
msgid "Journal"
|
|
1090
1041
|
msgstr "Journal"
|
|
1091
1042
|
|
|
@@ -1105,7 +1056,6 @@ msgstr ""
|
|
|
1105
1056
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1106
1057
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1107
1058
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1108
|
-
#, python-format
|
|
1109
1059
|
msgid "Journal Ledger"
|
|
1110
1060
|
msgstr ""
|
|
1111
1061
|
|
|
@@ -1141,7 +1091,6 @@ msgstr "Livre des Journaux XLSX"
|
|
|
1141
1091
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1142
1092
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1143
1093
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1144
|
-
#, python-format
|
|
1145
1094
|
msgid "Journals"
|
|
1146
1095
|
msgstr "Journaux"
|
|
1147
1096
|
|
|
@@ -1178,7 +1127,6 @@ msgstr "Niveau"
|
|
|
1178
1127
|
#. module: account_financial_report
|
|
1179
1128
|
#. odoo-python
|
|
1180
1129
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1181
|
-
#, python-format
|
|
1182
1130
|
msgid "Level %s"
|
|
1183
1131
|
msgstr "Niveau %s"
|
|
1184
1132
|
|
|
@@ -1187,7 +1135,6 @@ msgstr "Niveau %s"
|
|
|
1187
1135
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1188
1136
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1189
1137
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1190
|
-
#, python-format
|
|
1191
1138
|
msgid "Limit hierarchy levels"
|
|
1192
1139
|
msgstr "Limiter les niveaux de hi??rarchie"
|
|
1193
1140
|
|
|
@@ -1201,7 +1148,6 @@ msgstr "Ligne"
|
|
|
1201
1148
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1202
1149
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1203
1150
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1204
|
-
#, python-format
|
|
1205
1151
|
msgid "Missing Partner"
|
|
1206
1152
|
msgstr ""
|
|
1207
1153
|
|
|
@@ -1228,7 +1174,6 @@ msgstr "Mouvements"
|
|
|
1228
1174
|
#. module: account_financial_report
|
|
1229
1175
|
#. odoo-python
|
|
1230
1176
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1231
|
-
#, python-format
|
|
1232
1177
|
msgid "Must complete Configuration Lines"
|
|
1233
1178
|
msgstr ""
|
|
1234
1179
|
|
|
@@ -1241,15 +1186,11 @@ msgstr ""
|
|
|
1241
1186
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1242
1187
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1243
1188
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1244
|
-
#, python-format
|
|
1245
1189
|
msgid "Name"
|
|
1246
1190
|
msgstr "Nom"
|
|
1247
1191
|
|
|
1248
1192
|
#. module: account_financial_report
|
|
1249
|
-
#. odoo-python
|
|
1250
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1251
1193
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1252
|
-
#, python-format
|
|
1253
1194
|
msgid "Name must be unique per report configuration"
|
|
1254
1195
|
msgstr ""
|
|
1255
1196
|
|
|
@@ -1257,7 +1198,6 @@ msgstr ""
|
|
|
1257
1198
|
#. odoo-python
|
|
1258
1199
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1259
1200
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1260
|
-
#, python-format
|
|
1261
1201
|
msgid "Net"
|
|
1262
1202
|
msgstr "Net"
|
|
1263
1203
|
|
|
@@ -1267,14 +1207,12 @@ msgstr "Net"
|
|
|
1267
1207
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1268
1208
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1269
1209
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1270
|
-
#, python-format
|
|
1271
1210
|
msgid "No"
|
|
1272
1211
|
msgstr "Non"
|
|
1273
1212
|
|
|
1274
1213
|
#. module: account_financial_report
|
|
1275
1214
|
#. odoo-python
|
|
1276
1215
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1277
|
-
#, python-format
|
|
1278
1216
|
msgid "No group"
|
|
1279
1217
|
msgstr "Sans groupe"
|
|
1280
1218
|
|
|
@@ -1282,7 +1220,6 @@ msgstr "Sans groupe"
|
|
|
1282
1220
|
#. odoo-python
|
|
1283
1221
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1284
1222
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1285
|
-
#, python-format
|
|
1286
1223
|
msgid "No limit"
|
|
1287
1224
|
msgstr "Sans limite"
|
|
1288
1225
|
|
|
@@ -1294,7 +1231,6 @@ msgstr ""
|
|
|
1294
1231
|
#. module: account_financial_report
|
|
1295
1232
|
#. odoo-python
|
|
1296
1233
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1297
|
-
#, python-format
|
|
1298
1234
|
msgid "Not Posted"
|
|
1299
1235
|
msgstr "Non comptabilis??"
|
|
1300
1236
|
|
|
@@ -1317,7 +1253,6 @@ msgstr "Rapports de comptabilit?? OCA"
|
|
|
1317
1253
|
#. odoo-python
|
|
1318
1254
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1319
1255
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1320
|
-
#, python-format
|
|
1321
1256
|
msgid "Older"
|
|
1322
1257
|
msgstr "Plus ancien"
|
|
1323
1258
|
|
|
@@ -1334,7 +1269,6 @@ msgstr ""
|
|
|
1334
1269
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1335
1270
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1336
1271
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1337
|
-
#, python-format
|
|
1338
1272
|
msgid "Open Items"
|
|
1339
1273
|
msgstr "Postes ouverts"
|
|
1340
1274
|
|
|
@@ -1379,7 +1313,6 @@ msgstr "Options"
|
|
|
1379
1313
|
#. odoo-python
|
|
1380
1314
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1381
1315
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1382
|
-
#, python-format
|
|
1383
1316
|
msgid "Original"
|
|
1384
1317
|
msgstr "Original"
|
|
1385
1318
|
|
|
@@ -1396,7 +1329,6 @@ msgstr "Original"
|
|
|
1396
1329
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1397
1330
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1398
1331
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1399
|
-
#, python-format
|
|
1400
1332
|
msgid "Partner"
|
|
1401
1333
|
msgstr "Partenaire"
|
|
1402
1334
|
|
|
@@ -1412,14 +1344,12 @@ msgstr ""
|
|
|
1412
1344
|
#. module: account_financial_report
|
|
1413
1345
|
#. odoo-python
|
|
1414
1346
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1415
|
-
#, python-format
|
|
1416
1347
|
msgid "Partner Initial balance"
|
|
1417
1348
|
msgstr "Solde initial du partenaire"
|
|
1418
1349
|
|
|
1419
1350
|
#. module: account_financial_report
|
|
1420
1351
|
#. odoo-python
|
|
1421
1352
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1422
|
-
#, python-format
|
|
1423
1353
|
msgid "Partner cumul aged balance"
|
|
1424
1354
|
msgstr "Balance ??g??e cumul??e du partenaire"
|
|
1425
1355
|
|
|
@@ -1429,7 +1359,6 @@ msgstr "Balance ??g??e cumul??e du partenaire"
|
|
|
1429
1359
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1430
1360
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1431
1361
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1432
|
-
#, python-format
|
|
1433
1362
|
msgid "Partner ending balance"
|
|
1434
1363
|
msgstr "Solde de cl??ture du partenaire"
|
|
1435
1364
|
|
|
@@ -1460,7 +1389,6 @@ msgstr "Pourcentages"
|
|
|
1460
1389
|
#. odoo-python
|
|
1461
1390
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1462
1391
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1463
|
-
#, python-format
|
|
1464
1392
|
msgid "Period balance"
|
|
1465
1393
|
msgstr "Solde de la p??riode"
|
|
1466
1394
|
|
|
@@ -1472,7 +1400,6 @@ msgstr "P??riodes"
|
|
|
1472
1400
|
#. module: account_financial_report
|
|
1473
1401
|
#. odoo-python
|
|
1474
1402
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1475
|
-
#, python-format
|
|
1476
1403
|
msgid "Posted"
|
|
1477
1404
|
msgstr "Comptabilis??"
|
|
1478
1405
|
|
|
@@ -1480,7 +1407,6 @@ msgstr "Comptabilis??"
|
|
|
1480
1407
|
#. odoo-python
|
|
1481
1408
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1482
1409
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1483
|
-
#, python-format
|
|
1484
1410
|
msgid "Rec."
|
|
1485
1411
|
msgstr "R??c."
|
|
1486
1412
|
|
|
@@ -1519,7 +1445,6 @@ msgstr ""
|
|
|
1519
1445
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1520
1446
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1521
1447
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1522
|
-
#, python-format
|
|
1523
1448
|
msgid "Ref - Label"
|
|
1524
1449
|
msgstr "Ref - Libell??"
|
|
1525
1450
|
|
|
@@ -1535,7 +1460,6 @@ msgstr ""
|
|
|
1535
1460
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1536
1461
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1537
1462
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1538
|
-
#, python-format
|
|
1539
1463
|
msgid "Residual"
|
|
1540
1464
|
msgstr ""
|
|
1541
1465
|
|
|
@@ -1543,7 +1467,6 @@ msgstr ""
|
|
|
1543
1467
|
#. odoo-python
|
|
1544
1468
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1545
1469
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1546
|
-
#, python-format
|
|
1547
1470
|
msgid "Sequence"
|
|
1548
1471
|
msgstr ""
|
|
1549
1472
|
|
|
@@ -1555,7 +1478,6 @@ msgstr ""
|
|
|
1555
1478
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1556
1479
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1557
1480
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1558
|
-
#, python-format
|
|
1559
1481
|
msgid "Show"
|
|
1560
1482
|
msgstr "Afficher"
|
|
1561
1483
|
|
|
@@ -1589,7 +1511,6 @@ msgstr "Afficher le d??tails du partenaire"
|
|
|
1589
1511
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1590
1512
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1591
1513
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1592
|
-
#, python-format
|
|
1593
1514
|
msgid "Show foreign currency"
|
|
1594
1515
|
msgstr "Afficher les devises ??trang??res"
|
|
1595
1516
|
|
|
@@ -1624,7 +1545,6 @@ msgstr ""
|
|
|
1624
1545
|
#. odoo-python
|
|
1625
1546
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1626
1547
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1627
|
-
#, python-format
|
|
1628
1548
|
msgid "TOTAL"
|
|
1629
1549
|
msgstr ""
|
|
1630
1550
|
|
|
@@ -1653,7 +1573,6 @@ msgstr "??critures cibl??es"
|
|
|
1653
1573
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1654
1574
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1655
1575
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1656
|
-
#, python-format
|
|
1657
1576
|
msgid "Target moves filter"
|
|
1658
1577
|
msgstr "Filtre sur les ??critures cible"
|
|
1659
1578
|
|
|
@@ -1661,7 +1580,6 @@ msgstr "Filtre sur les ??critures cible"
|
|
|
1661
1580
|
#. odoo-python
|
|
1662
1581
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1663
1582
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1664
|
-
#, python-format
|
|
1665
1583
|
msgid "Tax"
|
|
1666
1584
|
msgstr "Taxe"
|
|
1667
1585
|
|
|
@@ -1674,21 +1592,18 @@ msgstr "Montant de la taxe"
|
|
|
1674
1592
|
#. module: account_financial_report
|
|
1675
1593
|
#. odoo-python
|
|
1676
1594
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1677
|
-
#, python-format
|
|
1678
1595
|
msgid "Tax Balance"
|
|
1679
1596
|
msgstr "Solde des taxes"
|
|
1680
1597
|
|
|
1681
1598
|
#. module: account_financial_report
|
|
1682
1599
|
#. odoo-python
|
|
1683
1600
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1684
|
-
#, python-format
|
|
1685
1601
|
msgid "Tax Credit"
|
|
1686
1602
|
msgstr "Cr??dit de taxe"
|
|
1687
1603
|
|
|
1688
1604
|
#. module: account_financial_report
|
|
1689
1605
|
#. odoo-python
|
|
1690
1606
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1691
|
-
#, python-format
|
|
1692
1607
|
msgid "Tax Debit"
|
|
1693
1608
|
msgstr "D??bit de taxe"
|
|
1694
1609
|
|
|
@@ -1696,14 +1611,12 @@ msgstr "D??bit de taxe"
|
|
|
1696
1611
|
#. odoo-python
|
|
1697
1612
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1698
1613
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1699
|
-
#, python-format
|
|
1700
1614
|
msgid "Tax Groups"
|
|
1701
1615
|
msgstr "Groupes de taxe"
|
|
1702
1616
|
|
|
1703
1617
|
#. module: account_financial_report
|
|
1704
1618
|
#. odoo-python
|
|
1705
1619
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1706
|
-
#, python-format
|
|
1707
1620
|
msgid "Tax Initial balance"
|
|
1708
1621
|
msgstr ""
|
|
1709
1622
|
|
|
@@ -1711,7 +1624,6 @@ msgstr ""
|
|
|
1711
1624
|
#. odoo-python
|
|
1712
1625
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1713
1626
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1714
|
-
#, python-format
|
|
1715
1627
|
msgid "Tax Tags"
|
|
1716
1628
|
msgstr "??tiquettes de taxe"
|
|
1717
1629
|
|
|
@@ -1719,7 +1631,6 @@ msgstr "??tiquettes de taxe"
|
|
|
1719
1631
|
#. odoo-python
|
|
1720
1632
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1721
1633
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1722
|
-
#, python-format
|
|
1723
1634
|
msgid "Tax ending balance"
|
|
1724
1635
|
msgstr ""
|
|
1725
1636
|
|
|
@@ -1735,14 +1646,12 @@ msgstr ""
|
|
|
1735
1646
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1736
1647
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1737
1648
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1738
|
-
#, python-format
|
|
1739
1649
|
msgid "Taxes"
|
|
1740
1650
|
msgstr "Taxes"
|
|
1741
1651
|
|
|
1742
1652
|
#. module: account_financial_report
|
|
1743
1653
|
#. odoo-python
|
|
1744
1654
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1745
|
-
#, python-format
|
|
1746
1655
|
msgid ""
|
|
1747
1656
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1748
1657
|
"the same."
|
|
@@ -1753,7 +1662,6 @@ msgstr ""
|
|
|
1753
1662
|
#. module: account_financial_report
|
|
1754
1663
|
#. odoo-python
|
|
1755
1664
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1756
|
-
#, python-format
|
|
1757
1665
|
msgid ""
|
|
1758
1666
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1759
1667
|
"same."
|
|
@@ -1764,7 +1672,6 @@ msgstr ""
|
|
|
1764
1672
|
#. module: account_financial_report
|
|
1765
1673
|
#. odoo-python
|
|
1766
1674
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1767
|
-
#, python-format
|
|
1768
1675
|
msgid ""
|
|
1769
1676
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1770
1677
|
msgstr ""
|
|
@@ -1774,7 +1681,6 @@ msgstr ""
|
|
|
1774
1681
|
#. module: account_financial_report
|
|
1775
1682
|
#. odoo-python
|
|
1776
1683
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1777
|
-
#, python-format
|
|
1778
1684
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1779
1685
|
msgstr "Le niveau de hi??rarchie ?? filtrer doit ??tre plus rand que 0."
|
|
1780
1686
|
|
|
@@ -1798,7 +1704,6 @@ msgstr "Au:"
|
|
|
1798
1704
|
#. odoo-python
|
|
1799
1705
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1800
1706
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1801
|
-
#, python-format
|
|
1802
1707
|
msgid "Total"
|
|
1803
1708
|
msgstr "Total"
|
|
1804
1709
|
|
|
@@ -1809,7 +1714,6 @@ msgstr "Total"
|
|
|
1809
1714
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1810
1715
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1811
1716
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1812
|
-
#, python-format
|
|
1813
1717
|
msgid "Trial Balance"
|
|
1814
1718
|
msgstr "Balance g??n??rale"
|
|
1815
1719
|
|
|
@@ -1901,7 +1805,7 @@ msgstr "Rapport TVA XLSX"
|
|
|
1901
1805
|
#. module: account_financial_report
|
|
1902
1806
|
#. odoo-python
|
|
1903
1807
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1904
|
-
#, fuzzy
|
|
1808
|
+
#, fuzzy
|
|
1905
1809
|
msgid "Vat Report"
|
|
1906
1810
|
msgstr "Rapport TVA"
|
|
1907
1811
|
|
|
@@ -1945,7 +1849,6 @@ msgstr "Avec le nom du compte"
|
|
|
1945
1849
|
#. module: account_financial_report
|
|
1946
1850
|
#. odoo-python
|
|
1947
1851
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1948
|
-
#, python-format
|
|
1949
1852
|
msgid "Without analytic account"
|
|
1950
1853
|
msgstr ""
|
|
1951
1854
|
|
|
@@ -1955,14 +1858,12 @@ msgstr ""
|
|
|
1955
1858
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1956
1859
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1957
1860
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1958
|
-
#, python-format
|
|
1959
1861
|
msgid "Yes"
|
|
1960
1862
|
msgstr "Oui"
|
|
1961
1863
|
|
|
1962
1864
|
#. module: account_financial_report
|
|
1963
1865
|
#. odoo-python
|
|
1964
1866
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1965
|
-
#, python-format
|
|
1966
1867
|
msgid "future"
|
|
1967
1868
|
msgstr ""
|
|
1968
1869
|
|