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