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
|
@@ -106,7 +106,6 @@ msgstr ""
|
|
|
106
106
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
107
107
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
108
108
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
109
|
-
#, python-format
|
|
110
109
|
msgid "Account"
|
|
111
110
|
msgstr "Cont"
|
|
112
111
|
|
|
@@ -139,7 +138,6 @@ msgstr "Grup conturi"
|
|
|
139
138
|
#. module: account_financial_report
|
|
140
139
|
#. odoo-python
|
|
141
140
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
142
|
-
#, python-format
|
|
143
141
|
msgid "Account Name"
|
|
144
142
|
msgstr "Nume Cont"
|
|
145
143
|
|
|
@@ -147,7 +145,6 @@ msgstr "Nume Cont"
|
|
|
147
145
|
#. odoo-python
|
|
148
146
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
149
147
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
150
|
-
#, python-format
|
|
151
148
|
msgid "Account at 0 filter"
|
|
152
149
|
msgstr "Filtru cont la 0"
|
|
153
150
|
|
|
@@ -157,7 +154,6 @@ msgstr "Filtru cont la 0"
|
|
|
157
154
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
158
155
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
159
156
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
160
|
-
#, python-format
|
|
161
157
|
msgid "Account balance at 0 filter"
|
|
162
158
|
msgstr "Conturi cu sold zero filtrate"
|
|
163
159
|
|
|
@@ -191,7 +187,6 @@ msgstr ""
|
|
|
191
187
|
#. module: account_financial_report
|
|
192
188
|
#. odoo-python
|
|
193
189
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
194
|
-
#, python-format
|
|
195
190
|
msgid "Age ≤ 120 d."
|
|
196
191
|
msgstr ""
|
|
197
192
|
|
|
@@ -205,7 +200,6 @@ msgstr ""
|
|
|
205
200
|
#. module: account_financial_report
|
|
206
201
|
#. odoo-python
|
|
207
202
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
208
|
-
#, python-format
|
|
209
203
|
msgid "Age ≤ 30 d."
|
|
210
204
|
msgstr ""
|
|
211
205
|
|
|
@@ -219,7 +213,6 @@ msgstr ""
|
|
|
219
213
|
#. module: account_financial_report
|
|
220
214
|
#. odoo-python
|
|
221
215
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
222
|
-
#, python-format
|
|
223
216
|
msgid "Age ≤ 60 d."
|
|
224
217
|
msgstr ""
|
|
225
218
|
|
|
@@ -233,7 +226,6 @@ msgstr ""
|
|
|
233
226
|
#. module: account_financial_report
|
|
234
227
|
#. odoo-python
|
|
235
228
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
236
|
-
#, python-format
|
|
237
229
|
msgid "Age ≤ 90 d."
|
|
238
230
|
msgstr ""
|
|
239
231
|
|
|
@@ -244,7 +236,6 @@ msgstr ""
|
|
|
244
236
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
245
237
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
246
238
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
247
|
-
#, python-format
|
|
248
239
|
msgid "Aged Partner Balance"
|
|
249
240
|
msgstr ""
|
|
250
241
|
|
|
@@ -276,7 +267,6 @@ msgstr ""
|
|
|
276
267
|
#. module: account_financial_report
|
|
277
268
|
#. odoo-python
|
|
278
269
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
279
|
-
#, python-format
|
|
280
270
|
msgid "All"
|
|
281
271
|
msgstr "Tot"
|
|
282
272
|
|
|
@@ -308,7 +298,6 @@ msgstr "Toate ??nregistr??rile postare"
|
|
|
308
298
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
309
299
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
310
300
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
311
|
-
#, python-format
|
|
312
301
|
msgid "All entries"
|
|
313
302
|
msgstr "Toate ??nregistr??rile"
|
|
314
303
|
|
|
@@ -322,7 +311,6 @@ msgstr "Toate ??nregistr??rile"
|
|
|
322
311
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
323
312
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
324
313
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
325
|
-
#, python-format
|
|
326
314
|
msgid "All posted entries"
|
|
327
315
|
msgstr "Toate ??nregistr??rile postare"
|
|
328
316
|
|
|
@@ -334,7 +322,6 @@ msgstr ""
|
|
|
334
322
|
#. module: account_financial_report
|
|
335
323
|
#. odoo-python
|
|
336
324
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
337
|
-
#, python-format
|
|
338
325
|
msgid "Amount Currency"
|
|
339
326
|
msgstr "Sum?? Valut??"
|
|
340
327
|
|
|
@@ -342,7 +329,6 @@ msgstr "Sum?? Valut??"
|
|
|
342
329
|
#. odoo-python
|
|
343
330
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
344
331
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
345
|
-
#, python-format
|
|
346
332
|
msgid "Amount cur."
|
|
347
333
|
msgstr ""
|
|
348
334
|
|
|
@@ -356,7 +342,6 @@ msgstr "Cont analitic"
|
|
|
356
342
|
#. odoo-python
|
|
357
343
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
358
344
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
359
|
-
#, python-format
|
|
360
345
|
msgid "Analytic Distribution"
|
|
361
346
|
msgstr ""
|
|
362
347
|
|
|
@@ -375,21 +360,18 @@ msgstr "Valoare baz??"
|
|
|
375
360
|
#. module: account_financial_report
|
|
376
361
|
#. odoo-python
|
|
377
362
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
378
|
-
#, python-format
|
|
379
363
|
msgid "Base Balance"
|
|
380
364
|
msgstr "Sold baz??"
|
|
381
365
|
|
|
382
366
|
#. module: account_financial_report
|
|
383
367
|
#. odoo-python
|
|
384
368
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
385
|
-
#, python-format
|
|
386
369
|
msgid "Base Credit"
|
|
387
370
|
msgstr "Credit baz??"
|
|
388
371
|
|
|
389
372
|
#. module: account_financial_report
|
|
390
373
|
#. odoo-python
|
|
391
374
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
392
|
-
#, python-format
|
|
393
375
|
msgid "Base Debit"
|
|
394
376
|
msgstr "Debit baz??"
|
|
395
377
|
|
|
@@ -402,7 +384,6 @@ msgstr "Bazat pe"
|
|
|
402
384
|
#. module: account_financial_report
|
|
403
385
|
#. odoo-python
|
|
404
386
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
405
|
-
#, python-format
|
|
406
387
|
msgid "Based on"
|
|
407
388
|
msgstr "Bazat pe"
|
|
408
389
|
|
|
@@ -420,7 +401,6 @@ msgstr "Anulare"
|
|
|
420
401
|
#. odoo-python
|
|
421
402
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
422
403
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
423
|
-
#, python-format
|
|
424
404
|
msgid "Centralize filter"
|
|
425
405
|
msgstr "Centraliza??i filtrul"
|
|
426
406
|
|
|
@@ -440,7 +420,6 @@ msgstr "Grupuri subordonate"
|
|
|
440
420
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
441
421
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
442
422
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
443
|
-
#, python-format
|
|
444
423
|
msgid "Code"
|
|
445
424
|
msgstr "Cod"
|
|
446
425
|
|
|
@@ -455,7 +434,6 @@ msgstr "Cod"
|
|
|
455
434
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
456
435
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
457
436
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
458
|
-
#, python-format
|
|
459
437
|
msgid "Company"
|
|
460
438
|
msgstr "Companie"
|
|
461
439
|
|
|
@@ -508,7 +486,6 @@ msgstr "Creat pe"
|
|
|
508
486
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
509
487
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
510
488
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
511
|
-
#, python-format
|
|
512
489
|
msgid "Credit"
|
|
513
490
|
msgstr "Credit"
|
|
514
491
|
|
|
@@ -516,7 +493,6 @@ msgstr "Credit"
|
|
|
516
493
|
#. odoo-python
|
|
517
494
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
518
495
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
519
|
-
#, python-format
|
|
520
496
|
msgid "Cumul cur."
|
|
521
497
|
msgstr ""
|
|
522
498
|
|
|
@@ -524,7 +500,6 @@ msgstr ""
|
|
|
524
500
|
#. odoo-python
|
|
525
501
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
526
502
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
527
|
-
#, python-format
|
|
528
503
|
msgid "Cumul. Bal."
|
|
529
504
|
msgstr ""
|
|
530
505
|
|
|
@@ -533,7 +508,6 @@ msgstr ""
|
|
|
533
508
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
534
509
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
535
510
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
536
|
-
#, python-format
|
|
537
511
|
msgid "Cur."
|
|
538
512
|
msgstr ""
|
|
539
513
|
|
|
@@ -541,7 +515,6 @@ msgstr ""
|
|
|
541
515
|
#. odoo-python
|
|
542
516
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
543
517
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
544
|
-
#, python-format
|
|
545
518
|
msgid "Cur. Original"
|
|
546
519
|
msgstr ""
|
|
547
520
|
|
|
@@ -549,14 +522,12 @@ msgstr ""
|
|
|
549
522
|
#. odoo-python
|
|
550
523
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
551
524
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
552
|
-
#, python-format
|
|
553
525
|
msgid "Cur. Residual"
|
|
554
526
|
msgstr ""
|
|
555
527
|
|
|
556
528
|
#. module: account_financial_report
|
|
557
529
|
#. odoo-python
|
|
558
530
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
559
|
-
#, python-format
|
|
560
531
|
msgid "Currency"
|
|
561
532
|
msgstr "Moneda"
|
|
562
533
|
|
|
@@ -564,7 +535,6 @@ msgstr "Moneda"
|
|
|
564
535
|
#. odoo-python
|
|
565
536
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
566
537
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
567
|
-
#, python-format
|
|
568
538
|
msgid "Current"
|
|
569
539
|
msgstr "Curent"
|
|
570
540
|
|
|
@@ -579,7 +549,6 @@ msgstr "Curent"
|
|
|
579
549
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
580
550
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
581
551
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
582
|
-
#, python-format
|
|
583
552
|
msgid "Date"
|
|
584
553
|
msgstr "Data"
|
|
585
554
|
|
|
@@ -611,14 +580,12 @@ msgstr "P??n?? la"
|
|
|
611
580
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
612
581
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
613
582
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
614
|
-
#, python-format
|
|
615
583
|
msgid "Date at filter"
|
|
616
584
|
msgstr ""
|
|
617
585
|
|
|
618
586
|
#. module: account_financial_report
|
|
619
587
|
#. odoo-python
|
|
620
588
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
621
|
-
#, python-format
|
|
622
589
|
msgid "Date from"
|
|
623
590
|
msgstr "De la"
|
|
624
591
|
|
|
@@ -637,14 +604,12 @@ msgstr "Interval"
|
|
|
637
604
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
638
605
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
639
606
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
640
|
-
#, python-format
|
|
641
607
|
msgid "Date range filter"
|
|
642
608
|
msgstr "Interval selectat"
|
|
643
609
|
|
|
644
610
|
#. module: account_financial_report
|
|
645
611
|
#. odoo-python
|
|
646
612
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
647
|
-
#, python-format
|
|
648
613
|
msgid "Date to"
|
|
649
614
|
msgstr "P??n?? la"
|
|
650
615
|
|
|
@@ -658,7 +623,6 @@ msgstr "P??n?? la"
|
|
|
658
623
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
659
624
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
660
625
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
661
|
-
#, python-format
|
|
662
626
|
msgid "Debit"
|
|
663
627
|
msgstr "Debit"
|
|
664
628
|
|
|
@@ -667,7 +631,6 @@ msgstr "Debit"
|
|
|
667
631
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
668
632
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
669
633
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
670
|
-
#, python-format
|
|
671
634
|
msgid "Description"
|
|
672
635
|
msgstr "Descriere"
|
|
673
636
|
|
|
@@ -726,7 +689,6 @@ msgstr ""
|
|
|
726
689
|
#. odoo-python
|
|
727
690
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
728
691
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
729
|
-
#, python-format
|
|
730
692
|
msgid "Due date"
|
|
731
693
|
msgstr "Data scadent??"
|
|
732
694
|
|
|
@@ -764,7 +726,6 @@ msgstr ""
|
|
|
764
726
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
765
727
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
766
728
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
767
|
-
#, python-format
|
|
768
729
|
msgid "Ending balance"
|
|
769
730
|
msgstr "Sold final"
|
|
770
731
|
|
|
@@ -778,7 +739,6 @@ msgstr ""
|
|
|
778
739
|
#. module: account_financial_report
|
|
779
740
|
#. odoo-python
|
|
780
741
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
781
|
-
#, python-format
|
|
782
742
|
msgid "Entries sorted by"
|
|
783
743
|
msgstr "??nregistr??ri sortate dup??"
|
|
784
744
|
|
|
@@ -792,21 +752,18 @@ msgstr "??nregistr??ri sortate dup??"
|
|
|
792
752
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
793
753
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
794
754
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
795
|
-
#, python-format
|
|
796
755
|
msgid "Entry"
|
|
797
756
|
msgstr "??nregistrare"
|
|
798
757
|
|
|
799
758
|
#. module: account_financial_report
|
|
800
759
|
#. odoo-python
|
|
801
760
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
802
|
-
#, python-format
|
|
803
761
|
msgid "Entry number"
|
|
804
762
|
msgstr "Num??r ??nregistrare"
|
|
805
763
|
|
|
806
764
|
#. module: account_financial_report
|
|
807
765
|
#. odoo-javascript
|
|
808
766
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
809
|
-
#, python-format
|
|
810
767
|
msgid "Export"
|
|
811
768
|
msgstr ""
|
|
812
769
|
|
|
@@ -887,7 +844,6 @@ msgstr "De la:"
|
|
|
887
844
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
888
845
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
889
846
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
890
|
-
#, python-format
|
|
891
847
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
892
848
|
msgstr ""
|
|
893
849
|
|
|
@@ -915,7 +871,6 @@ msgstr ""
|
|
|
915
871
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
916
872
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
917
873
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
918
|
-
#, python-format
|
|
919
874
|
msgid "General Ledger"
|
|
920
875
|
msgstr "Carte mare"
|
|
921
876
|
|
|
@@ -977,7 +932,6 @@ msgstr ""
|
|
|
977
932
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
978
933
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
979
934
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
980
|
-
#, python-format
|
|
981
935
|
msgid "Hide"
|
|
982
936
|
msgstr "Ascunde"
|
|
983
937
|
|
|
@@ -1024,7 +978,6 @@ msgstr ""
|
|
|
1024
978
|
#. module: account_financial_report
|
|
1025
979
|
#. odoo-python
|
|
1026
980
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1027
|
-
#, python-format
|
|
1028
981
|
msgid "Inferior Limit must be greather than zero"
|
|
1029
982
|
msgstr ""
|
|
1030
983
|
|
|
@@ -1050,7 +1003,6 @@ msgstr ""
|
|
|
1050
1003
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1051
1004
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1052
1005
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1053
|
-
#, python-format
|
|
1054
1006
|
msgid "Initial balance"
|
|
1055
1007
|
msgstr "Sold ini??ial"
|
|
1056
1008
|
|
|
@@ -1070,7 +1022,6 @@ msgstr ""
|
|
|
1070
1022
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1071
1023
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1072
1024
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1073
|
-
#, python-format
|
|
1074
1025
|
msgid "Journal"
|
|
1075
1026
|
msgstr "Jurnal"
|
|
1076
1027
|
|
|
@@ -1090,7 +1041,7 @@ msgstr "Domeniul articolelor din jurnal"
|
|
|
1090
1041
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1091
1042
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1092
1043
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1093
|
-
#, fuzzy
|
|
1044
|
+
#, fuzzy
|
|
1094
1045
|
msgid "Journal Ledger"
|
|
1095
1046
|
msgstr "Jurnal"
|
|
1096
1047
|
|
|
@@ -1127,7 +1078,6 @@ msgstr "Jurnal"
|
|
|
1127
1078
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1128
1079
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1129
1080
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1130
|
-
#, python-format
|
|
1131
1081
|
msgid "Journals"
|
|
1132
1082
|
msgstr "Jurnale"
|
|
1133
1083
|
|
|
@@ -1164,7 +1114,6 @@ msgstr "Nivel"
|
|
|
1164
1114
|
#. module: account_financial_report
|
|
1165
1115
|
#. odoo-python
|
|
1166
1116
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1167
|
-
#, python-format
|
|
1168
1117
|
msgid "Level %s"
|
|
1169
1118
|
msgstr "Nivel %s"
|
|
1170
1119
|
|
|
@@ -1173,7 +1122,6 @@ msgstr "Nivel %s"
|
|
|
1173
1122
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1174
1123
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1175
1124
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1176
|
-
#, python-format
|
|
1177
1125
|
msgid "Limit hierarchy levels"
|
|
1178
1126
|
msgstr "Limita??i nivelurile de ierarhie"
|
|
1179
1127
|
|
|
@@ -1187,7 +1135,6 @@ msgstr "Linie"
|
|
|
1187
1135
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1188
1136
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1189
1137
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1190
|
-
#, python-format
|
|
1191
1138
|
msgid "Missing Partner"
|
|
1192
1139
|
msgstr ""
|
|
1193
1140
|
|
|
@@ -1214,7 +1161,6 @@ msgstr "Mi??c??ri"
|
|
|
1214
1161
|
#. module: account_financial_report
|
|
1215
1162
|
#. odoo-python
|
|
1216
1163
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1217
|
-
#, python-format
|
|
1218
1164
|
msgid "Must complete Configuration Lines"
|
|
1219
1165
|
msgstr ""
|
|
1220
1166
|
|
|
@@ -1227,15 +1173,11 @@ msgstr ""
|
|
|
1227
1173
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1228
1174
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1229
1175
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1230
|
-
#, python-format
|
|
1231
1176
|
msgid "Name"
|
|
1232
1177
|
msgstr "Nume"
|
|
1233
1178
|
|
|
1234
1179
|
#. module: account_financial_report
|
|
1235
|
-
#. odoo-python
|
|
1236
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1237
1180
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1238
|
-
#, python-format
|
|
1239
1181
|
msgid "Name must be unique per report configuration"
|
|
1240
1182
|
msgstr ""
|
|
1241
1183
|
|
|
@@ -1243,7 +1185,6 @@ msgstr ""
|
|
|
1243
1185
|
#. odoo-python
|
|
1244
1186
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1245
1187
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1246
|
-
#, python-format
|
|
1247
1188
|
msgid "Net"
|
|
1248
1189
|
msgstr "Brut"
|
|
1249
1190
|
|
|
@@ -1253,14 +1194,12 @@ msgstr "Brut"
|
|
|
1253
1194
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1254
1195
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1255
1196
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1256
|
-
#, python-format
|
|
1257
1197
|
msgid "No"
|
|
1258
1198
|
msgstr "Nu"
|
|
1259
1199
|
|
|
1260
1200
|
#. module: account_financial_report
|
|
1261
1201
|
#. odoo-python
|
|
1262
1202
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1263
|
-
#, python-format
|
|
1264
1203
|
msgid "No group"
|
|
1265
1204
|
msgstr "Niciun grup"
|
|
1266
1205
|
|
|
@@ -1268,7 +1207,6 @@ msgstr "Niciun grup"
|
|
|
1268
1207
|
#. odoo-python
|
|
1269
1208
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1270
1209
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1271
|
-
#, python-format
|
|
1272
1210
|
msgid "No limit"
|
|
1273
1211
|
msgstr "Nicio limit??"
|
|
1274
1212
|
|
|
@@ -1280,7 +1218,6 @@ msgstr ""
|
|
|
1280
1218
|
#. module: account_financial_report
|
|
1281
1219
|
#. odoo-python
|
|
1282
1220
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1283
|
-
#, python-format
|
|
1284
1221
|
msgid "Not Posted"
|
|
1285
1222
|
msgstr "Nepostat"
|
|
1286
1223
|
|
|
@@ -1303,7 +1240,6 @@ msgstr "Rapoarte contabilitate"
|
|
|
1303
1240
|
#. odoo-python
|
|
1304
1241
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1305
1242
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1306
|
-
#, python-format
|
|
1307
1243
|
msgid "Older"
|
|
1308
1244
|
msgstr "Mai vechi"
|
|
1309
1245
|
|
|
@@ -1320,7 +1256,6 @@ msgstr ""
|
|
|
1320
1256
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1321
1257
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1322
1258
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1323
|
-
#, python-format
|
|
1324
1259
|
msgid "Open Items"
|
|
1325
1260
|
msgstr "Pozi??ii deschise"
|
|
1326
1261
|
|
|
@@ -1363,7 +1298,6 @@ msgstr "Op??iuni"
|
|
|
1363
1298
|
#. odoo-python
|
|
1364
1299
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1365
1300
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1366
|
-
#, python-format
|
|
1367
1301
|
msgid "Original"
|
|
1368
1302
|
msgstr "Original"
|
|
1369
1303
|
|
|
@@ -1380,7 +1314,6 @@ msgstr "Original"
|
|
|
1380
1314
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1381
1315
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1382
1316
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1383
|
-
#, python-format
|
|
1384
1317
|
msgid "Partner"
|
|
1385
1318
|
msgstr "Partenr"
|
|
1386
1319
|
|
|
@@ -1394,14 +1327,12 @@ msgstr ""
|
|
|
1394
1327
|
#. module: account_financial_report
|
|
1395
1328
|
#. odoo-python
|
|
1396
1329
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1397
|
-
#, python-format
|
|
1398
1330
|
msgid "Partner Initial balance"
|
|
1399
1331
|
msgstr "Sold ini??ial partener"
|
|
1400
1332
|
|
|
1401
1333
|
#. module: account_financial_report
|
|
1402
1334
|
#. odoo-python
|
|
1403
1335
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1404
|
-
#, python-format
|
|
1405
1336
|
msgid "Partner cumul aged balance"
|
|
1406
1337
|
msgstr ""
|
|
1407
1338
|
|
|
@@ -1411,7 +1342,6 @@ msgstr ""
|
|
|
1411
1342
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1412
1343
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1413
1344
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1414
|
-
#, python-format
|
|
1415
1345
|
msgid "Partner ending balance"
|
|
1416
1346
|
msgstr "Sold final al partenerului"
|
|
1417
1347
|
|
|
@@ -1442,7 +1372,6 @@ msgstr "Procente"
|
|
|
1442
1372
|
#. odoo-python
|
|
1443
1373
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1444
1374
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1445
|
-
#, python-format
|
|
1446
1375
|
msgid "Period balance"
|
|
1447
1376
|
msgstr ""
|
|
1448
1377
|
|
|
@@ -1454,7 +1383,6 @@ msgstr "Perioade"
|
|
|
1454
1383
|
#. module: account_financial_report
|
|
1455
1384
|
#. odoo-python
|
|
1456
1385
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1457
|
-
#, python-format
|
|
1458
1386
|
msgid "Posted"
|
|
1459
1387
|
msgstr "Postat"
|
|
1460
1388
|
|
|
@@ -1462,7 +1390,6 @@ msgstr "Postat"
|
|
|
1462
1390
|
#. odoo-python
|
|
1463
1391
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1464
1392
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1465
|
-
#, python-format
|
|
1466
1393
|
msgid "Rec."
|
|
1467
1394
|
msgstr ""
|
|
1468
1395
|
|
|
@@ -1496,7 +1423,6 @@ msgstr "Referin????"
|
|
|
1496
1423
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1497
1424
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1498
1425
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1499
|
-
#, python-format
|
|
1500
1426
|
msgid "Ref - Label"
|
|
1501
1427
|
msgstr ""
|
|
1502
1428
|
|
|
@@ -1512,7 +1438,6 @@ msgstr "Raporta??i ac??iunea"
|
|
|
1512
1438
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1513
1439
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1514
1440
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1515
|
-
#, python-format
|
|
1516
1441
|
msgid "Residual"
|
|
1517
1442
|
msgstr "Rezidual"
|
|
1518
1443
|
|
|
@@ -1520,7 +1445,6 @@ msgstr "Rezidual"
|
|
|
1520
1445
|
#. odoo-python
|
|
1521
1446
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1522
1447
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1523
|
-
#, python-format
|
|
1524
1448
|
msgid "Sequence"
|
|
1525
1449
|
msgstr "Secven????"
|
|
1526
1450
|
|
|
@@ -1532,7 +1456,6 @@ msgstr "Secven????"
|
|
|
1532
1456
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1533
1457
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1534
1458
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1535
|
-
#, python-format
|
|
1536
1459
|
msgid "Show"
|
|
1537
1460
|
msgstr "Afi??are"
|
|
1538
1461
|
|
|
@@ -1565,7 +1488,6 @@ msgstr "Afi??a??i detaliile partenerului"
|
|
|
1565
1488
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1566
1489
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1567
1490
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1568
|
-
#, python-format
|
|
1569
1491
|
msgid "Show foreign currency"
|
|
1570
1492
|
msgstr "Afi??a??i moned?? str??in??"
|
|
1571
1493
|
|
|
@@ -1600,7 +1522,6 @@ msgstr "Contul de pornire ??ntr-un interval"
|
|
|
1600
1522
|
#. odoo-python
|
|
1601
1523
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1602
1524
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1603
|
-
#, python-format
|
|
1604
1525
|
msgid "TOTAL"
|
|
1605
1526
|
msgstr ""
|
|
1606
1527
|
|
|
@@ -1629,7 +1550,6 @@ msgstr "Mi??c??ri ??int??"
|
|
|
1629
1550
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1630
1551
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1631
1552
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1632
|
-
#, python-format
|
|
1633
1553
|
msgid "Target moves filter"
|
|
1634
1554
|
msgstr ""
|
|
1635
1555
|
|
|
@@ -1637,7 +1557,6 @@ msgstr ""
|
|
|
1637
1557
|
#. odoo-python
|
|
1638
1558
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1639
1559
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1640
|
-
#, python-format
|
|
1641
1560
|
msgid "Tax"
|
|
1642
1561
|
msgstr "Tax??"
|
|
1643
1562
|
|
|
@@ -1650,21 +1569,18 @@ msgstr "Valoare tax??"
|
|
|
1650
1569
|
#. module: account_financial_report
|
|
1651
1570
|
#. odoo-python
|
|
1652
1571
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1653
|
-
#, python-format
|
|
1654
1572
|
msgid "Tax Balance"
|
|
1655
1573
|
msgstr "Sold fiscal"
|
|
1656
1574
|
|
|
1657
1575
|
#. module: account_financial_report
|
|
1658
1576
|
#. odoo-python
|
|
1659
1577
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1660
|
-
#, python-format
|
|
1661
1578
|
msgid "Tax Credit"
|
|
1662
1579
|
msgstr "Credit fiscal"
|
|
1663
1580
|
|
|
1664
1581
|
#. module: account_financial_report
|
|
1665
1582
|
#. odoo-python
|
|
1666
1583
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1667
|
-
#, python-format
|
|
1668
1584
|
msgid "Tax Debit"
|
|
1669
1585
|
msgstr "Debit fiscal"
|
|
1670
1586
|
|
|
@@ -1672,14 +1588,12 @@ msgstr "Debit fiscal"
|
|
|
1672
1588
|
#. odoo-python
|
|
1673
1589
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1674
1590
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1675
|
-
#, python-format
|
|
1676
1591
|
msgid "Tax Groups"
|
|
1677
1592
|
msgstr "Grupuri fiscale"
|
|
1678
1593
|
|
|
1679
1594
|
#. module: account_financial_report
|
|
1680
1595
|
#. odoo-python
|
|
1681
1596
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1682
|
-
#, python-format
|
|
1683
1597
|
msgid "Tax Initial balance"
|
|
1684
1598
|
msgstr ""
|
|
1685
1599
|
|
|
@@ -1687,7 +1601,6 @@ msgstr ""
|
|
|
1687
1601
|
#. odoo-python
|
|
1688
1602
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1689
1603
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1690
|
-
#, python-format
|
|
1691
1604
|
msgid "Tax Tags"
|
|
1692
1605
|
msgstr "Etichete fiscale"
|
|
1693
1606
|
|
|
@@ -1695,7 +1608,6 @@ msgstr "Etichete fiscale"
|
|
|
1695
1608
|
#. odoo-python
|
|
1696
1609
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1697
1610
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1698
|
-
#, python-format
|
|
1699
1611
|
msgid "Tax ending balance"
|
|
1700
1612
|
msgstr ""
|
|
1701
1613
|
|
|
@@ -1711,14 +1623,12 @@ msgstr ""
|
|
|
1711
1623
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1712
1624
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1713
1625
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1714
|
-
#, python-format
|
|
1715
1626
|
msgid "Taxes"
|
|
1716
1627
|
msgstr "Taxe"
|
|
1717
1628
|
|
|
1718
1629
|
#. module: account_financial_report
|
|
1719
1630
|
#. odoo-python
|
|
1720
1631
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1721
|
-
#, python-format
|
|
1722
1632
|
msgid ""
|
|
1723
1633
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1724
1634
|
"the same."
|
|
@@ -1727,7 +1637,6 @@ msgstr ""
|
|
|
1727
1637
|
#. module: account_financial_report
|
|
1728
1638
|
#. odoo-python
|
|
1729
1639
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1730
|
-
#, python-format
|
|
1731
1640
|
msgid ""
|
|
1732
1641
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1733
1642
|
"same."
|
|
@@ -1736,7 +1645,6 @@ msgstr ""
|
|
|
1736
1645
|
#. module: account_financial_report
|
|
1737
1646
|
#. odoo-python
|
|
1738
1647
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1739
|
-
#, python-format
|
|
1740
1648
|
msgid ""
|
|
1741
1649
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1742
1650
|
msgstr ""
|
|
@@ -1744,7 +1652,6 @@ msgstr ""
|
|
|
1744
1652
|
#. module: account_financial_report
|
|
1745
1653
|
#. odoo-python
|
|
1746
1654
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1747
|
-
#, python-format
|
|
1748
1655
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1749
1656
|
msgstr "Nivelul de ierarhie de filtrat trebuie s?? fie mai mare de 0."
|
|
1750
1657
|
|
|
@@ -1769,7 +1676,6 @@ msgstr "La:"
|
|
|
1769
1676
|
#. odoo-python
|
|
1770
1677
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1771
1678
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1772
|
-
#, python-format
|
|
1773
1679
|
msgid "Total"
|
|
1774
1680
|
msgstr "Total"
|
|
1775
1681
|
|
|
@@ -1780,7 +1686,6 @@ msgstr "Total"
|
|
|
1780
1686
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1781
1687
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1782
1688
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1783
|
-
#, python-format
|
|
1784
1689
|
msgid "Trial Balance"
|
|
1785
1690
|
msgstr "Balan???? verificare"
|
|
1786
1691
|
|
|
@@ -1873,7 +1778,6 @@ msgstr "Raport TVA XLSX"
|
|
|
1873
1778
|
#. module: account_financial_report
|
|
1874
1779
|
#. odoo-python
|
|
1875
1780
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1876
|
-
#, python-format
|
|
1877
1781
|
msgid "Vat Report"
|
|
1878
1782
|
msgstr "Raport TVA"
|
|
1879
1783
|
|
|
@@ -1915,7 +1819,6 @@ msgstr "Cu numele contului"
|
|
|
1915
1819
|
#. module: account_financial_report
|
|
1916
1820
|
#. odoo-python
|
|
1917
1821
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1918
|
-
#, python-format
|
|
1919
1822
|
msgid "Without analytic account"
|
|
1920
1823
|
msgstr ""
|
|
1921
1824
|
|
|
@@ -1925,14 +1828,12 @@ msgstr ""
|
|
|
1925
1828
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1926
1829
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1927
1830
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1928
|
-
#, python-format
|
|
1929
1831
|
msgid "Yes"
|
|
1930
1832
|
msgstr "Da"
|
|
1931
1833
|
|
|
1932
1834
|
#. module: account_financial_report
|
|
1933
1835
|
#. odoo-python
|
|
1934
1836
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1935
|
-
#, python-format
|
|
1936
1837
|
msgid "future"
|
|
1937
1838
|
msgstr "viitor"
|
|
1938
1839
|
|