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 ""
|
|
|
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 "Rekening"
|
|
110
109
|
|
|
@@ -139,7 +138,7 @@ msgstr ""
|
|
|
139
138
|
#. module: account_financial_report
|
|
140
139
|
#. odoo-python
|
|
141
140
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
142
|
-
#, fuzzy
|
|
141
|
+
#, fuzzy
|
|
143
142
|
msgid "Account Name"
|
|
144
143
|
msgstr "Rekening"
|
|
145
144
|
|
|
@@ -147,7 +146,7 @@ msgstr "Rekening"
|
|
|
147
146
|
#. odoo-python
|
|
148
147
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
149
148
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
150
|
-
#, fuzzy
|
|
149
|
+
#, fuzzy
|
|
151
150
|
msgid "Account at 0 filter"
|
|
152
151
|
msgstr "Rekening"
|
|
153
152
|
|
|
@@ -157,7 +156,6 @@ msgstr "Rekening"
|
|
|
157
156
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
158
157
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
159
158
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
160
|
-
#, python-format
|
|
161
159
|
msgid "Account balance at 0 filter"
|
|
162
160
|
msgstr ""
|
|
163
161
|
|
|
@@ -191,7 +189,6 @@ msgstr ""
|
|
|
191
189
|
#. module: account_financial_report
|
|
192
190
|
#. odoo-python
|
|
193
191
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
194
|
-
#, python-format
|
|
195
192
|
msgid "Age ≤ 120 d."
|
|
196
193
|
msgstr ""
|
|
197
194
|
|
|
@@ -205,7 +202,6 @@ msgstr ""
|
|
|
205
202
|
#. module: account_financial_report
|
|
206
203
|
#. odoo-python
|
|
207
204
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
208
|
-
#, python-format
|
|
209
205
|
msgid "Age ≤ 30 d."
|
|
210
206
|
msgstr ""
|
|
211
207
|
|
|
@@ -219,7 +215,6 @@ msgstr ""
|
|
|
219
215
|
#. module: account_financial_report
|
|
220
216
|
#. odoo-python
|
|
221
217
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
222
|
-
#, python-format
|
|
223
218
|
msgid "Age ≤ 60 d."
|
|
224
219
|
msgstr ""
|
|
225
220
|
|
|
@@ -233,7 +228,6 @@ msgstr ""
|
|
|
233
228
|
#. module: account_financial_report
|
|
234
229
|
#. odoo-python
|
|
235
230
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
236
|
-
#, python-format
|
|
237
231
|
msgid "Age ≤ 90 d."
|
|
238
232
|
msgstr ""
|
|
239
233
|
|
|
@@ -244,7 +238,6 @@ msgstr ""
|
|
|
244
238
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
245
239
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
246
240
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
247
|
-
#, python-format
|
|
248
241
|
msgid "Aged Partner Balance"
|
|
249
242
|
msgstr ""
|
|
250
243
|
|
|
@@ -279,7 +272,6 @@ msgstr ""
|
|
|
279
272
|
#. module: account_financial_report
|
|
280
273
|
#. odoo-python
|
|
281
274
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
282
|
-
#, python-format
|
|
283
275
|
msgid "All"
|
|
284
276
|
msgstr ""
|
|
285
277
|
|
|
@@ -311,7 +303,6 @@ msgstr ""
|
|
|
311
303
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
312
304
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
313
305
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
314
|
-
#, python-format
|
|
315
306
|
msgid "All entries"
|
|
316
307
|
msgstr ""
|
|
317
308
|
|
|
@@ -325,7 +316,6 @@ msgstr ""
|
|
|
325
316
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
326
317
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
327
318
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
328
|
-
#, python-format
|
|
329
319
|
msgid "All posted entries"
|
|
330
320
|
msgstr ""
|
|
331
321
|
|
|
@@ -337,7 +327,6 @@ msgstr ""
|
|
|
337
327
|
#. module: account_financial_report
|
|
338
328
|
#. odoo-python
|
|
339
329
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
340
|
-
#, python-format
|
|
341
330
|
msgid "Amount Currency"
|
|
342
331
|
msgstr ""
|
|
343
332
|
|
|
@@ -345,7 +334,6 @@ msgstr ""
|
|
|
345
334
|
#. odoo-python
|
|
346
335
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
347
336
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
348
|
-
#, python-format
|
|
349
337
|
msgid "Amount cur."
|
|
350
338
|
msgstr ""
|
|
351
339
|
|
|
@@ -360,7 +348,6 @@ msgstr "Rekening"
|
|
|
360
348
|
#. odoo-python
|
|
361
349
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
362
350
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
363
|
-
#, python-format
|
|
364
351
|
msgid "Analytic Distribution"
|
|
365
352
|
msgstr ""
|
|
366
353
|
|
|
@@ -380,21 +367,18 @@ msgstr ""
|
|
|
380
367
|
#. module: account_financial_report
|
|
381
368
|
#. odoo-python
|
|
382
369
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
383
|
-
#, python-format
|
|
384
370
|
msgid "Base Balance"
|
|
385
371
|
msgstr ""
|
|
386
372
|
|
|
387
373
|
#. module: account_financial_report
|
|
388
374
|
#. odoo-python
|
|
389
375
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
390
|
-
#, python-format
|
|
391
376
|
msgid "Base Credit"
|
|
392
377
|
msgstr ""
|
|
393
378
|
|
|
394
379
|
#. module: account_financial_report
|
|
395
380
|
#. odoo-python
|
|
396
381
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
397
|
-
#, python-format
|
|
398
382
|
msgid "Base Debit"
|
|
399
383
|
msgstr ""
|
|
400
384
|
|
|
@@ -407,7 +391,6 @@ msgstr ""
|
|
|
407
391
|
#. module: account_financial_report
|
|
408
392
|
#. odoo-python
|
|
409
393
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
410
|
-
#, python-format
|
|
411
394
|
msgid "Based on"
|
|
412
395
|
msgstr ""
|
|
413
396
|
|
|
@@ -425,7 +408,6 @@ msgstr "Annuleer"
|
|
|
425
408
|
#. odoo-python
|
|
426
409
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
427
410
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
428
|
-
#, python-format
|
|
429
411
|
msgid "Centralize filter"
|
|
430
412
|
msgstr ""
|
|
431
413
|
|
|
@@ -445,7 +427,6 @@ msgstr ""
|
|
|
445
427
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
446
428
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
447
429
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
448
|
-
#, python-format
|
|
449
430
|
msgid "Code"
|
|
450
431
|
msgstr ""
|
|
451
432
|
|
|
@@ -460,7 +441,6 @@ msgstr ""
|
|
|
460
441
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
461
442
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
462
443
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
463
|
-
#, python-format
|
|
464
444
|
msgid "Company"
|
|
465
445
|
msgstr "Bedrijf"
|
|
466
446
|
|
|
@@ -513,7 +493,6 @@ msgstr ""
|
|
|
513
493
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
514
494
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
515
495
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
516
|
-
#, python-format
|
|
517
496
|
msgid "Credit"
|
|
518
497
|
msgstr ""
|
|
519
498
|
|
|
@@ -521,7 +500,6 @@ msgstr ""
|
|
|
521
500
|
#. odoo-python
|
|
522
501
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
523
502
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
524
|
-
#, python-format
|
|
525
503
|
msgid "Cumul cur."
|
|
526
504
|
msgstr ""
|
|
527
505
|
|
|
@@ -529,7 +507,6 @@ msgstr ""
|
|
|
529
507
|
#. odoo-python
|
|
530
508
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
531
509
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
532
|
-
#, python-format
|
|
533
510
|
msgid "Cumul. Bal."
|
|
534
511
|
msgstr ""
|
|
535
512
|
|
|
@@ -538,7 +515,6 @@ msgstr ""
|
|
|
538
515
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
539
516
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
540
517
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
541
|
-
#, python-format
|
|
542
518
|
msgid "Cur."
|
|
543
519
|
msgstr ""
|
|
544
520
|
|
|
@@ -546,7 +522,6 @@ msgstr ""
|
|
|
546
522
|
#. odoo-python
|
|
547
523
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
548
524
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
549
|
-
#, python-format
|
|
550
525
|
msgid "Cur. Original"
|
|
551
526
|
msgstr ""
|
|
552
527
|
|
|
@@ -554,14 +529,12 @@ msgstr ""
|
|
|
554
529
|
#. odoo-python
|
|
555
530
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
556
531
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
557
|
-
#, python-format
|
|
558
532
|
msgid "Cur. Residual"
|
|
559
533
|
msgstr ""
|
|
560
534
|
|
|
561
535
|
#. module: account_financial_report
|
|
562
536
|
#. odoo-python
|
|
563
537
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
564
|
-
#, python-format
|
|
565
538
|
msgid "Currency"
|
|
566
539
|
msgstr ""
|
|
567
540
|
|
|
@@ -569,7 +542,6 @@ msgstr ""
|
|
|
569
542
|
#. odoo-python
|
|
570
543
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
571
544
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
572
|
-
#, python-format
|
|
573
545
|
msgid "Current"
|
|
574
546
|
msgstr ""
|
|
575
547
|
|
|
@@ -584,7 +556,6 @@ msgstr ""
|
|
|
584
556
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
585
557
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
586
558
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
587
|
-
#, python-format
|
|
588
559
|
msgid "Date"
|
|
589
560
|
msgstr "Datum"
|
|
590
561
|
|
|
@@ -616,14 +587,12 @@ msgstr ""
|
|
|
616
587
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
617
588
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
618
589
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
619
|
-
#, python-format
|
|
620
590
|
msgid "Date at filter"
|
|
621
591
|
msgstr ""
|
|
622
592
|
|
|
623
593
|
#. module: account_financial_report
|
|
624
594
|
#. odoo-python
|
|
625
595
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
626
|
-
#, python-format
|
|
627
596
|
msgid "Date from"
|
|
628
597
|
msgstr ""
|
|
629
598
|
|
|
@@ -642,14 +611,12 @@ msgstr ""
|
|
|
642
611
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
643
612
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
644
613
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
645
|
-
#, python-format
|
|
646
614
|
msgid "Date range filter"
|
|
647
615
|
msgstr ""
|
|
648
616
|
|
|
649
617
|
#. module: account_financial_report
|
|
650
618
|
#. odoo-python
|
|
651
619
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
652
|
-
#, python-format
|
|
653
620
|
msgid "Date to"
|
|
654
621
|
msgstr ""
|
|
655
622
|
|
|
@@ -663,7 +630,6 @@ msgstr ""
|
|
|
663
630
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
664
631
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
665
632
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
666
|
-
#, python-format
|
|
667
633
|
msgid "Debit"
|
|
668
634
|
msgstr ""
|
|
669
635
|
|
|
@@ -672,7 +638,6 @@ msgstr ""
|
|
|
672
638
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
673
639
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
674
640
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
675
|
-
#, python-format
|
|
676
641
|
msgid "Description"
|
|
677
642
|
msgstr ""
|
|
678
643
|
|
|
@@ -726,7 +691,6 @@ msgstr ""
|
|
|
726
691
|
#. odoo-python
|
|
727
692
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
728
693
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
729
|
-
#, python-format
|
|
730
694
|
msgid "Due date"
|
|
731
695
|
msgstr ""
|
|
732
696
|
|
|
@@ -762,7 +726,6 @@ msgstr ""
|
|
|
762
726
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
763
727
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
764
728
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
765
|
-
#, python-format
|
|
766
729
|
msgid "Ending balance"
|
|
767
730
|
msgstr ""
|
|
768
731
|
|
|
@@ -776,7 +739,6 @@ msgstr ""
|
|
|
776
739
|
#. module: account_financial_report
|
|
777
740
|
#. odoo-python
|
|
778
741
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
779
|
-
#, python-format
|
|
780
742
|
msgid "Entries sorted by"
|
|
781
743
|
msgstr ""
|
|
782
744
|
|
|
@@ -790,21 +752,18 @@ msgstr ""
|
|
|
790
752
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
791
753
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
792
754
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
793
|
-
#, python-format
|
|
794
755
|
msgid "Entry"
|
|
795
756
|
msgstr ""
|
|
796
757
|
|
|
797
758
|
#. module: account_financial_report
|
|
798
759
|
#. odoo-python
|
|
799
760
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
800
|
-
#, python-format
|
|
801
761
|
msgid "Entry number"
|
|
802
762
|
msgstr ""
|
|
803
763
|
|
|
804
764
|
#. module: account_financial_report
|
|
805
765
|
#. odoo-javascript
|
|
806
766
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
807
|
-
#, python-format
|
|
808
767
|
msgid "Export"
|
|
809
768
|
msgstr ""
|
|
810
769
|
|
|
@@ -885,7 +844,6 @@ msgstr ""
|
|
|
885
844
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
886
845
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
887
846
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
888
|
-
#, python-format
|
|
889
847
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
890
848
|
msgstr ""
|
|
891
849
|
|
|
@@ -913,7 +871,6 @@ msgstr ""
|
|
|
913
871
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
914
872
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
915
873
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
916
|
-
#, python-format
|
|
917
874
|
msgid "General Ledger"
|
|
918
875
|
msgstr ""
|
|
919
876
|
|
|
@@ -974,7 +931,6 @@ msgstr ""
|
|
|
974
931
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
975
932
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
976
933
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
977
|
-
#, python-format
|
|
978
934
|
msgid "Hide"
|
|
979
935
|
msgstr ""
|
|
980
936
|
|
|
@@ -1021,7 +977,6 @@ msgstr ""
|
|
|
1021
977
|
#. module: account_financial_report
|
|
1022
978
|
#. odoo-python
|
|
1023
979
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1024
|
-
#, python-format
|
|
1025
980
|
msgid "Inferior Limit must be greather than zero"
|
|
1026
981
|
msgstr ""
|
|
1027
982
|
|
|
@@ -1044,7 +999,6 @@ msgstr ""
|
|
|
1044
999
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1045
1000
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1046
1001
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1047
|
-
#, python-format
|
|
1048
1002
|
msgid "Initial balance"
|
|
1049
1003
|
msgstr ""
|
|
1050
1004
|
|
|
@@ -1064,7 +1018,6 @@ msgstr ""
|
|
|
1064
1018
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1065
1019
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1066
1020
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1067
|
-
#, python-format
|
|
1068
1021
|
msgid "Journal"
|
|
1069
1022
|
msgstr ""
|
|
1070
1023
|
|
|
@@ -1084,7 +1037,6 @@ msgstr ""
|
|
|
1084
1037
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1085
1038
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1086
1039
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1087
|
-
#, python-format
|
|
1088
1040
|
msgid "Journal Ledger"
|
|
1089
1041
|
msgstr ""
|
|
1090
1042
|
|
|
@@ -1118,7 +1070,6 @@ msgstr ""
|
|
|
1118
1070
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1119
1071
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1120
1072
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1121
|
-
#, python-format
|
|
1122
1073
|
msgid "Journals"
|
|
1123
1074
|
msgstr ""
|
|
1124
1075
|
|
|
@@ -1155,7 +1106,6 @@ msgstr ""
|
|
|
1155
1106
|
#. module: account_financial_report
|
|
1156
1107
|
#. odoo-python
|
|
1157
1108
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1158
|
-
#, python-format
|
|
1159
1109
|
msgid "Level %s"
|
|
1160
1110
|
msgstr ""
|
|
1161
1111
|
|
|
@@ -1164,7 +1114,6 @@ msgstr ""
|
|
|
1164
1114
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1165
1115
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1166
1116
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1167
|
-
#, python-format
|
|
1168
1117
|
msgid "Limit hierarchy levels"
|
|
1169
1118
|
msgstr ""
|
|
1170
1119
|
|
|
@@ -1178,7 +1127,6 @@ msgstr ""
|
|
|
1178
1127
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1179
1128
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1180
1129
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1181
|
-
#, python-format
|
|
1182
1130
|
msgid "Missing Partner"
|
|
1183
1131
|
msgstr ""
|
|
1184
1132
|
|
|
@@ -1205,7 +1153,6 @@ msgstr ""
|
|
|
1205
1153
|
#. module: account_financial_report
|
|
1206
1154
|
#. odoo-python
|
|
1207
1155
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1208
|
-
#, python-format
|
|
1209
1156
|
msgid "Must complete Configuration Lines"
|
|
1210
1157
|
msgstr ""
|
|
1211
1158
|
|
|
@@ -1218,15 +1165,11 @@ msgstr ""
|
|
|
1218
1165
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1219
1166
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1220
1167
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1221
|
-
#, python-format
|
|
1222
1168
|
msgid "Name"
|
|
1223
1169
|
msgstr ""
|
|
1224
1170
|
|
|
1225
1171
|
#. module: account_financial_report
|
|
1226
|
-
#. odoo-python
|
|
1227
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1228
1172
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1229
|
-
#, python-format
|
|
1230
1173
|
msgid "Name must be unique per report configuration"
|
|
1231
1174
|
msgstr ""
|
|
1232
1175
|
|
|
@@ -1234,7 +1177,6 @@ msgstr ""
|
|
|
1234
1177
|
#. odoo-python
|
|
1235
1178
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1236
1179
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1237
|
-
#, python-format
|
|
1238
1180
|
msgid "Net"
|
|
1239
1181
|
msgstr ""
|
|
1240
1182
|
|
|
@@ -1244,14 +1186,12 @@ msgstr ""
|
|
|
1244
1186
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1245
1187
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1246
1188
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1247
|
-
#, python-format
|
|
1248
1189
|
msgid "No"
|
|
1249
1190
|
msgstr ""
|
|
1250
1191
|
|
|
1251
1192
|
#. module: account_financial_report
|
|
1252
1193
|
#. odoo-python
|
|
1253
1194
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1254
|
-
#, python-format
|
|
1255
1195
|
msgid "No group"
|
|
1256
1196
|
msgstr ""
|
|
1257
1197
|
|
|
@@ -1259,7 +1199,6 @@ msgstr ""
|
|
|
1259
1199
|
#. odoo-python
|
|
1260
1200
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1261
1201
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1262
|
-
#, python-format
|
|
1263
1202
|
msgid "No limit"
|
|
1264
1203
|
msgstr ""
|
|
1265
1204
|
|
|
@@ -1271,7 +1210,6 @@ msgstr ""
|
|
|
1271
1210
|
#. module: account_financial_report
|
|
1272
1211
|
#. odoo-python
|
|
1273
1212
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1274
|
-
#, python-format
|
|
1275
1213
|
msgid "Not Posted"
|
|
1276
1214
|
msgstr ""
|
|
1277
1215
|
|
|
@@ -1294,7 +1232,6 @@ msgstr ""
|
|
|
1294
1232
|
#. odoo-python
|
|
1295
1233
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1296
1234
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1297
|
-
#, python-format
|
|
1298
1235
|
msgid "Older"
|
|
1299
1236
|
msgstr ""
|
|
1300
1237
|
|
|
@@ -1311,7 +1248,6 @@ msgstr ""
|
|
|
1311
1248
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1312
1249
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1313
1250
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1314
|
-
#, python-format
|
|
1315
1251
|
msgid "Open Items"
|
|
1316
1252
|
msgstr ""
|
|
1317
1253
|
|
|
@@ -1354,7 +1290,6 @@ msgstr ""
|
|
|
1354
1290
|
#. odoo-python
|
|
1355
1291
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1356
1292
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1357
|
-
#, python-format
|
|
1358
1293
|
msgid "Original"
|
|
1359
1294
|
msgstr ""
|
|
1360
1295
|
|
|
@@ -1371,7 +1306,6 @@ msgstr ""
|
|
|
1371
1306
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1372
1307
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1373
1308
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1374
|
-
#, python-format
|
|
1375
1309
|
msgid "Partner"
|
|
1376
1310
|
msgstr ""
|
|
1377
1311
|
|
|
@@ -1385,14 +1319,12 @@ msgstr ""
|
|
|
1385
1319
|
#. module: account_financial_report
|
|
1386
1320
|
#. odoo-python
|
|
1387
1321
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1388
|
-
#, python-format
|
|
1389
1322
|
msgid "Partner Initial balance"
|
|
1390
1323
|
msgstr ""
|
|
1391
1324
|
|
|
1392
1325
|
#. module: account_financial_report
|
|
1393
1326
|
#. odoo-python
|
|
1394
1327
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1395
|
-
#, python-format
|
|
1396
1328
|
msgid "Partner cumul aged balance"
|
|
1397
1329
|
msgstr ""
|
|
1398
1330
|
|
|
@@ -1402,7 +1334,6 @@ msgstr ""
|
|
|
1402
1334
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1403
1335
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1404
1336
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1405
|
-
#, python-format
|
|
1406
1337
|
msgid "Partner ending balance"
|
|
1407
1338
|
msgstr ""
|
|
1408
1339
|
|
|
@@ -1433,7 +1364,6 @@ msgstr ""
|
|
|
1433
1364
|
#. odoo-python
|
|
1434
1365
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1435
1366
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1436
|
-
#, python-format
|
|
1437
1367
|
msgid "Period balance"
|
|
1438
1368
|
msgstr ""
|
|
1439
1369
|
|
|
@@ -1445,7 +1375,6 @@ msgstr ""
|
|
|
1445
1375
|
#. module: account_financial_report
|
|
1446
1376
|
#. odoo-python
|
|
1447
1377
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1448
|
-
#, python-format
|
|
1449
1378
|
msgid "Posted"
|
|
1450
1379
|
msgstr ""
|
|
1451
1380
|
|
|
@@ -1453,7 +1382,6 @@ msgstr ""
|
|
|
1453
1382
|
#. odoo-python
|
|
1454
1383
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1455
1384
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1456
|
-
#, python-format
|
|
1457
1385
|
msgid "Rec."
|
|
1458
1386
|
msgstr ""
|
|
1459
1387
|
|
|
@@ -1487,7 +1415,6 @@ msgstr ""
|
|
|
1487
1415
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1488
1416
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1489
1417
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1490
|
-
#, python-format
|
|
1491
1418
|
msgid "Ref - Label"
|
|
1492
1419
|
msgstr ""
|
|
1493
1420
|
|
|
@@ -1503,7 +1430,6 @@ msgstr ""
|
|
|
1503
1430
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1504
1431
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1505
1432
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1506
|
-
#, python-format
|
|
1507
1433
|
msgid "Residual"
|
|
1508
1434
|
msgstr ""
|
|
1509
1435
|
|
|
@@ -1511,7 +1437,6 @@ msgstr ""
|
|
|
1511
1437
|
#. odoo-python
|
|
1512
1438
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1513
1439
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1514
|
-
#, python-format
|
|
1515
1440
|
msgid "Sequence"
|
|
1516
1441
|
msgstr ""
|
|
1517
1442
|
|
|
@@ -1523,7 +1448,6 @@ msgstr ""
|
|
|
1523
1448
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1524
1449
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1525
1450
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1526
|
-
#, python-format
|
|
1527
1451
|
msgid "Show"
|
|
1528
1452
|
msgstr ""
|
|
1529
1453
|
|
|
@@ -1556,7 +1480,6 @@ msgstr ""
|
|
|
1556
1480
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1557
1481
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1558
1482
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1559
|
-
#, python-format
|
|
1560
1483
|
msgid "Show foreign currency"
|
|
1561
1484
|
msgstr ""
|
|
1562
1485
|
|
|
@@ -1591,7 +1514,6 @@ msgstr ""
|
|
|
1591
1514
|
#. odoo-python
|
|
1592
1515
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1593
1516
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1594
|
-
#, python-format
|
|
1595
1517
|
msgid "TOTAL"
|
|
1596
1518
|
msgstr ""
|
|
1597
1519
|
|
|
@@ -1620,7 +1542,6 @@ msgstr ""
|
|
|
1620
1542
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1621
1543
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1622
1544
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1623
|
-
#, python-format
|
|
1624
1545
|
msgid "Target moves filter"
|
|
1625
1546
|
msgstr ""
|
|
1626
1547
|
|
|
@@ -1628,7 +1549,6 @@ msgstr ""
|
|
|
1628
1549
|
#. odoo-python
|
|
1629
1550
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1630
1551
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1631
|
-
#, python-format
|
|
1632
1552
|
msgid "Tax"
|
|
1633
1553
|
msgstr ""
|
|
1634
1554
|
|
|
@@ -1641,21 +1561,18 @@ msgstr ""
|
|
|
1641
1561
|
#. module: account_financial_report
|
|
1642
1562
|
#. odoo-python
|
|
1643
1563
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1644
|
-
#, python-format
|
|
1645
1564
|
msgid "Tax Balance"
|
|
1646
1565
|
msgstr ""
|
|
1647
1566
|
|
|
1648
1567
|
#. module: account_financial_report
|
|
1649
1568
|
#. odoo-python
|
|
1650
1569
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1651
|
-
#, python-format
|
|
1652
1570
|
msgid "Tax Credit"
|
|
1653
1571
|
msgstr ""
|
|
1654
1572
|
|
|
1655
1573
|
#. module: account_financial_report
|
|
1656
1574
|
#. odoo-python
|
|
1657
1575
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1658
|
-
#, python-format
|
|
1659
1576
|
msgid "Tax Debit"
|
|
1660
1577
|
msgstr ""
|
|
1661
1578
|
|
|
@@ -1663,14 +1580,12 @@ msgstr ""
|
|
|
1663
1580
|
#. odoo-python
|
|
1664
1581
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1665
1582
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1666
|
-
#, python-format
|
|
1667
1583
|
msgid "Tax Groups"
|
|
1668
1584
|
msgstr ""
|
|
1669
1585
|
|
|
1670
1586
|
#. module: account_financial_report
|
|
1671
1587
|
#. odoo-python
|
|
1672
1588
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1673
|
-
#, python-format
|
|
1674
1589
|
msgid "Tax Initial balance"
|
|
1675
1590
|
msgstr ""
|
|
1676
1591
|
|
|
@@ -1678,7 +1593,6 @@ msgstr ""
|
|
|
1678
1593
|
#. odoo-python
|
|
1679
1594
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1680
1595
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1681
|
-
#, python-format
|
|
1682
1596
|
msgid "Tax Tags"
|
|
1683
1597
|
msgstr ""
|
|
1684
1598
|
|
|
@@ -1686,7 +1600,6 @@ msgstr ""
|
|
|
1686
1600
|
#. odoo-python
|
|
1687
1601
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1688
1602
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1689
|
-
#, python-format
|
|
1690
1603
|
msgid "Tax ending balance"
|
|
1691
1604
|
msgstr ""
|
|
1692
1605
|
|
|
@@ -1702,14 +1615,12 @@ msgstr ""
|
|
|
1702
1615
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1703
1616
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1704
1617
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1705
|
-
#, python-format
|
|
1706
1618
|
msgid "Taxes"
|
|
1707
1619
|
msgstr ""
|
|
1708
1620
|
|
|
1709
1621
|
#. module: account_financial_report
|
|
1710
1622
|
#. odoo-python
|
|
1711
1623
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1712
|
-
#, python-format
|
|
1713
1624
|
msgid ""
|
|
1714
1625
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1715
1626
|
"the same."
|
|
@@ -1718,7 +1629,6 @@ msgstr ""
|
|
|
1718
1629
|
#. module: account_financial_report
|
|
1719
1630
|
#. odoo-python
|
|
1720
1631
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1721
|
-
#, python-format
|
|
1722
1632
|
msgid ""
|
|
1723
1633
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1724
1634
|
"same."
|
|
@@ -1727,7 +1637,6 @@ msgstr ""
|
|
|
1727
1637
|
#. module: account_financial_report
|
|
1728
1638
|
#. odoo-python
|
|
1729
1639
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1730
|
-
#, python-format
|
|
1731
1640
|
msgid ""
|
|
1732
1641
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1733
1642
|
msgstr ""
|
|
@@ -1735,7 +1644,6 @@ msgstr ""
|
|
|
1735
1644
|
#. module: account_financial_report
|
|
1736
1645
|
#. odoo-python
|
|
1737
1646
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1738
|
-
#, python-format
|
|
1739
1647
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1740
1648
|
msgstr ""
|
|
1741
1649
|
|
|
@@ -1758,7 +1666,6 @@ msgstr ""
|
|
|
1758
1666
|
#. odoo-python
|
|
1759
1667
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1760
1668
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1761
|
-
#, python-format
|
|
1762
1669
|
msgid "Total"
|
|
1763
1670
|
msgstr ""
|
|
1764
1671
|
|
|
@@ -1769,7 +1676,6 @@ msgstr ""
|
|
|
1769
1676
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1770
1677
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1771
1678
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1772
|
-
#, python-format
|
|
1773
1679
|
msgid "Trial Balance"
|
|
1774
1680
|
msgstr ""
|
|
1775
1681
|
|
|
@@ -1859,7 +1765,6 @@ msgstr ""
|
|
|
1859
1765
|
#. module: account_financial_report
|
|
1860
1766
|
#. odoo-python
|
|
1861
1767
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1862
|
-
#, python-format
|
|
1863
1768
|
msgid "Vat Report"
|
|
1864
1769
|
msgstr ""
|
|
1865
1770
|
|
|
@@ -1898,7 +1803,6 @@ msgstr ""
|
|
|
1898
1803
|
#. module: account_financial_report
|
|
1899
1804
|
#. odoo-python
|
|
1900
1805
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1901
|
-
#, python-format
|
|
1902
1806
|
msgid "Without analytic account"
|
|
1903
1807
|
msgstr ""
|
|
1904
1808
|
|
|
@@ -1908,14 +1812,12 @@ msgstr ""
|
|
|
1908
1812
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1909
1813
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1910
1814
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1911
|
-
#, python-format
|
|
1912
1815
|
msgid "Yes"
|
|
1913
1816
|
msgstr ""
|
|
1914
1817
|
|
|
1915
1818
|
#. module: account_financial_report
|
|
1916
1819
|
#. odoo-python
|
|
1917
1820
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1918
|
-
#, python-format
|
|
1919
1821
|
msgid "future"
|
|
1920
1822
|
msgstr ""
|
|
1921
1823
|
|