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