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 "Apstraktni XLSX Financijski izvje??taj"
|
|
|
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 "Konto"
|
|
108
107
|
|
|
@@ -136,7 +135,6 @@ msgstr "Grupa konta"
|
|
|
136
135
|
#. module: account_financial_report
|
|
137
136
|
#. odoo-python
|
|
138
137
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
139
|
-
#, python-format
|
|
140
138
|
msgid "Account Name"
|
|
141
139
|
msgstr "Naziv konta"
|
|
142
140
|
|
|
@@ -144,7 +142,6 @@ msgstr "Naziv konta"
|
|
|
144
142
|
#. odoo-python
|
|
145
143
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
146
144
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
147
|
-
#, python-format
|
|
148
145
|
msgid "Account at 0 filter"
|
|
149
146
|
msgstr "Konto na 0 filteru"
|
|
150
147
|
|
|
@@ -154,7 +151,6 @@ msgstr "Konto na 0 filteru"
|
|
|
154
151
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
155
152
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
156
153
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
157
|
-
#, python-format
|
|
158
154
|
msgid "Account balance at 0 filter"
|
|
159
155
|
msgstr "Saldo konta na 0 filteru"
|
|
160
156
|
|
|
@@ -188,7 +184,6 @@ msgstr ""
|
|
|
188
184
|
#. module: account_financial_report
|
|
189
185
|
#. odoo-python
|
|
190
186
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
191
|
-
#, python-format
|
|
192
187
|
msgid "Age ≤ 120 d."
|
|
193
188
|
msgstr ""
|
|
194
189
|
|
|
@@ -202,7 +197,6 @@ msgstr ""
|
|
|
202
197
|
#. module: account_financial_report
|
|
203
198
|
#. odoo-python
|
|
204
199
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
205
|
-
#, python-format
|
|
206
200
|
msgid "Age ≤ 30 d."
|
|
207
201
|
msgstr ""
|
|
208
202
|
|
|
@@ -216,7 +210,6 @@ msgstr ""
|
|
|
216
210
|
#. module: account_financial_report
|
|
217
211
|
#. odoo-python
|
|
218
212
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
219
|
-
#, python-format
|
|
220
213
|
msgid "Age ≤ 60 d."
|
|
221
214
|
msgstr ""
|
|
222
215
|
|
|
@@ -230,7 +223,6 @@ msgstr ""
|
|
|
230
223
|
#. module: account_financial_report
|
|
231
224
|
#. odoo-python
|
|
232
225
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
233
|
-
#, python-format
|
|
234
226
|
msgid "Age ≤ 90 d."
|
|
235
227
|
msgstr ""
|
|
236
228
|
|
|
@@ -241,7 +233,6 @@ msgstr ""
|
|
|
241
233
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
242
234
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
243
235
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
244
|
-
#, python-format
|
|
245
236
|
msgid "Aged Partner Balance"
|
|
246
237
|
msgstr "Dospjela dugovanja kupca"
|
|
247
238
|
|
|
@@ -273,7 +264,6 @@ msgstr ""
|
|
|
273
264
|
#. module: account_financial_report
|
|
274
265
|
#. odoo-python
|
|
275
266
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
276
|
-
#, python-format
|
|
277
267
|
msgid "All"
|
|
278
268
|
msgstr "Sve"
|
|
279
269
|
|
|
@@ -305,7 +295,6 @@ msgstr "Sve proknji??ene stavke"
|
|
|
305
295
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
306
296
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
307
297
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
308
|
-
#, python-format
|
|
309
298
|
msgid "All entries"
|
|
310
299
|
msgstr "Sve stavke"
|
|
311
300
|
|
|
@@ -319,7 +308,6 @@ msgstr "Sve stavke"
|
|
|
319
308
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
320
309
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
321
310
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
322
|
-
#, python-format
|
|
323
311
|
msgid "All posted entries"
|
|
324
312
|
msgstr "Sve proknji??ene stavke"
|
|
325
313
|
|
|
@@ -331,7 +319,6 @@ msgstr "Iznos u val."
|
|
|
331
319
|
#. module: account_financial_report
|
|
332
320
|
#. odoo-python
|
|
333
321
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
334
|
-
#, python-format
|
|
335
322
|
msgid "Amount Currency"
|
|
336
323
|
msgstr "Iznos u valuti"
|
|
337
324
|
|
|
@@ -339,7 +326,6 @@ msgstr "Iznos u valuti"
|
|
|
339
326
|
#. odoo-python
|
|
340
327
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
341
328
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
342
|
-
#, python-format
|
|
343
329
|
msgid "Amount cur."
|
|
344
330
|
msgstr "Iznos u val."
|
|
345
331
|
|
|
@@ -353,7 +339,6 @@ msgstr "Analiti??ki Konto"
|
|
|
353
339
|
#. odoo-python
|
|
354
340
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
355
341
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
356
|
-
#, python-format
|
|
357
342
|
msgid "Analytic Distribution"
|
|
358
343
|
msgstr "Analiti??ka distribucija"
|
|
359
344
|
|
|
@@ -372,21 +357,18 @@ msgstr "Osnovica"
|
|
|
372
357
|
#. module: account_financial_report
|
|
373
358
|
#. odoo-python
|
|
374
359
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
375
|
-
#, python-format
|
|
376
360
|
msgid "Base Balance"
|
|
377
361
|
msgstr "Saldo osnovica"
|
|
378
362
|
|
|
379
363
|
#. module: account_financial_report
|
|
380
364
|
#. odoo-python
|
|
381
365
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
382
|
-
#, python-format
|
|
383
366
|
msgid "Base Credit"
|
|
384
367
|
msgstr "Osnovica Duguje"
|
|
385
368
|
|
|
386
369
|
#. module: account_financial_report
|
|
387
370
|
#. odoo-python
|
|
388
371
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
389
|
-
#, python-format
|
|
390
372
|
msgid "Base Debit"
|
|
391
373
|
msgstr "Osnovica potra??uje"
|
|
392
374
|
|
|
@@ -399,7 +381,6 @@ msgstr "Bazirano na"
|
|
|
399
381
|
#. module: account_financial_report
|
|
400
382
|
#. odoo-python
|
|
401
383
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
402
|
-
#, python-format
|
|
403
384
|
msgid "Based on"
|
|
404
385
|
msgstr "Bazirano na"
|
|
405
386
|
|
|
@@ -417,7 +398,6 @@ msgstr "Otka??i"
|
|
|
417
398
|
#. odoo-python
|
|
418
399
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
419
400
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
420
|
-
#, python-format
|
|
421
401
|
msgid "Centralize filter"
|
|
422
402
|
msgstr "Centraliziraj filter"
|
|
423
403
|
|
|
@@ -437,7 +417,6 @@ msgstr "Podre??ene grupe"
|
|
|
437
417
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
438
418
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
439
419
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
440
|
-
#, python-format
|
|
441
420
|
msgid "Code"
|
|
442
421
|
msgstr "??ifra"
|
|
443
422
|
|
|
@@ -452,7 +431,6 @@ msgstr "??ifra"
|
|
|
452
431
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
453
432
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
454
433
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
455
|
-
#, python-format
|
|
456
434
|
msgid "Company"
|
|
457
435
|
msgstr "Tvrtka"
|
|
458
436
|
|
|
@@ -505,7 +483,6 @@ msgstr "Kreirano"
|
|
|
505
483
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
506
484
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
507
485
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
508
|
-
#, python-format
|
|
509
486
|
msgid "Credit"
|
|
510
487
|
msgstr "Duguje"
|
|
511
488
|
|
|
@@ -513,7 +490,6 @@ msgstr "Duguje"
|
|
|
513
490
|
#. odoo-python
|
|
514
491
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
515
492
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
516
|
-
#, python-format
|
|
517
493
|
msgid "Cumul cur."
|
|
518
494
|
msgstr "Ukupno val."
|
|
519
495
|
|
|
@@ -521,7 +497,6 @@ msgstr "Ukupno val."
|
|
|
521
497
|
#. odoo-python
|
|
522
498
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
523
499
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
524
|
-
#, python-format
|
|
525
500
|
msgid "Cumul. Bal."
|
|
526
501
|
msgstr "Ukupno Sal."
|
|
527
502
|
|
|
@@ -530,7 +505,6 @@ msgstr "Ukupno Sal."
|
|
|
530
505
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
531
506
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
532
507
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
533
|
-
#, python-format
|
|
534
508
|
msgid "Cur."
|
|
535
509
|
msgstr "Val."
|
|
536
510
|
|
|
@@ -538,7 +512,6 @@ msgstr "Val."
|
|
|
538
512
|
#. odoo-python
|
|
539
513
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
540
514
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
541
|
-
#, python-format
|
|
542
515
|
msgid "Cur. Original"
|
|
543
516
|
msgstr "Orig. Val."
|
|
544
517
|
|
|
@@ -546,14 +519,12 @@ msgstr "Orig. Val."
|
|
|
546
519
|
#. odoo-python
|
|
547
520
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
548
521
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
549
|
-
#, python-format
|
|
550
522
|
msgid "Cur. Residual"
|
|
551
523
|
msgstr ""
|
|
552
524
|
|
|
553
525
|
#. module: account_financial_report
|
|
554
526
|
#. odoo-python
|
|
555
527
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
556
|
-
#, python-format
|
|
557
528
|
msgid "Currency"
|
|
558
529
|
msgstr "Valuta"
|
|
559
530
|
|
|
@@ -561,7 +532,6 @@ msgstr "Valuta"
|
|
|
561
532
|
#. odoo-python
|
|
562
533
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
563
534
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
564
|
-
#, python-format
|
|
565
535
|
msgid "Current"
|
|
566
536
|
msgstr ""
|
|
567
537
|
|
|
@@ -576,7 +546,6 @@ msgstr ""
|
|
|
576
546
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
577
547
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
578
548
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
579
|
-
#, python-format
|
|
580
549
|
msgid "Date"
|
|
581
550
|
msgstr "Datum"
|
|
582
551
|
|
|
@@ -608,14 +577,12 @@ msgstr "Datum do"
|
|
|
608
577
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
609
578
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
610
579
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
611
|
-
#, python-format
|
|
612
580
|
msgid "Date at filter"
|
|
613
581
|
msgstr "Datum na filteru"
|
|
614
582
|
|
|
615
583
|
#. module: account_financial_report
|
|
616
584
|
#. odoo-python
|
|
617
585
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
618
|
-
#, python-format
|
|
619
586
|
msgid "Date from"
|
|
620
587
|
msgstr "Datum od"
|
|
621
588
|
|
|
@@ -634,14 +601,12 @@ msgstr "Raspon datuma"
|
|
|
634
601
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
635
602
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
636
603
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
637
|
-
#, python-format
|
|
638
604
|
msgid "Date range filter"
|
|
639
605
|
msgstr "Filter raspona datuma"
|
|
640
606
|
|
|
641
607
|
#. module: account_financial_report
|
|
642
608
|
#. odoo-python
|
|
643
609
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
644
|
-
#, python-format
|
|
645
610
|
msgid "Date to"
|
|
646
611
|
msgstr "Datum do"
|
|
647
612
|
|
|
@@ -655,7 +620,6 @@ msgstr "Datum do"
|
|
|
655
620
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
656
621
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
657
622
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
658
|
-
#, python-format
|
|
659
623
|
msgid "Debit"
|
|
660
624
|
msgstr "Duguje"
|
|
661
625
|
|
|
@@ -664,7 +628,6 @@ msgstr "Duguje"
|
|
|
664
628
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
665
629
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
666
630
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
667
|
-
#, python-format
|
|
668
631
|
msgid "Description"
|
|
669
632
|
msgstr "Opis"
|
|
670
633
|
|
|
@@ -722,7 +685,6 @@ msgstr ""
|
|
|
722
685
|
#. odoo-python
|
|
723
686
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
724
687
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
725
|
-
#, python-format
|
|
726
688
|
msgid "Due date"
|
|
727
689
|
msgstr "Datum dospije??a"
|
|
728
690
|
|
|
@@ -760,7 +722,6 @@ msgstr "Zavr??ni konto u rasponu"
|
|
|
760
722
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
761
723
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
762
724
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
763
|
-
#, python-format
|
|
764
725
|
msgid "Ending balance"
|
|
765
726
|
msgstr "Zavr??ni saldo"
|
|
766
727
|
|
|
@@ -776,7 +737,6 @@ msgstr ""
|
|
|
776
737
|
#. module: account_financial_report
|
|
777
738
|
#. odoo-python
|
|
778
739
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
779
|
-
#, python-format
|
|
780
740
|
msgid "Entries sorted by"
|
|
781
741
|
msgstr "Stavke sortirane po"
|
|
782
742
|
|
|
@@ -790,21 +750,18 @@ msgstr "Stavke sortirane po"
|
|
|
790
750
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
791
751
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
792
752
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
793
|
-
#, python-format
|
|
794
753
|
msgid "Entry"
|
|
795
754
|
msgstr "Stavka"
|
|
796
755
|
|
|
797
756
|
#. module: account_financial_report
|
|
798
757
|
#. odoo-python
|
|
799
758
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
800
|
-
#, python-format
|
|
801
759
|
msgid "Entry number"
|
|
802
760
|
msgstr "Broj stavke"
|
|
803
761
|
|
|
804
762
|
#. module: account_financial_report
|
|
805
763
|
#. odoo-javascript
|
|
806
764
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
807
|
-
#, python-format
|
|
808
765
|
msgid "Export"
|
|
809
766
|
msgstr "Izvoz"
|
|
810
767
|
|
|
@@ -885,7 +842,6 @@ msgstr "Od:"
|
|
|
885
842
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
886
843
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
887
844
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
888
|
-
#, python-format
|
|
889
845
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
890
846
|
msgstr "Od: %(date_from)s do: %(date_to)s"
|
|
891
847
|
|
|
@@ -913,7 +869,6 @@ msgstr "Po??etni dan Fisk god"
|
|
|
913
869
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
914
870
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
915
871
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
916
|
-
#, python-format
|
|
917
872
|
msgid "General Ledger"
|
|
918
873
|
msgstr ""
|
|
919
874
|
|
|
@@ -974,7 +929,6 @@ msgstr ""
|
|
|
974
929
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
975
930
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
976
931
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
977
|
-
#, python-format
|
|
978
932
|
msgid "Hide"
|
|
979
933
|
msgstr "Sakrij"
|
|
980
934
|
|
|
@@ -1021,7 +975,6 @@ msgstr ""
|
|
|
1021
975
|
#. module: account_financial_report
|
|
1022
976
|
#. odoo-python
|
|
1023
977
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1024
|
-
#, python-format
|
|
1025
978
|
msgid "Inferior Limit must be greather than zero"
|
|
1026
979
|
msgstr ""
|
|
1027
980
|
|
|
@@ -1048,7 +1001,6 @@ msgstr ""
|
|
|
1048
1001
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1049
1002
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1050
1003
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1051
|
-
#, python-format
|
|
1052
1004
|
msgid "Initial balance"
|
|
1053
1005
|
msgstr "Po??etni saldo"
|
|
1054
1006
|
|
|
@@ -1068,7 +1020,6 @@ msgstr ""
|
|
|
1068
1020
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1069
1021
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1070
1022
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1071
|
-
#, python-format
|
|
1072
1023
|
msgid "Journal"
|
|
1073
1024
|
msgstr "Dnevnik"
|
|
1074
1025
|
|
|
@@ -1088,7 +1039,6 @@ msgstr "Domena stavaka dnevnika"
|
|
|
1088
1039
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1089
1040
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1090
1041
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1091
|
-
#, python-format
|
|
1092
1042
|
msgid "Journal Ledger"
|
|
1093
1043
|
msgstr ""
|
|
1094
1044
|
|
|
@@ -1122,7 +1072,6 @@ msgstr ""
|
|
|
1122
1072
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1123
1073
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1124
1074
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1125
|
-
#, python-format
|
|
1126
1075
|
msgid "Journals"
|
|
1127
1076
|
msgstr ""
|
|
1128
1077
|
|
|
@@ -1159,7 +1108,6 @@ msgstr ""
|
|
|
1159
1108
|
#. module: account_financial_report
|
|
1160
1109
|
#. odoo-python
|
|
1161
1110
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1162
|
-
#, python-format
|
|
1163
1111
|
msgid "Level %s"
|
|
1164
1112
|
msgstr ""
|
|
1165
1113
|
|
|
@@ -1168,7 +1116,6 @@ msgstr ""
|
|
|
1168
1116
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1169
1117
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1170
1118
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1171
|
-
#, python-format
|
|
1172
1119
|
msgid "Limit hierarchy levels"
|
|
1173
1120
|
msgstr ""
|
|
1174
1121
|
|
|
@@ -1182,7 +1129,6 @@ msgstr ""
|
|
|
1182
1129
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1183
1130
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1184
1131
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1185
|
-
#, python-format
|
|
1186
1132
|
msgid "Missing Partner"
|
|
1187
1133
|
msgstr ""
|
|
1188
1134
|
|
|
@@ -1209,7 +1155,6 @@ msgstr ""
|
|
|
1209
1155
|
#. module: account_financial_report
|
|
1210
1156
|
#. odoo-python
|
|
1211
1157
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1212
|
-
#, python-format
|
|
1213
1158
|
msgid "Must complete Configuration Lines"
|
|
1214
1159
|
msgstr ""
|
|
1215
1160
|
|
|
@@ -1222,15 +1167,11 @@ msgstr ""
|
|
|
1222
1167
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1223
1168
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1224
1169
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1225
|
-
#, python-format
|
|
1226
1170
|
msgid "Name"
|
|
1227
1171
|
msgstr "Naziv"
|
|
1228
1172
|
|
|
1229
1173
|
#. module: account_financial_report
|
|
1230
|
-
#. odoo-python
|
|
1231
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1232
1174
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1233
|
-
#, python-format
|
|
1234
1175
|
msgid "Name must be unique per report configuration"
|
|
1235
1176
|
msgstr ""
|
|
1236
1177
|
|
|
@@ -1238,7 +1179,6 @@ msgstr ""
|
|
|
1238
1179
|
#. odoo-python
|
|
1239
1180
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1240
1181
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1241
|
-
#, python-format
|
|
1242
1182
|
msgid "Net"
|
|
1243
1183
|
msgstr "Neto"
|
|
1244
1184
|
|
|
@@ -1248,14 +1188,12 @@ msgstr "Neto"
|
|
|
1248
1188
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1249
1189
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1250
1190
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1251
|
-
#, python-format
|
|
1252
1191
|
msgid "No"
|
|
1253
1192
|
msgstr "Ne"
|
|
1254
1193
|
|
|
1255
1194
|
#. module: account_financial_report
|
|
1256
1195
|
#. odoo-python
|
|
1257
1196
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1258
|
-
#, python-format
|
|
1259
1197
|
msgid "No group"
|
|
1260
1198
|
msgstr "Nema grupu"
|
|
1261
1199
|
|
|
@@ -1263,7 +1201,6 @@ msgstr "Nema grupu"
|
|
|
1263
1201
|
#. odoo-python
|
|
1264
1202
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1265
1203
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1266
|
-
#, python-format
|
|
1267
1204
|
msgid "No limit"
|
|
1268
1205
|
msgstr ""
|
|
1269
1206
|
|
|
@@ -1275,7 +1212,6 @@ msgstr ""
|
|
|
1275
1212
|
#. module: account_financial_report
|
|
1276
1213
|
#. odoo-python
|
|
1277
1214
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1278
|
-
#, python-format
|
|
1279
1215
|
msgid "Not Posted"
|
|
1280
1216
|
msgstr "Nije proknji??eno"
|
|
1281
1217
|
|
|
@@ -1298,7 +1234,6 @@ msgstr "OCA ra??unovodstveni izvje??taji"
|
|
|
1298
1234
|
#. odoo-python
|
|
1299
1235
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1300
1236
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1301
|
-
#, python-format
|
|
1302
1237
|
msgid "Older"
|
|
1303
1238
|
msgstr "Starije"
|
|
1304
1239
|
|
|
@@ -1315,7 +1250,6 @@ msgstr ""
|
|
|
1315
1250
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1316
1251
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1317
1252
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1318
|
-
#, python-format
|
|
1319
1253
|
msgid "Open Items"
|
|
1320
1254
|
msgstr "Otvorene stavke"
|
|
1321
1255
|
|
|
@@ -1358,7 +1292,6 @@ msgstr ""
|
|
|
1358
1292
|
#. odoo-python
|
|
1359
1293
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1360
1294
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1361
|
-
#, python-format
|
|
1362
1295
|
msgid "Original"
|
|
1363
1296
|
msgstr ""
|
|
1364
1297
|
|
|
@@ -1375,7 +1308,6 @@ msgstr ""
|
|
|
1375
1308
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1376
1309
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1377
1310
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1378
|
-
#, python-format
|
|
1379
1311
|
msgid "Partner"
|
|
1380
1312
|
msgstr ""
|
|
1381
1313
|
|
|
@@ -1389,14 +1321,12 @@ msgstr ""
|
|
|
1389
1321
|
#. module: account_financial_report
|
|
1390
1322
|
#. odoo-python
|
|
1391
1323
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1392
|
-
#, python-format
|
|
1393
1324
|
msgid "Partner Initial balance"
|
|
1394
1325
|
msgstr ""
|
|
1395
1326
|
|
|
1396
1327
|
#. module: account_financial_report
|
|
1397
1328
|
#. odoo-python
|
|
1398
1329
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1399
|
-
#, python-format
|
|
1400
1330
|
msgid "Partner cumul aged balance"
|
|
1401
1331
|
msgstr ""
|
|
1402
1332
|
|
|
@@ -1406,7 +1336,6 @@ msgstr ""
|
|
|
1406
1336
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1407
1337
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1408
1338
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1409
|
-
#, python-format
|
|
1410
1339
|
msgid "Partner ending balance"
|
|
1411
1340
|
msgstr ""
|
|
1412
1341
|
|
|
@@ -1437,7 +1366,6 @@ msgstr ""
|
|
|
1437
1366
|
#. odoo-python
|
|
1438
1367
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1439
1368
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1440
|
-
#, python-format
|
|
1441
1369
|
msgid "Period balance"
|
|
1442
1370
|
msgstr "Saldo perioda"
|
|
1443
1371
|
|
|
@@ -1449,7 +1377,6 @@ msgstr "Periodi"
|
|
|
1449
1377
|
#. module: account_financial_report
|
|
1450
1378
|
#. odoo-python
|
|
1451
1379
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1452
|
-
#, python-format
|
|
1453
1380
|
msgid "Posted"
|
|
1454
1381
|
msgstr "Proknji??eno"
|
|
1455
1382
|
|
|
@@ -1457,7 +1384,6 @@ msgstr "Proknji??eno"
|
|
|
1457
1384
|
#. odoo-python
|
|
1458
1385
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1459
1386
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1460
|
-
#, python-format
|
|
1461
1387
|
msgid "Rec."
|
|
1462
1388
|
msgstr ""
|
|
1463
1389
|
|
|
@@ -1491,7 +1417,6 @@ msgstr ""
|
|
|
1491
1417
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1492
1418
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1493
1419
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1494
|
-
#, python-format
|
|
1495
1420
|
msgid "Ref - Label"
|
|
1496
1421
|
msgstr ""
|
|
1497
1422
|
|
|
@@ -1507,7 +1432,6 @@ msgstr ""
|
|
|
1507
1432
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1508
1433
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1509
1434
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1510
|
-
#, python-format
|
|
1511
1435
|
msgid "Residual"
|
|
1512
1436
|
msgstr ""
|
|
1513
1437
|
|
|
@@ -1515,7 +1439,6 @@ msgstr ""
|
|
|
1515
1439
|
#. odoo-python
|
|
1516
1440
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1517
1441
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1518
|
-
#, python-format
|
|
1519
1442
|
msgid "Sequence"
|
|
1520
1443
|
msgstr "Sekvenca"
|
|
1521
1444
|
|
|
@@ -1527,7 +1450,6 @@ msgstr "Sekvenca"
|
|
|
1527
1450
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1528
1451
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1529
1452
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1530
|
-
#, python-format
|
|
1531
1453
|
msgid "Show"
|
|
1532
1454
|
msgstr "Prika??i"
|
|
1533
1455
|
|
|
@@ -1560,7 +1482,6 @@ msgstr "Prika??i detalje partnera"
|
|
|
1560
1482
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1561
1483
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1562
1484
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1563
|
-
#, python-format
|
|
1564
1485
|
msgid "Show foreign currency"
|
|
1565
1486
|
msgstr "Prika??i stranu valutu"
|
|
1566
1487
|
|
|
@@ -1595,7 +1516,6 @@ msgstr "Po??etni konto u rasponu"
|
|
|
1595
1516
|
#. odoo-python
|
|
1596
1517
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1597
1518
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1598
|
-
#, python-format
|
|
1599
1519
|
msgid "TOTAL"
|
|
1600
1520
|
msgstr ""
|
|
1601
1521
|
|
|
@@ -1624,7 +1544,6 @@ msgstr "Ciljane stavke"
|
|
|
1624
1544
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1625
1545
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1626
1546
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1627
|
-
#, python-format
|
|
1628
1547
|
msgid "Target moves filter"
|
|
1629
1548
|
msgstr "Filter ciljanih stavaka"
|
|
1630
1549
|
|
|
@@ -1632,7 +1551,6 @@ msgstr "Filter ciljanih stavaka"
|
|
|
1632
1551
|
#. odoo-python
|
|
1633
1552
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1634
1553
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1635
|
-
#, python-format
|
|
1636
1554
|
msgid "Tax"
|
|
1637
1555
|
msgstr "Porez"
|
|
1638
1556
|
|
|
@@ -1645,21 +1563,18 @@ msgstr "Iznos poreza"
|
|
|
1645
1563
|
#. module: account_financial_report
|
|
1646
1564
|
#. odoo-python
|
|
1647
1565
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1648
|
-
#, python-format
|
|
1649
1566
|
msgid "Tax Balance"
|
|
1650
1567
|
msgstr "Saldo poreza"
|
|
1651
1568
|
|
|
1652
1569
|
#. module: account_financial_report
|
|
1653
1570
|
#. odoo-python
|
|
1654
1571
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1655
|
-
#, python-format
|
|
1656
1572
|
msgid "Tax Credit"
|
|
1657
1573
|
msgstr "Potra??uje porez"
|
|
1658
1574
|
|
|
1659
1575
|
#. module: account_financial_report
|
|
1660
1576
|
#. odoo-python
|
|
1661
1577
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1662
|
-
#, python-format
|
|
1663
1578
|
msgid "Tax Debit"
|
|
1664
1579
|
msgstr "Duguje porez"
|
|
1665
1580
|
|
|
@@ -1667,14 +1582,12 @@ msgstr "Duguje porez"
|
|
|
1667
1582
|
#. odoo-python
|
|
1668
1583
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1669
1584
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1670
|
-
#, python-format
|
|
1671
1585
|
msgid "Tax Groups"
|
|
1672
1586
|
msgstr "Porezne grupe"
|
|
1673
1587
|
|
|
1674
1588
|
#. module: account_financial_report
|
|
1675
1589
|
#. odoo-python
|
|
1676
1590
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1677
|
-
#, python-format
|
|
1678
1591
|
msgid "Tax Initial balance"
|
|
1679
1592
|
msgstr "Po??etni saldo poreza"
|
|
1680
1593
|
|
|
@@ -1682,7 +1595,6 @@ msgstr "Po??etni saldo poreza"
|
|
|
1682
1595
|
#. odoo-python
|
|
1683
1596
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1684
1597
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1685
|
-
#, python-format
|
|
1686
1598
|
msgid "Tax Tags"
|
|
1687
1599
|
msgstr "Oznake poreza"
|
|
1688
1600
|
|
|
@@ -1690,7 +1602,6 @@ msgstr "Oznake poreza"
|
|
|
1690
1602
|
#. odoo-python
|
|
1691
1603
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1692
1604
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1693
|
-
#, python-format
|
|
1694
1605
|
msgid "Tax ending balance"
|
|
1695
1606
|
msgstr "Zavr??ni saldo poreza"
|
|
1696
1607
|
|
|
@@ -1706,14 +1617,12 @@ msgstr "Po??etni saldo poreza"
|
|
|
1706
1617
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1707
1618
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1708
1619
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1709
|
-
#, python-format
|
|
1710
1620
|
msgid "Taxes"
|
|
1711
1621
|
msgstr "Porezi"
|
|
1712
1622
|
|
|
1713
1623
|
#. module: account_financial_report
|
|
1714
1624
|
#. odoo-python
|
|
1715
1625
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1716
|
-
#, python-format
|
|
1717
1626
|
msgid ""
|
|
1718
1627
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1719
1628
|
"the same."
|
|
@@ -1722,7 +1631,6 @@ msgstr ""
|
|
|
1722
1631
|
#. module: account_financial_report
|
|
1723
1632
|
#. odoo-python
|
|
1724
1633
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1725
|
-
#, python-format
|
|
1726
1634
|
msgid ""
|
|
1727
1635
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1728
1636
|
"same."
|
|
@@ -1731,7 +1639,6 @@ msgstr ""
|
|
|
1731
1639
|
#. module: account_financial_report
|
|
1732
1640
|
#. odoo-python
|
|
1733
1641
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1734
|
-
#, python-format
|
|
1735
1642
|
msgid ""
|
|
1736
1643
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1737
1644
|
msgstr ""
|
|
@@ -1739,7 +1646,6 @@ msgstr ""
|
|
|
1739
1646
|
#. module: account_financial_report
|
|
1740
1647
|
#. odoo-python
|
|
1741
1648
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1742
|
-
#, python-format
|
|
1743
1649
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1744
1650
|
msgstr "Razina strukture za filtriranje mora biti ve??a od 0."
|
|
1745
1651
|
|
|
@@ -1762,7 +1668,6 @@ msgstr "Do:"
|
|
|
1762
1668
|
#. odoo-python
|
|
1763
1669
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1764
1670
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1765
|
-
#, python-format
|
|
1766
1671
|
msgid "Total"
|
|
1767
1672
|
msgstr "Ukupno"
|
|
1768
1673
|
|
|
@@ -1773,7 +1678,6 @@ msgstr "Ukupno"
|
|
|
1773
1678
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1774
1679
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1775
1680
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1776
|
-
#, python-format
|
|
1777
1681
|
msgid "Trial Balance"
|
|
1778
1682
|
msgstr ""
|
|
1779
1683
|
|
|
@@ -1860,7 +1764,6 @@ msgstr ""
|
|
|
1860
1764
|
#. module: account_financial_report
|
|
1861
1765
|
#. odoo-python
|
|
1862
1766
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1863
|
-
#, python-format
|
|
1864
1767
|
msgid "Vat Report"
|
|
1865
1768
|
msgstr ""
|
|
1866
1769
|
|
|
@@ -1899,7 +1802,6 @@ msgstr "Sa nazivom konta"
|
|
|
1899
1802
|
#. module: account_financial_report
|
|
1900
1803
|
#. odoo-python
|
|
1901
1804
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1902
|
-
#, python-format
|
|
1903
1805
|
msgid "Without analytic account"
|
|
1904
1806
|
msgstr ""
|
|
1905
1807
|
|
|
@@ -1909,14 +1811,12 @@ msgstr ""
|
|
|
1909
1811
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1910
1812
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1911
1813
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1912
|
-
#, python-format
|
|
1913
1814
|
msgid "Yes"
|
|
1914
1815
|
msgstr "Da"
|
|
1915
1816
|
|
|
1916
1817
|
#. module: account_financial_report
|
|
1917
1818
|
#. odoo-python
|
|
1918
1819
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1919
|
-
#, python-format
|
|
1920
1820
|
msgid "future"
|
|
1921
1821
|
msgstr "budu??e"
|
|
1922
1822
|
|