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
|
@@ -107,7 +107,6 @@ msgstr ""
|
|
|
107
107
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
108
108
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
109
109
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
110
|
-
#, python-format
|
|
111
110
|
msgid "Account"
|
|
112
111
|
msgstr ""
|
|
113
112
|
|
|
@@ -140,7 +139,6 @@ msgstr ""
|
|
|
140
139
|
#. module: account_financial_report
|
|
141
140
|
#. odoo-python
|
|
142
141
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
143
|
-
#, python-format
|
|
144
142
|
msgid "Account Name"
|
|
145
143
|
msgstr ""
|
|
146
144
|
|
|
@@ -148,7 +146,6 @@ msgstr ""
|
|
|
148
146
|
#. odoo-python
|
|
149
147
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
150
148
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
151
|
-
#, python-format
|
|
152
149
|
msgid "Account at 0 filter"
|
|
153
150
|
msgstr ""
|
|
154
151
|
|
|
@@ -158,7 +155,6 @@ msgstr ""
|
|
|
158
155
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
159
156
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
160
157
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
161
|
-
#, python-format
|
|
162
158
|
msgid "Account balance at 0 filter"
|
|
163
159
|
msgstr ""
|
|
164
160
|
|
|
@@ -192,7 +188,6 @@ msgstr ""
|
|
|
192
188
|
#. module: account_financial_report
|
|
193
189
|
#. odoo-python
|
|
194
190
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
195
|
-
#, python-format
|
|
196
191
|
msgid "Age ≤ 120 d."
|
|
197
192
|
msgstr ""
|
|
198
193
|
|
|
@@ -206,7 +201,6 @@ msgstr ""
|
|
|
206
201
|
#. module: account_financial_report
|
|
207
202
|
#. odoo-python
|
|
208
203
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
209
|
-
#, python-format
|
|
210
204
|
msgid "Age ≤ 30 d."
|
|
211
205
|
msgstr ""
|
|
212
206
|
|
|
@@ -220,7 +214,6 @@ msgstr ""
|
|
|
220
214
|
#. module: account_financial_report
|
|
221
215
|
#. odoo-python
|
|
222
216
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
223
|
-
#, python-format
|
|
224
217
|
msgid "Age ≤ 60 d."
|
|
225
218
|
msgstr ""
|
|
226
219
|
|
|
@@ -234,7 +227,6 @@ msgstr ""
|
|
|
234
227
|
#. module: account_financial_report
|
|
235
228
|
#. odoo-python
|
|
236
229
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
237
|
-
#, python-format
|
|
238
230
|
msgid "Age ≤ 90 d."
|
|
239
231
|
msgstr ""
|
|
240
232
|
|
|
@@ -245,7 +237,6 @@ msgstr ""
|
|
|
245
237
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
246
238
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
247
239
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
248
|
-
#, python-format
|
|
249
240
|
msgid "Aged Partner Balance"
|
|
250
241
|
msgstr ""
|
|
251
242
|
|
|
@@ -277,7 +268,6 @@ msgstr ""
|
|
|
277
268
|
#. module: account_financial_report
|
|
278
269
|
#. odoo-python
|
|
279
270
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
280
|
-
#, python-format
|
|
281
271
|
msgid "All"
|
|
282
272
|
msgstr ""
|
|
283
273
|
|
|
@@ -309,7 +299,6 @@ msgstr ""
|
|
|
309
299
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
310
300
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
311
301
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
312
|
-
#, python-format
|
|
313
302
|
msgid "All entries"
|
|
314
303
|
msgstr ""
|
|
315
304
|
|
|
@@ -323,7 +312,6 @@ msgstr ""
|
|
|
323
312
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
324
313
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
325
314
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
326
|
-
#, python-format
|
|
327
315
|
msgid "All posted entries"
|
|
328
316
|
msgstr ""
|
|
329
317
|
|
|
@@ -335,7 +323,6 @@ msgstr ""
|
|
|
335
323
|
#. module: account_financial_report
|
|
336
324
|
#. odoo-python
|
|
337
325
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
338
|
-
#, python-format
|
|
339
326
|
msgid "Amount Currency"
|
|
340
327
|
msgstr ""
|
|
341
328
|
|
|
@@ -343,7 +330,6 @@ msgstr ""
|
|
|
343
330
|
#. odoo-python
|
|
344
331
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
345
332
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
346
|
-
#, python-format
|
|
347
333
|
msgid "Amount cur."
|
|
348
334
|
msgstr ""
|
|
349
335
|
|
|
@@ -357,7 +343,6 @@ msgstr ""
|
|
|
357
343
|
#. odoo-python
|
|
358
344
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
359
345
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
360
|
-
#, python-format
|
|
361
346
|
msgid "Analytic Distribution"
|
|
362
347
|
msgstr ""
|
|
363
348
|
|
|
@@ -376,21 +361,18 @@ msgstr ""
|
|
|
376
361
|
#. module: account_financial_report
|
|
377
362
|
#. odoo-python
|
|
378
363
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
379
|
-
#, python-format
|
|
380
364
|
msgid "Base Balance"
|
|
381
365
|
msgstr ""
|
|
382
366
|
|
|
383
367
|
#. module: account_financial_report
|
|
384
368
|
#. odoo-python
|
|
385
369
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
386
|
-
#, python-format
|
|
387
370
|
msgid "Base Credit"
|
|
388
371
|
msgstr ""
|
|
389
372
|
|
|
390
373
|
#. module: account_financial_report
|
|
391
374
|
#. odoo-python
|
|
392
375
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
393
|
-
#, python-format
|
|
394
376
|
msgid "Base Debit"
|
|
395
377
|
msgstr ""
|
|
396
378
|
|
|
@@ -403,7 +385,6 @@ msgstr ""
|
|
|
403
385
|
#. module: account_financial_report
|
|
404
386
|
#. odoo-python
|
|
405
387
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
406
|
-
#, python-format
|
|
407
388
|
msgid "Based on"
|
|
408
389
|
msgstr ""
|
|
409
390
|
|
|
@@ -421,7 +402,6 @@ msgstr ""
|
|
|
421
402
|
#. odoo-python
|
|
422
403
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
423
404
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
424
|
-
#, python-format
|
|
425
405
|
msgid "Centralize filter"
|
|
426
406
|
msgstr ""
|
|
427
407
|
|
|
@@ -441,7 +421,6 @@ msgstr ""
|
|
|
441
421
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
442
422
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
443
423
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
444
|
-
#, python-format
|
|
445
424
|
msgid "Code"
|
|
446
425
|
msgstr ""
|
|
447
426
|
|
|
@@ -456,7 +435,6 @@ msgstr ""
|
|
|
456
435
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
457
436
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
458
437
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
459
|
-
#, python-format
|
|
460
438
|
msgid "Company"
|
|
461
439
|
msgstr ""
|
|
462
440
|
|
|
@@ -509,7 +487,6 @@ msgstr ""
|
|
|
509
487
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
510
488
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
511
489
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
512
|
-
#, python-format
|
|
513
490
|
msgid "Credit"
|
|
514
491
|
msgstr ""
|
|
515
492
|
|
|
@@ -517,7 +494,6 @@ msgstr ""
|
|
|
517
494
|
#. odoo-python
|
|
518
495
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
519
496
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
520
|
-
#, python-format
|
|
521
497
|
msgid "Cumul cur."
|
|
522
498
|
msgstr ""
|
|
523
499
|
|
|
@@ -525,7 +501,6 @@ msgstr ""
|
|
|
525
501
|
#. odoo-python
|
|
526
502
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
527
503
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
528
|
-
#, python-format
|
|
529
504
|
msgid "Cumul. Bal."
|
|
530
505
|
msgstr ""
|
|
531
506
|
|
|
@@ -534,7 +509,6 @@ msgstr ""
|
|
|
534
509
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
535
510
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
536
511
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
537
|
-
#, python-format
|
|
538
512
|
msgid "Cur."
|
|
539
513
|
msgstr ""
|
|
540
514
|
|
|
@@ -542,7 +516,6 @@ msgstr ""
|
|
|
542
516
|
#. odoo-python
|
|
543
517
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
544
518
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
545
|
-
#, python-format
|
|
546
519
|
msgid "Cur. Original"
|
|
547
520
|
msgstr ""
|
|
548
521
|
|
|
@@ -550,14 +523,12 @@ msgstr ""
|
|
|
550
523
|
#. odoo-python
|
|
551
524
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
552
525
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
553
|
-
#, python-format
|
|
554
526
|
msgid "Cur. Residual"
|
|
555
527
|
msgstr ""
|
|
556
528
|
|
|
557
529
|
#. module: account_financial_report
|
|
558
530
|
#. odoo-python
|
|
559
531
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
560
|
-
#, python-format
|
|
561
532
|
msgid "Currency"
|
|
562
533
|
msgstr ""
|
|
563
534
|
|
|
@@ -565,7 +536,6 @@ msgstr ""
|
|
|
565
536
|
#. odoo-python
|
|
566
537
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
567
538
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
568
|
-
#, python-format
|
|
569
539
|
msgid "Current"
|
|
570
540
|
msgstr ""
|
|
571
541
|
|
|
@@ -580,7 +550,6 @@ msgstr ""
|
|
|
580
550
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
581
551
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
582
552
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
583
|
-
#, python-format
|
|
584
553
|
msgid "Date"
|
|
585
554
|
msgstr ""
|
|
586
555
|
|
|
@@ -612,14 +581,12 @@ msgstr ""
|
|
|
612
581
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
613
582
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
614
583
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
615
|
-
#, python-format
|
|
616
584
|
msgid "Date at filter"
|
|
617
585
|
msgstr ""
|
|
618
586
|
|
|
619
587
|
#. module: account_financial_report
|
|
620
588
|
#. odoo-python
|
|
621
589
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
622
|
-
#, python-format
|
|
623
590
|
msgid "Date from"
|
|
624
591
|
msgstr ""
|
|
625
592
|
|
|
@@ -638,14 +605,12 @@ msgstr ""
|
|
|
638
605
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
639
606
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
640
607
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
641
|
-
#, python-format
|
|
642
608
|
msgid "Date range filter"
|
|
643
609
|
msgstr ""
|
|
644
610
|
|
|
645
611
|
#. module: account_financial_report
|
|
646
612
|
#. odoo-python
|
|
647
613
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
648
|
-
#, python-format
|
|
649
614
|
msgid "Date to"
|
|
650
615
|
msgstr ""
|
|
651
616
|
|
|
@@ -659,7 +624,6 @@ msgstr ""
|
|
|
659
624
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
660
625
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
661
626
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
662
|
-
#, python-format
|
|
663
627
|
msgid "Debit"
|
|
664
628
|
msgstr ""
|
|
665
629
|
|
|
@@ -668,7 +632,6 @@ msgstr ""
|
|
|
668
632
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
669
633
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
670
634
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
671
|
-
#, python-format
|
|
672
635
|
msgid "Description"
|
|
673
636
|
msgstr ""
|
|
674
637
|
|
|
@@ -722,7 +685,6 @@ msgstr ""
|
|
|
722
685
|
#. odoo-python
|
|
723
686
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
724
687
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
725
|
-
#, python-format
|
|
726
688
|
msgid "Due date"
|
|
727
689
|
msgstr ""
|
|
728
690
|
|
|
@@ -758,7 +720,6 @@ msgstr ""
|
|
|
758
720
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
759
721
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
760
722
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
761
|
-
#, python-format
|
|
762
723
|
msgid "Ending balance"
|
|
763
724
|
msgstr ""
|
|
764
725
|
|
|
@@ -772,7 +733,6 @@ msgstr ""
|
|
|
772
733
|
#. module: account_financial_report
|
|
773
734
|
#. odoo-python
|
|
774
735
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
775
|
-
#, python-format
|
|
776
736
|
msgid "Entries sorted by"
|
|
777
737
|
msgstr ""
|
|
778
738
|
|
|
@@ -786,21 +746,18 @@ msgstr ""
|
|
|
786
746
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
787
747
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
788
748
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
789
|
-
#, python-format
|
|
790
749
|
msgid "Entry"
|
|
791
750
|
msgstr ""
|
|
792
751
|
|
|
793
752
|
#. module: account_financial_report
|
|
794
753
|
#. odoo-python
|
|
795
754
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
796
|
-
#, python-format
|
|
797
755
|
msgid "Entry number"
|
|
798
756
|
msgstr ""
|
|
799
757
|
|
|
800
758
|
#. module: account_financial_report
|
|
801
759
|
#. odoo-javascript
|
|
802
760
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
803
|
-
#, python-format
|
|
804
761
|
msgid "Export"
|
|
805
762
|
msgstr ""
|
|
806
763
|
|
|
@@ -881,7 +838,6 @@ msgstr ""
|
|
|
881
838
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
882
839
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
883
840
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
884
|
-
#, python-format
|
|
885
841
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
886
842
|
msgstr ""
|
|
887
843
|
|
|
@@ -909,7 +865,6 @@ msgstr ""
|
|
|
909
865
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
910
866
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
911
867
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
912
|
-
#, python-format
|
|
913
868
|
msgid "General Ledger"
|
|
914
869
|
msgstr ""
|
|
915
870
|
|
|
@@ -970,7 +925,6 @@ msgstr ""
|
|
|
970
925
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
971
926
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
972
927
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
973
|
-
#, python-format
|
|
974
928
|
msgid "Hide"
|
|
975
929
|
msgstr ""
|
|
976
930
|
|
|
@@ -1017,7 +971,6 @@ msgstr ""
|
|
|
1017
971
|
#. module: account_financial_report
|
|
1018
972
|
#. odoo-python
|
|
1019
973
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1020
|
-
#, python-format
|
|
1021
974
|
msgid "Inferior Limit must be greather than zero"
|
|
1022
975
|
msgstr ""
|
|
1023
976
|
|
|
@@ -1040,7 +993,6 @@ msgstr ""
|
|
|
1040
993
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1041
994
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1042
995
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1043
|
-
#, python-format
|
|
1044
996
|
msgid "Initial balance"
|
|
1045
997
|
msgstr ""
|
|
1046
998
|
|
|
@@ -1060,7 +1012,6 @@ msgstr ""
|
|
|
1060
1012
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1061
1013
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1062
1014
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1063
|
-
#, python-format
|
|
1064
1015
|
msgid "Journal"
|
|
1065
1016
|
msgstr ""
|
|
1066
1017
|
|
|
@@ -1080,7 +1031,6 @@ msgstr ""
|
|
|
1080
1031
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1081
1032
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1082
1033
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1083
|
-
#, python-format
|
|
1084
1034
|
msgid "Journal Ledger"
|
|
1085
1035
|
msgstr ""
|
|
1086
1036
|
|
|
@@ -1114,7 +1064,6 @@ msgstr ""
|
|
|
1114
1064
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1115
1065
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1116
1066
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1117
|
-
#, python-format
|
|
1118
1067
|
msgid "Journals"
|
|
1119
1068
|
msgstr ""
|
|
1120
1069
|
|
|
@@ -1151,7 +1100,6 @@ msgstr ""
|
|
|
1151
1100
|
#. module: account_financial_report
|
|
1152
1101
|
#. odoo-python
|
|
1153
1102
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1154
|
-
#, python-format
|
|
1155
1103
|
msgid "Level %s"
|
|
1156
1104
|
msgstr ""
|
|
1157
1105
|
|
|
@@ -1160,7 +1108,6 @@ msgstr ""
|
|
|
1160
1108
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1161
1109
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1162
1110
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1163
|
-
#, python-format
|
|
1164
1111
|
msgid "Limit hierarchy levels"
|
|
1165
1112
|
msgstr ""
|
|
1166
1113
|
|
|
@@ -1174,7 +1121,6 @@ msgstr ""
|
|
|
1174
1121
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1175
1122
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1176
1123
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1177
|
-
#, python-format
|
|
1178
1124
|
msgid "Missing Partner"
|
|
1179
1125
|
msgstr ""
|
|
1180
1126
|
|
|
@@ -1201,7 +1147,6 @@ msgstr ""
|
|
|
1201
1147
|
#. module: account_financial_report
|
|
1202
1148
|
#. odoo-python
|
|
1203
1149
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1204
|
-
#, python-format
|
|
1205
1150
|
msgid "Must complete Configuration Lines"
|
|
1206
1151
|
msgstr ""
|
|
1207
1152
|
|
|
@@ -1214,15 +1159,11 @@ msgstr ""
|
|
|
1214
1159
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1215
1160
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1216
1161
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1217
|
-
#, python-format
|
|
1218
1162
|
msgid "Name"
|
|
1219
1163
|
msgstr ""
|
|
1220
1164
|
|
|
1221
1165
|
#. module: account_financial_report
|
|
1222
|
-
#. odoo-python
|
|
1223
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1224
1166
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1225
|
-
#, python-format
|
|
1226
1167
|
msgid "Name must be unique per report configuration"
|
|
1227
1168
|
msgstr ""
|
|
1228
1169
|
|
|
@@ -1230,7 +1171,6 @@ msgstr ""
|
|
|
1230
1171
|
#. odoo-python
|
|
1231
1172
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1232
1173
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1233
|
-
#, python-format
|
|
1234
1174
|
msgid "Net"
|
|
1235
1175
|
msgstr ""
|
|
1236
1176
|
|
|
@@ -1240,14 +1180,12 @@ msgstr ""
|
|
|
1240
1180
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1241
1181
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1242
1182
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1243
|
-
#, python-format
|
|
1244
1183
|
msgid "No"
|
|
1245
1184
|
msgstr ""
|
|
1246
1185
|
|
|
1247
1186
|
#. module: account_financial_report
|
|
1248
1187
|
#. odoo-python
|
|
1249
1188
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1250
|
-
#, python-format
|
|
1251
1189
|
msgid "No group"
|
|
1252
1190
|
msgstr ""
|
|
1253
1191
|
|
|
@@ -1255,7 +1193,6 @@ msgstr ""
|
|
|
1255
1193
|
#. odoo-python
|
|
1256
1194
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1257
1195
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1258
|
-
#, python-format
|
|
1259
1196
|
msgid "No limit"
|
|
1260
1197
|
msgstr ""
|
|
1261
1198
|
|
|
@@ -1267,7 +1204,6 @@ msgstr ""
|
|
|
1267
1204
|
#. module: account_financial_report
|
|
1268
1205
|
#. odoo-python
|
|
1269
1206
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1270
|
-
#, python-format
|
|
1271
1207
|
msgid "Not Posted"
|
|
1272
1208
|
msgstr ""
|
|
1273
1209
|
|
|
@@ -1290,7 +1226,6 @@ msgstr ""
|
|
|
1290
1226
|
#. odoo-python
|
|
1291
1227
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1292
1228
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1293
|
-
#, python-format
|
|
1294
1229
|
msgid "Older"
|
|
1295
1230
|
msgstr ""
|
|
1296
1231
|
|
|
@@ -1307,7 +1242,6 @@ msgstr ""
|
|
|
1307
1242
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1308
1243
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1309
1244
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1310
|
-
#, python-format
|
|
1311
1245
|
msgid "Open Items"
|
|
1312
1246
|
msgstr ""
|
|
1313
1247
|
|
|
@@ -1350,7 +1284,6 @@ msgstr ""
|
|
|
1350
1284
|
#. odoo-python
|
|
1351
1285
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1352
1286
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1353
|
-
#, python-format
|
|
1354
1287
|
msgid "Original"
|
|
1355
1288
|
msgstr ""
|
|
1356
1289
|
|
|
@@ -1367,7 +1300,6 @@ msgstr ""
|
|
|
1367
1300
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1368
1301
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1369
1302
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1370
|
-
#, python-format
|
|
1371
1303
|
msgid "Partner"
|
|
1372
1304
|
msgstr ""
|
|
1373
1305
|
|
|
@@ -1381,14 +1313,12 @@ msgstr ""
|
|
|
1381
1313
|
#. module: account_financial_report
|
|
1382
1314
|
#. odoo-python
|
|
1383
1315
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1384
|
-
#, python-format
|
|
1385
1316
|
msgid "Partner Initial balance"
|
|
1386
1317
|
msgstr ""
|
|
1387
1318
|
|
|
1388
1319
|
#. module: account_financial_report
|
|
1389
1320
|
#. odoo-python
|
|
1390
1321
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1391
|
-
#, python-format
|
|
1392
1322
|
msgid "Partner cumul aged balance"
|
|
1393
1323
|
msgstr ""
|
|
1394
1324
|
|
|
@@ -1398,7 +1328,6 @@ msgstr ""
|
|
|
1398
1328
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1399
1329
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1400
1330
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1401
|
-
#, python-format
|
|
1402
1331
|
msgid "Partner ending balance"
|
|
1403
1332
|
msgstr ""
|
|
1404
1333
|
|
|
@@ -1429,7 +1358,6 @@ msgstr ""
|
|
|
1429
1358
|
#. odoo-python
|
|
1430
1359
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1431
1360
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1432
|
-
#, python-format
|
|
1433
1361
|
msgid "Period balance"
|
|
1434
1362
|
msgstr ""
|
|
1435
1363
|
|
|
@@ -1441,7 +1369,6 @@ msgstr ""
|
|
|
1441
1369
|
#. module: account_financial_report
|
|
1442
1370
|
#. odoo-python
|
|
1443
1371
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1444
|
-
#, python-format
|
|
1445
1372
|
msgid "Posted"
|
|
1446
1373
|
msgstr ""
|
|
1447
1374
|
|
|
@@ -1449,7 +1376,6 @@ msgstr ""
|
|
|
1449
1376
|
#. odoo-python
|
|
1450
1377
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1451
1378
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1452
|
-
#, python-format
|
|
1453
1379
|
msgid "Rec."
|
|
1454
1380
|
msgstr ""
|
|
1455
1381
|
|
|
@@ -1483,7 +1409,6 @@ msgstr ""
|
|
|
1483
1409
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1484
1410
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1485
1411
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1486
|
-
#, python-format
|
|
1487
1412
|
msgid "Ref - Label"
|
|
1488
1413
|
msgstr ""
|
|
1489
1414
|
|
|
@@ -1499,7 +1424,6 @@ msgstr ""
|
|
|
1499
1424
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1500
1425
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1501
1426
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1502
|
-
#, python-format
|
|
1503
1427
|
msgid "Residual"
|
|
1504
1428
|
msgstr ""
|
|
1505
1429
|
|
|
@@ -1507,7 +1431,6 @@ msgstr ""
|
|
|
1507
1431
|
#. odoo-python
|
|
1508
1432
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1509
1433
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1510
|
-
#, python-format
|
|
1511
1434
|
msgid "Sequence"
|
|
1512
1435
|
msgstr ""
|
|
1513
1436
|
|
|
@@ -1519,7 +1442,6 @@ msgstr ""
|
|
|
1519
1442
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1520
1443
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1521
1444
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1522
|
-
#, python-format
|
|
1523
1445
|
msgid "Show"
|
|
1524
1446
|
msgstr ""
|
|
1525
1447
|
|
|
@@ -1552,7 +1474,6 @@ msgstr ""
|
|
|
1552
1474
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1553
1475
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1554
1476
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1555
|
-
#, python-format
|
|
1556
1477
|
msgid "Show foreign currency"
|
|
1557
1478
|
msgstr ""
|
|
1558
1479
|
|
|
@@ -1587,7 +1508,6 @@ msgstr ""
|
|
|
1587
1508
|
#. odoo-python
|
|
1588
1509
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1589
1510
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1590
|
-
#, python-format
|
|
1591
1511
|
msgid "TOTAL"
|
|
1592
1512
|
msgstr ""
|
|
1593
1513
|
|
|
@@ -1616,7 +1536,6 @@ msgstr ""
|
|
|
1616
1536
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1617
1537
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1618
1538
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1619
|
-
#, python-format
|
|
1620
1539
|
msgid "Target moves filter"
|
|
1621
1540
|
msgstr ""
|
|
1622
1541
|
|
|
@@ -1624,7 +1543,6 @@ msgstr ""
|
|
|
1624
1543
|
#. odoo-python
|
|
1625
1544
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1626
1545
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1627
|
-
#, python-format
|
|
1628
1546
|
msgid "Tax"
|
|
1629
1547
|
msgstr ""
|
|
1630
1548
|
|
|
@@ -1637,21 +1555,18 @@ msgstr ""
|
|
|
1637
1555
|
#. module: account_financial_report
|
|
1638
1556
|
#. odoo-python
|
|
1639
1557
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1640
|
-
#, python-format
|
|
1641
1558
|
msgid "Tax Balance"
|
|
1642
1559
|
msgstr ""
|
|
1643
1560
|
|
|
1644
1561
|
#. module: account_financial_report
|
|
1645
1562
|
#. odoo-python
|
|
1646
1563
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1647
|
-
#, python-format
|
|
1648
1564
|
msgid "Tax Credit"
|
|
1649
1565
|
msgstr ""
|
|
1650
1566
|
|
|
1651
1567
|
#. module: account_financial_report
|
|
1652
1568
|
#. odoo-python
|
|
1653
1569
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1654
|
-
#, python-format
|
|
1655
1570
|
msgid "Tax Debit"
|
|
1656
1571
|
msgstr ""
|
|
1657
1572
|
|
|
@@ -1659,14 +1574,12 @@ msgstr ""
|
|
|
1659
1574
|
#. odoo-python
|
|
1660
1575
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1661
1576
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1662
|
-
#, python-format
|
|
1663
1577
|
msgid "Tax Groups"
|
|
1664
1578
|
msgstr ""
|
|
1665
1579
|
|
|
1666
1580
|
#. module: account_financial_report
|
|
1667
1581
|
#. odoo-python
|
|
1668
1582
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1669
|
-
#, python-format
|
|
1670
1583
|
msgid "Tax Initial balance"
|
|
1671
1584
|
msgstr ""
|
|
1672
1585
|
|
|
@@ -1674,7 +1587,6 @@ msgstr ""
|
|
|
1674
1587
|
#. odoo-python
|
|
1675
1588
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1676
1589
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1677
|
-
#, python-format
|
|
1678
1590
|
msgid "Tax Tags"
|
|
1679
1591
|
msgstr ""
|
|
1680
1592
|
|
|
@@ -1682,7 +1594,6 @@ msgstr ""
|
|
|
1682
1594
|
#. odoo-python
|
|
1683
1595
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1684
1596
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1685
|
-
#, python-format
|
|
1686
1597
|
msgid "Tax ending balance"
|
|
1687
1598
|
msgstr ""
|
|
1688
1599
|
|
|
@@ -1698,14 +1609,12 @@ msgstr ""
|
|
|
1698
1609
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1699
1610
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1700
1611
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1701
|
-
#, python-format
|
|
1702
1612
|
msgid "Taxes"
|
|
1703
1613
|
msgstr ""
|
|
1704
1614
|
|
|
1705
1615
|
#. module: account_financial_report
|
|
1706
1616
|
#. odoo-python
|
|
1707
1617
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1708
|
-
#, python-format
|
|
1709
1618
|
msgid ""
|
|
1710
1619
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1711
1620
|
"the same."
|
|
@@ -1714,7 +1623,6 @@ msgstr ""
|
|
|
1714
1623
|
#. module: account_financial_report
|
|
1715
1624
|
#. odoo-python
|
|
1716
1625
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1717
|
-
#, python-format
|
|
1718
1626
|
msgid ""
|
|
1719
1627
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1720
1628
|
"same."
|
|
@@ -1723,7 +1631,6 @@ msgstr ""
|
|
|
1723
1631
|
#. module: account_financial_report
|
|
1724
1632
|
#. odoo-python
|
|
1725
1633
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1726
|
-
#, python-format
|
|
1727
1634
|
msgid ""
|
|
1728
1635
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1729
1636
|
msgstr ""
|
|
@@ -1731,7 +1638,6 @@ msgstr ""
|
|
|
1731
1638
|
#. module: account_financial_report
|
|
1732
1639
|
#. odoo-python
|
|
1733
1640
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1734
|
-
#, python-format
|
|
1735
1641
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1736
1642
|
msgstr ""
|
|
1737
1643
|
|
|
@@ -1754,7 +1660,6 @@ msgstr ""
|
|
|
1754
1660
|
#. odoo-python
|
|
1755
1661
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1756
1662
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1757
|
-
#, python-format
|
|
1758
1663
|
msgid "Total"
|
|
1759
1664
|
msgstr ""
|
|
1760
1665
|
|
|
@@ -1765,7 +1670,6 @@ msgstr ""
|
|
|
1765
1670
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1766
1671
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1767
1672
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1768
|
-
#, python-format
|
|
1769
1673
|
msgid "Trial Balance"
|
|
1770
1674
|
msgstr ""
|
|
1771
1675
|
|
|
@@ -1852,7 +1756,6 @@ msgstr ""
|
|
|
1852
1756
|
#. module: account_financial_report
|
|
1853
1757
|
#. odoo-python
|
|
1854
1758
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1855
|
-
#, python-format
|
|
1856
1759
|
msgid "Vat Report"
|
|
1857
1760
|
msgstr ""
|
|
1858
1761
|
|
|
@@ -1891,7 +1794,6 @@ msgstr ""
|
|
|
1891
1794
|
#. module: account_financial_report
|
|
1892
1795
|
#. odoo-python
|
|
1893
1796
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1894
|
-
#, python-format
|
|
1895
1797
|
msgid "Without analytic account"
|
|
1896
1798
|
msgstr ""
|
|
1897
1799
|
|
|
@@ -1901,14 +1803,12 @@ msgstr ""
|
|
|
1901
1803
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1902
1804
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1903
1805
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1904
|
-
#, python-format
|
|
1905
1806
|
msgid "Yes"
|
|
1906
1807
|
msgstr ""
|
|
1907
1808
|
|
|
1908
1809
|
#. module: account_financial_report
|
|
1909
1810
|
#. odoo-python
|
|
1910
1811
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1911
|
-
#, python-format
|
|
1912
1812
|
msgid "future"
|
|
1913
1813
|
msgstr ""
|
|
1914
1814
|
|