odoo-addon-account-financial-report 17.0.1.6.1.1__py3-none-any.whl → 18.0.1.0.0.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of odoo-addon-account-financial-report might be problematic. Click here for more details.
- odoo/addons/account_financial_report/README.rst +15 -8
- odoo/addons/account_financial_report/__manifest__.py +3 -2
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +1 -124
- odoo/addons/account_financial_report/i18n/ar.po +3 -100
- odoo/addons/account_financial_report/i18n/ca.po +1 -100
- odoo/addons/account_financial_report/i18n/de.po +3 -100
- odoo/addons/account_financial_report/i18n/es.po +0 -100
- odoo/addons/account_financial_report/i18n/es_AR.po +0 -100
- odoo/addons/account_financial_report/i18n/es_MX.po +0 -100
- odoo/addons/account_financial_report/i18n/fr.po +0 -100
- odoo/addons/account_financial_report/i18n/fr_CH.po +1 -100
- odoo/addons/account_financial_report/i18n/fr_FR.po +0 -100
- odoo/addons/account_financial_report/i18n/hr.po +0 -100
- odoo/addons/account_financial_report/i18n/hr_HR.po +3 -100
- odoo/addons/account_financial_report/i18n/it.po +3 -107
- odoo/addons/account_financial_report/i18n/ja.po +3 -100
- odoo/addons/account_financial_report/i18n/nl.po +1 -100
- odoo/addons/account_financial_report/i18n/nl_NL.po +2 -100
- odoo/addons/account_financial_report/i18n/pt.po +0 -100
- odoo/addons/account_financial_report/i18n/pt_BR.po +0 -100
- odoo/addons/account_financial_report/i18n/ro.po +1 -100
- odoo/addons/account_financial_report/i18n/sv.po +0 -100
- odoo/addons/account_financial_report/i18n/tr.po +0 -100
- odoo/addons/account_financial_report/models/account.py +1 -1
- odoo/addons/account_financial_report/models/account_age_report_configuration.py +6 -4
- odoo/addons/account_financial_report/models/account_group.py +3 -3
- odoo/addons/account_financial_report/readme/CONFIGURE.md +1 -1
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.md +2 -1
- odoo/addons/account_financial_report/readme/CREDITS.md +1 -0
- odoo/addons/account_financial_report/report/__init__.py +3 -3
- odoo/addons/account_financial_report/report/abstract_report.py +3 -1
- odoo/addons/account_financial_report/report/abstract_report_xlsx.py +5 -5
- odoo/addons/account_financial_report/report/aged_partner_balance.py +16 -20
- odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +30 -30
- odoo/addons/account_financial_report/report/general_ledger.py +26 -14
- odoo/addons/account_financial_report/report/general_ledger_xlsx.py +3 -3
- odoo/addons/account_financial_report/report/journal_ledger.py +9 -9
- odoo/addons/account_financial_report/report/journal_ledger_xlsx.py +1 -1
- odoo/addons/account_financial_report/report/open_items.py +1 -1
- odoo/addons/account_financial_report/report/open_items_xlsx.py +1 -1
- odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +29 -27
- odoo/addons/account_financial_report/report/templates/general_ledger.xml +2 -2
- odoo/addons/account_financial_report/report/templates/journal_ledger.xml +58 -66
- odoo/addons/account_financial_report/report/templates/layouts.xml +3 -9
- odoo/addons/account_financial_report/report/templates/trial_balance.xml +3 -5
- odoo/addons/account_financial_report/report/trial_balance.py +27 -30
- odoo/addons/account_financial_report/report/trial_balance_xlsx.py +1 -1
- odoo/addons/account_financial_report/report/vat_report.py +8 -4
- odoo/addons/account_financial_report/report/vat_report_xlsx.py +1 -1
- odoo/addons/account_financial_report/static/description/index.html +15 -8
- odoo/addons/account_financial_report/static/src/js/report.esm.js +1 -2
- odoo/addons/account_financial_report/static/src/js/report_action.esm.js +0 -1
- odoo/addons/account_financial_report/static/src/{css/report.css → scss/report.scss} +74 -42
- odoo/addons/account_financial_report/static/src/scss/report_html.scss +10 -0
- odoo/addons/account_financial_report/tests/__init__.py +1 -1
- odoo/addons/account_financial_report/tests/test_general_ledger.py +3 -3
- odoo/addons/account_financial_report/tests/test_journal_ledger.py +3 -4
- odoo/addons/account_financial_report/tests/test_open_items.py +2 -2
- odoo/addons/account_financial_report/tests/test_trial_balance.py +15 -8
- odoo/addons/account_financial_report/tests/test_vat_report.py +4 -5
- odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +6 -6
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +6 -4
- odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +5 -5
- odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py +8 -4
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/open_items_wizard.py +1 -1
- odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/trial_balance_wizard.py +10 -8
- odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/vat_report_wizard.py +2 -2
- odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml +14 -14
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/METADATA +20 -13
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/RECORD +76 -75
- odoo/addons/account_financial_report/static/src/css/report_html.css +0 -7
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/top_level.txt +0 -0
|
@@ -104,7 +104,6 @@ msgstr "Relatório Financeiro Abstrato XLSX"
|
|
|
104
104
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
105
105
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
106
106
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
107
|
-
#, python-format
|
|
108
107
|
msgid "Account"
|
|
109
108
|
msgstr "Conta"
|
|
110
109
|
|
|
@@ -137,7 +136,6 @@ msgstr "Grupo de Contas"
|
|
|
137
136
|
#. module: account_financial_report
|
|
138
137
|
#. odoo-python
|
|
139
138
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
140
|
-
#, python-format
|
|
141
139
|
msgid "Account Name"
|
|
142
140
|
msgstr "Nome da Conta"
|
|
143
141
|
|
|
@@ -145,7 +143,6 @@ msgstr "Nome da Conta"
|
|
|
145
143
|
#. odoo-python
|
|
146
144
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
147
145
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
148
|
-
#, python-format
|
|
149
146
|
msgid "Account at 0 filter"
|
|
150
147
|
msgstr "Conta para filtro 0"
|
|
151
148
|
|
|
@@ -155,7 +152,6 @@ msgstr "Conta para filtro 0"
|
|
|
155
152
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
156
153
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
157
154
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
158
|
-
#, python-format
|
|
159
155
|
msgid "Account balance at 0 filter"
|
|
160
156
|
msgstr "Filtro de conta com saldo 0"
|
|
161
157
|
|
|
@@ -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 "Antiguidade ≤ 120 d."
|
|
197
192
|
|
|
@@ -207,7 +202,6 @@ msgstr ""
|
|
|
207
202
|
#. module: account_financial_report
|
|
208
203
|
#. odoo-python
|
|
209
204
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
210
|
-
#, python-format
|
|
211
205
|
msgid "Age ≤ 30 d."
|
|
212
206
|
msgstr "Antiguidade ≤ 30 d."
|
|
213
207
|
|
|
@@ -223,7 +217,6 @@ msgstr ""
|
|
|
223
217
|
#. module: account_financial_report
|
|
224
218
|
#. odoo-python
|
|
225
219
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
226
|
-
#, python-format
|
|
227
220
|
msgid "Age ≤ 60 d."
|
|
228
221
|
msgstr "Antiguidade ≤ 60 d."
|
|
229
222
|
|
|
@@ -239,7 +232,6 @@ msgstr ""
|
|
|
239
232
|
#. module: account_financial_report
|
|
240
233
|
#. odoo-python
|
|
241
234
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
242
|
-
#, python-format
|
|
243
235
|
msgid "Age ≤ 90 d."
|
|
244
236
|
msgstr "Antiguidade ≤ 90 d."
|
|
245
237
|
|
|
@@ -250,7 +242,6 @@ msgstr "Antiguidade ≤ 90 d."
|
|
|
250
242
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
251
243
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
252
244
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
253
|
-
#, python-format
|
|
254
245
|
msgid "Aged Partner Balance"
|
|
255
246
|
msgstr "Antiguidade de Saldo de Parceiro"
|
|
256
247
|
|
|
@@ -282,7 +273,6 @@ msgstr "Antiguidade de Saldo de Parceiro XLSX"
|
|
|
282
273
|
#. module: account_financial_report
|
|
283
274
|
#. odoo-python
|
|
284
275
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
285
|
-
#, python-format
|
|
286
276
|
msgid "All"
|
|
287
277
|
msgstr "Todos"
|
|
288
278
|
|
|
@@ -314,7 +304,6 @@ msgstr "Todos os Lançamentos Publicados"
|
|
|
314
304
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
315
305
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
316
306
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
317
|
-
#, python-format
|
|
318
307
|
msgid "All entries"
|
|
319
308
|
msgstr "Todos os movimentos"
|
|
320
309
|
|
|
@@ -328,7 +317,6 @@ msgstr "Todos os movimentos"
|
|
|
328
317
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
329
318
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
330
319
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
331
|
-
#, python-format
|
|
332
320
|
msgid "All posted entries"
|
|
333
321
|
msgstr "Todos os movimentos publicados"
|
|
334
322
|
|
|
@@ -340,7 +328,6 @@ msgstr "Mont. Moeda"
|
|
|
340
328
|
#. module: account_financial_report
|
|
341
329
|
#. odoo-python
|
|
342
330
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
343
|
-
#, python-format
|
|
344
331
|
msgid "Amount Currency"
|
|
345
332
|
msgstr "Montante em Moeda"
|
|
346
333
|
|
|
@@ -348,7 +335,6 @@ msgstr "Montante em Moeda"
|
|
|
348
335
|
#. odoo-python
|
|
349
336
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
350
337
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
351
|
-
#, python-format
|
|
352
338
|
msgid "Amount cur."
|
|
353
339
|
msgstr "Montante em moeda."
|
|
354
340
|
|
|
@@ -362,7 +348,6 @@ msgstr "Conta Analítica"
|
|
|
362
348
|
#. odoo-python
|
|
363
349
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
364
350
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
365
|
-
#, python-format
|
|
366
351
|
msgid "Analytic Distribution"
|
|
367
352
|
msgstr "Distribuição Analítica"
|
|
368
353
|
|
|
@@ -381,21 +366,18 @@ msgstr "Montante Base"
|
|
|
381
366
|
#. module: account_financial_report
|
|
382
367
|
#. odoo-python
|
|
383
368
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
384
|
-
#, python-format
|
|
385
369
|
msgid "Base Balance"
|
|
386
370
|
msgstr "Saldo da base"
|
|
387
371
|
|
|
388
372
|
#. module: account_financial_report
|
|
389
373
|
#. odoo-python
|
|
390
374
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
391
|
-
#, python-format
|
|
392
375
|
msgid "Base Credit"
|
|
393
376
|
msgstr "Crédito base"
|
|
394
377
|
|
|
395
378
|
#. module: account_financial_report
|
|
396
379
|
#. odoo-python
|
|
397
380
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
398
|
-
#, python-format
|
|
399
381
|
msgid "Base Debit"
|
|
400
382
|
msgstr "Débito Base"
|
|
401
383
|
|
|
@@ -408,7 +390,6 @@ msgstr "Baseado Em"
|
|
|
408
390
|
#. module: account_financial_report
|
|
409
391
|
#. odoo-python
|
|
410
392
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
411
|
-
#, python-format
|
|
412
393
|
msgid "Based on"
|
|
413
394
|
msgstr "Baseado em"
|
|
414
395
|
|
|
@@ -426,7 +407,6 @@ msgstr "Cancelar"
|
|
|
426
407
|
#. odoo-python
|
|
427
408
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
428
409
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
429
|
-
#, python-format
|
|
430
410
|
msgid "Centralize filter"
|
|
431
411
|
msgstr "Filtro de Centralização"
|
|
432
412
|
|
|
@@ -446,7 +426,6 @@ msgstr "Grupos Descendentes"
|
|
|
446
426
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
447
427
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
448
428
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
449
|
-
#, python-format
|
|
450
429
|
msgid "Code"
|
|
451
430
|
msgstr "Código"
|
|
452
431
|
|
|
@@ -461,7 +440,6 @@ msgstr "Código"
|
|
|
461
440
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
462
441
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
463
442
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
464
|
-
#, python-format
|
|
465
443
|
msgid "Company"
|
|
466
444
|
msgstr "Empresa"
|
|
467
445
|
|
|
@@ -514,7 +492,6 @@ msgstr "Criado em"
|
|
|
514
492
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
515
493
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
516
494
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
517
|
-
#, python-format
|
|
518
495
|
msgid "Credit"
|
|
519
496
|
msgstr "Crédito"
|
|
520
497
|
|
|
@@ -522,7 +499,6 @@ msgstr "Crédito"
|
|
|
522
499
|
#. odoo-python
|
|
523
500
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
524
501
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
525
|
-
#, python-format
|
|
526
502
|
msgid "Cumul cur."
|
|
527
503
|
msgstr "Cumul moeda"
|
|
528
504
|
|
|
@@ -530,7 +506,6 @@ msgstr "Cumul moeda"
|
|
|
530
506
|
#. odoo-python
|
|
531
507
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
532
508
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
533
|
-
#, python-format
|
|
534
509
|
msgid "Cumul. Bal."
|
|
535
510
|
msgstr "Saldo Acumulado."
|
|
536
511
|
|
|
@@ -539,7 +514,6 @@ msgstr "Saldo Acumulado."
|
|
|
539
514
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
540
515
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
541
516
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
542
|
-
#, python-format
|
|
543
517
|
msgid "Cur."
|
|
544
518
|
msgstr "Divisa"
|
|
545
519
|
|
|
@@ -547,7 +521,6 @@ msgstr "Divisa"
|
|
|
547
521
|
#. odoo-python
|
|
548
522
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
549
523
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
550
|
-
#, python-format
|
|
551
524
|
msgid "Cur. Original"
|
|
552
525
|
msgstr "Divisa Original"
|
|
553
526
|
|
|
@@ -555,14 +528,12 @@ msgstr "Divisa Original"
|
|
|
555
528
|
#. odoo-python
|
|
556
529
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
557
530
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
558
|
-
#, python-format
|
|
559
531
|
msgid "Cur. Residual"
|
|
560
532
|
msgstr "Divisa Residual"
|
|
561
533
|
|
|
562
534
|
#. module: account_financial_report
|
|
563
535
|
#. odoo-python
|
|
564
536
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
565
|
-
#, python-format
|
|
566
537
|
msgid "Currency"
|
|
567
538
|
msgstr "Divisa"
|
|
568
539
|
|
|
@@ -570,7 +541,6 @@ msgstr "Divisa"
|
|
|
570
541
|
#. odoo-python
|
|
571
542
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
572
543
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
573
|
-
#, python-format
|
|
574
544
|
msgid "Current"
|
|
575
545
|
msgstr "Corrente"
|
|
576
546
|
|
|
@@ -585,7 +555,6 @@ msgstr "Corrente"
|
|
|
585
555
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
586
556
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
587
557
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
588
|
-
#, python-format
|
|
589
558
|
msgid "Date"
|
|
590
559
|
msgstr "Data"
|
|
591
560
|
|
|
@@ -617,14 +586,12 @@ msgstr "Data até"
|
|
|
617
586
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
618
587
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
619
588
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
620
|
-
#, python-format
|
|
621
589
|
msgid "Date at filter"
|
|
622
590
|
msgstr "Data no filtro"
|
|
623
591
|
|
|
624
592
|
#. module: account_financial_report
|
|
625
593
|
#. odoo-python
|
|
626
594
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
627
|
-
#, python-format
|
|
628
595
|
msgid "Date from"
|
|
629
596
|
msgstr "Data de"
|
|
630
597
|
|
|
@@ -643,14 +610,12 @@ msgstr "Período"
|
|
|
643
610
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
644
611
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
645
612
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
646
|
-
#, python-format
|
|
647
613
|
msgid "Date range filter"
|
|
648
614
|
msgstr "Filtro do período"
|
|
649
615
|
|
|
650
616
|
#. module: account_financial_report
|
|
651
617
|
#. odoo-python
|
|
652
618
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
653
|
-
#, python-format
|
|
654
619
|
msgid "Date to"
|
|
655
620
|
msgstr "Data até"
|
|
656
621
|
|
|
@@ -664,7 +629,6 @@ msgstr "Data até"
|
|
|
664
629
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
665
630
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
666
631
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
667
|
-
#, python-format
|
|
668
632
|
msgid "Debit"
|
|
669
633
|
msgstr "Débito"
|
|
670
634
|
|
|
@@ -673,7 +637,6 @@ msgstr "Débito"
|
|
|
673
637
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
674
638
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
675
639
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
676
|
-
#, python-format
|
|
677
640
|
msgid "Description"
|
|
678
641
|
msgstr "Descrição"
|
|
679
642
|
|
|
@@ -730,7 +693,6 @@ msgstr "Data de Vencimento"
|
|
|
730
693
|
#. odoo-python
|
|
731
694
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
732
695
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
733
|
-
#, python-format
|
|
734
696
|
msgid "Due date"
|
|
735
697
|
msgstr "Data de vencimento"
|
|
736
698
|
|
|
@@ -766,7 +728,6 @@ msgstr "Conta final no intervalo"
|
|
|
766
728
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
767
729
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
768
730
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
769
|
-
#, python-format
|
|
770
731
|
msgid "Ending balance"
|
|
771
732
|
msgstr "Saldo Final"
|
|
772
733
|
|
|
@@ -780,7 +741,6 @@ msgstr "Saldo final na moeda"
|
|
|
780
741
|
#. module: account_financial_report
|
|
781
742
|
#. odoo-python
|
|
782
743
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
783
|
-
#, python-format
|
|
784
744
|
msgid "Entries sorted by"
|
|
785
745
|
msgstr "Movimentos ordenados por"
|
|
786
746
|
|
|
@@ -794,21 +754,18 @@ msgstr "Movimentos ordenados por"
|
|
|
794
754
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
795
755
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
796
756
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
797
|
-
#, python-format
|
|
798
757
|
msgid "Entry"
|
|
799
758
|
msgstr "Movimento"
|
|
800
759
|
|
|
801
760
|
#. module: account_financial_report
|
|
802
761
|
#. odoo-python
|
|
803
762
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
804
|
-
#, python-format
|
|
805
763
|
msgid "Entry number"
|
|
806
764
|
msgstr "Número do movimento"
|
|
807
765
|
|
|
808
766
|
#. module: account_financial_report
|
|
809
767
|
#. odoo-javascript
|
|
810
768
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
811
|
-
#, python-format
|
|
812
769
|
msgid "Export"
|
|
813
770
|
msgstr "Exportar"
|
|
814
771
|
|
|
@@ -889,7 +846,6 @@ msgstr "De:"
|
|
|
889
846
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
890
847
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
891
848
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
892
|
-
#, python-format
|
|
893
849
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
894
850
|
msgstr "De: %(date_from)s A: %(date_to)s"
|
|
895
851
|
|
|
@@ -917,7 +873,6 @@ msgstr "Data Inicial do Ano Fiscal"
|
|
|
917
873
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
918
874
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
919
875
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
920
|
-
#, python-format
|
|
921
876
|
msgid "General Ledger"
|
|
922
877
|
msgstr "Razão"
|
|
923
878
|
|
|
@@ -982,7 +937,6 @@ msgstr ""
|
|
|
982
937
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
983
938
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
984
939
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
985
|
-
#, python-format
|
|
986
940
|
msgid "Hide"
|
|
987
941
|
msgstr "Esconder"
|
|
988
942
|
|
|
@@ -1031,7 +985,6 @@ msgstr "Limite Inferior"
|
|
|
1031
985
|
#. module: account_financial_report
|
|
1032
986
|
#. odoo-python
|
|
1033
987
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1034
|
-
#, python-format
|
|
1035
988
|
msgid "Inferior Limit must be greather than zero"
|
|
1036
989
|
msgstr "O Limite Inferior deve ser maior do que zero"
|
|
1037
990
|
|
|
@@ -1056,7 +1009,6 @@ msgstr ""
|
|
|
1056
1009
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1057
1010
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1058
1011
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1059
|
-
#, python-format
|
|
1060
1012
|
msgid "Initial balance"
|
|
1061
1013
|
msgstr "Saldo Inicial"
|
|
1062
1014
|
|
|
@@ -1076,7 +1028,6 @@ msgstr "Configuração de intervalos"
|
|
|
1076
1028
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1077
1029
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1078
1030
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1079
|
-
#, python-format
|
|
1080
1031
|
msgid "Journal"
|
|
1081
1032
|
msgstr "Diário"
|
|
1082
1033
|
|
|
@@ -1096,7 +1047,6 @@ msgstr "Domínio de Itens do Diário"
|
|
|
1096
1047
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1097
1048
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1098
1049
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1099
|
-
#, python-format
|
|
1100
1050
|
msgid "Journal Ledger"
|
|
1101
1051
|
msgstr "Diário Razão"
|
|
1102
1052
|
|
|
@@ -1130,7 +1080,6 @@ msgstr "Relatório do Razão XLSX"
|
|
|
1130
1080
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1131
1081
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1132
1082
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1133
|
-
#, python-format
|
|
1134
1083
|
msgid "Journals"
|
|
1135
1084
|
msgstr "Diários"
|
|
1136
1085
|
|
|
@@ -1167,7 +1116,6 @@ msgstr "Nível"
|
|
|
1167
1116
|
#. module: account_financial_report
|
|
1168
1117
|
#. odoo-python
|
|
1169
1118
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1170
|
-
#, python-format
|
|
1171
1119
|
msgid "Level %s"
|
|
1172
1120
|
msgstr "Nível %s"
|
|
1173
1121
|
|
|
@@ -1176,7 +1124,6 @@ msgstr "Nível %s"
|
|
|
1176
1124
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1177
1125
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1178
1126
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1179
|
-
#, python-format
|
|
1180
1127
|
msgid "Limit hierarchy levels"
|
|
1181
1128
|
msgstr "Limite dos níveis hierárquicos"
|
|
1182
1129
|
|
|
@@ -1190,7 +1137,6 @@ msgstr "Linha"
|
|
|
1190
1137
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1191
1138
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1192
1139
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1193
|
-
#, python-format
|
|
1194
1140
|
msgid "Missing Partner"
|
|
1195
1141
|
msgstr "Parceiro em Falta"
|
|
1196
1142
|
|
|
@@ -1220,7 +1166,6 @@ msgstr "Movimentos"
|
|
|
1220
1166
|
#. module: account_financial_report
|
|
1221
1167
|
#. odoo-python
|
|
1222
1168
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1223
|
-
#, python-format
|
|
1224
1169
|
msgid "Must complete Configuration Lines"
|
|
1225
1170
|
msgstr "Deve completar as Linhas de Configuração"
|
|
1226
1171
|
|
|
@@ -1233,15 +1178,11 @@ msgstr "Deve completar as Linhas de Configuração"
|
|
|
1233
1178
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1234
1179
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1235
1180
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1236
|
-
#, python-format
|
|
1237
1181
|
msgid "Name"
|
|
1238
1182
|
msgstr "Nome"
|
|
1239
1183
|
|
|
1240
1184
|
#. module: account_financial_report
|
|
1241
|
-
#. odoo-python
|
|
1242
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1243
1185
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1244
|
-
#, python-format
|
|
1245
1186
|
msgid "Name must be unique per report configuration"
|
|
1246
1187
|
msgstr "O nome deve ser único por configuração de relatório"
|
|
1247
1188
|
|
|
@@ -1249,7 +1190,6 @@ msgstr "O nome deve ser único por configuração de relatório"
|
|
|
1249
1190
|
#. odoo-python
|
|
1250
1191
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1251
1192
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1252
|
-
#, python-format
|
|
1253
1193
|
msgid "Net"
|
|
1254
1194
|
msgstr "Líquido"
|
|
1255
1195
|
|
|
@@ -1259,14 +1199,12 @@ msgstr "Líquido"
|
|
|
1259
1199
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1260
1200
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1261
1201
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1262
|
-
#, python-format
|
|
1263
1202
|
msgid "No"
|
|
1264
1203
|
msgstr "Não"
|
|
1265
1204
|
|
|
1266
1205
|
#. module: account_financial_report
|
|
1267
1206
|
#. odoo-python
|
|
1268
1207
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1269
|
-
#, python-format
|
|
1270
1208
|
msgid "No group"
|
|
1271
1209
|
msgstr "Sem grupo"
|
|
1272
1210
|
|
|
@@ -1274,7 +1212,6 @@ msgstr "Sem grupo"
|
|
|
1274
1212
|
#. odoo-python
|
|
1275
1213
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1276
1214
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1277
|
-
#, python-format
|
|
1278
1215
|
msgid "No limit"
|
|
1279
1216
|
msgstr "Sem limite"
|
|
1280
1217
|
|
|
@@ -1286,7 +1223,6 @@ msgstr "Nenhum"
|
|
|
1286
1223
|
#. module: account_financial_report
|
|
1287
1224
|
#. odoo-python
|
|
1288
1225
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1289
|
-
#, python-format
|
|
1290
1226
|
msgid "Not Posted"
|
|
1291
1227
|
msgstr "Não Publicado"
|
|
1292
1228
|
|
|
@@ -1309,7 +1245,6 @@ msgstr "Relatórios de contabilidade OCA"
|
|
|
1309
1245
|
#. odoo-python
|
|
1310
1246
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1311
1247
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1312
|
-
#, python-format
|
|
1313
1248
|
msgid "Older"
|
|
1314
1249
|
msgstr "Mais Antigo"
|
|
1315
1250
|
|
|
@@ -1326,7 +1261,6 @@ msgstr "Apenas Uma Conta de Lucros Não Distribuídos"
|
|
|
1326
1261
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1327
1262
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1328
1263
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1329
|
-
#, python-format
|
|
1330
1264
|
msgid "Open Items"
|
|
1331
1265
|
msgstr "Items em aberto"
|
|
1332
1266
|
|
|
@@ -1369,7 +1303,6 @@ msgstr "Opções"
|
|
|
1369
1303
|
#. odoo-python
|
|
1370
1304
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1371
1305
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1372
|
-
#, python-format
|
|
1373
1306
|
msgid "Original"
|
|
1374
1307
|
msgstr "Original"
|
|
1375
1308
|
|
|
@@ -1386,7 +1319,6 @@ msgstr "Original"
|
|
|
1386
1319
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1387
1320
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1388
1321
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1389
|
-
#, python-format
|
|
1390
1322
|
msgid "Partner"
|
|
1391
1323
|
msgstr "Parceiro"
|
|
1392
1324
|
|
|
@@ -1402,14 +1334,12 @@ msgstr ""
|
|
|
1402
1334
|
#. module: account_financial_report
|
|
1403
1335
|
#. odoo-python
|
|
1404
1336
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1405
|
-
#, python-format
|
|
1406
1337
|
msgid "Partner Initial balance"
|
|
1407
1338
|
msgstr "Saldo inicial de Parceiro"
|
|
1408
1339
|
|
|
1409
1340
|
#. module: account_financial_report
|
|
1410
1341
|
#. odoo-python
|
|
1411
1342
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1412
|
-
#, python-format
|
|
1413
1343
|
msgid "Partner cumul aged balance"
|
|
1414
1344
|
msgstr "Antiguidade de saldo de parceiro acumulado"
|
|
1415
1345
|
|
|
@@ -1419,7 +1349,6 @@ msgstr "Antiguidade de saldo de parceiro acumulado"
|
|
|
1419
1349
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1420
1350
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1421
1351
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1422
|
-
#, python-format
|
|
1423
1352
|
msgid "Partner ending balance"
|
|
1424
1353
|
msgstr "Saldo final de parceiro"
|
|
1425
1354
|
|
|
@@ -1450,7 +1379,6 @@ msgstr "Percentagens"
|
|
|
1450
1379
|
#. odoo-python
|
|
1451
1380
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1452
1381
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1453
|
-
#, python-format
|
|
1454
1382
|
msgid "Period balance"
|
|
1455
1383
|
msgstr "Saldo do período"
|
|
1456
1384
|
|
|
@@ -1462,7 +1390,6 @@ msgstr "Períodos"
|
|
|
1462
1390
|
#. module: account_financial_report
|
|
1463
1391
|
#. odoo-python
|
|
1464
1392
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1465
|
-
#, python-format
|
|
1466
1393
|
msgid "Posted"
|
|
1467
1394
|
msgstr "Publicado"
|
|
1468
1395
|
|
|
@@ -1470,7 +1397,6 @@ msgstr "Publicado"
|
|
|
1470
1397
|
#. odoo-python
|
|
1471
1398
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1472
1399
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1473
|
-
#, python-format
|
|
1474
1400
|
msgid "Rec."
|
|
1475
1401
|
msgstr "Rec."
|
|
1476
1402
|
|
|
@@ -1506,7 +1432,6 @@ msgstr "Ref - Etiqueta"
|
|
|
1506
1432
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1507
1433
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1508
1434
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1509
|
-
#, python-format
|
|
1510
1435
|
msgid "Ref - Label"
|
|
1511
1436
|
msgstr "Ref - Rótulo"
|
|
1512
1437
|
|
|
@@ -1522,7 +1447,6 @@ msgstr "Ação de Relatório"
|
|
|
1522
1447
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1523
1448
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1524
1449
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1525
|
-
#, python-format
|
|
1526
1450
|
msgid "Residual"
|
|
1527
1451
|
msgstr "Residual"
|
|
1528
1452
|
|
|
@@ -1530,7 +1454,6 @@ msgstr "Residual"
|
|
|
1530
1454
|
#. odoo-python
|
|
1531
1455
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1532
1456
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1533
|
-
#, python-format
|
|
1534
1457
|
msgid "Sequence"
|
|
1535
1458
|
msgstr "Sequência"
|
|
1536
1459
|
|
|
@@ -1542,7 +1465,6 @@ msgstr "Sequência"
|
|
|
1542
1465
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1543
1466
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1544
1467
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1545
|
-
#, python-format
|
|
1546
1468
|
msgid "Show"
|
|
1547
1469
|
msgstr "Exibir"
|
|
1548
1470
|
|
|
@@ -1575,7 +1497,6 @@ msgstr "Exibir Detalhes de Parceiro"
|
|
|
1575
1497
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1576
1498
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1577
1499
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1578
|
-
#, python-format
|
|
1579
1500
|
msgid "Show foreign currency"
|
|
1580
1501
|
msgstr "Exibir divisa estrangeira"
|
|
1581
1502
|
|
|
@@ -1610,7 +1531,6 @@ msgstr "Conta inicial no intervalo"
|
|
|
1610
1531
|
#. odoo-python
|
|
1611
1532
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1612
1533
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1613
|
-
#, python-format
|
|
1614
1534
|
msgid "TOTAL"
|
|
1615
1535
|
msgstr ""
|
|
1616
1536
|
|
|
@@ -1639,7 +1559,6 @@ msgstr "Marcar Movimentos"
|
|
|
1639
1559
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1640
1560
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1641
1561
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1642
|
-
#, python-format
|
|
1643
1562
|
msgid "Target moves filter"
|
|
1644
1563
|
msgstr "Filtro de Movimentos Marcados"
|
|
1645
1564
|
|
|
@@ -1647,7 +1566,6 @@ msgstr "Filtro de Movimentos Marcados"
|
|
|
1647
1566
|
#. odoo-python
|
|
1648
1567
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1649
1568
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1650
|
-
#, python-format
|
|
1651
1569
|
msgid "Tax"
|
|
1652
1570
|
msgstr "Imposto"
|
|
1653
1571
|
|
|
@@ -1660,21 +1578,18 @@ msgstr "Montante do Imposto"
|
|
|
1660
1578
|
#. module: account_financial_report
|
|
1661
1579
|
#. odoo-python
|
|
1662
1580
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1663
|
-
#, python-format
|
|
1664
1581
|
msgid "Tax Balance"
|
|
1665
1582
|
msgstr "Saldo de Impostos"
|
|
1666
1583
|
|
|
1667
1584
|
#. module: account_financial_report
|
|
1668
1585
|
#. odoo-python
|
|
1669
1586
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1670
|
-
#, python-format
|
|
1671
1587
|
msgid "Tax Credit"
|
|
1672
1588
|
msgstr "Crédito de Imposto"
|
|
1673
1589
|
|
|
1674
1590
|
#. module: account_financial_report
|
|
1675
1591
|
#. odoo-python
|
|
1676
1592
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1677
|
-
#, python-format
|
|
1678
1593
|
msgid "Tax Debit"
|
|
1679
1594
|
msgstr "Débito de Impostos"
|
|
1680
1595
|
|
|
@@ -1682,14 +1597,12 @@ msgstr "Débito de Impostos"
|
|
|
1682
1597
|
#. odoo-python
|
|
1683
1598
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1684
1599
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1685
|
-
#, python-format
|
|
1686
1600
|
msgid "Tax Groups"
|
|
1687
1601
|
msgstr "Grupos de Impostos"
|
|
1688
1602
|
|
|
1689
1603
|
#. module: account_financial_report
|
|
1690
1604
|
#. odoo-python
|
|
1691
1605
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1692
|
-
#, python-format
|
|
1693
1606
|
msgid "Tax Initial balance"
|
|
1694
1607
|
msgstr "Saldo de Impostos inicial"
|
|
1695
1608
|
|
|
@@ -1697,7 +1610,6 @@ msgstr "Saldo de Impostos inicial"
|
|
|
1697
1610
|
#. odoo-python
|
|
1698
1611
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1699
1612
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1700
|
-
#, python-format
|
|
1701
1613
|
msgid "Tax Tags"
|
|
1702
1614
|
msgstr "Etiquetas de Imposto"
|
|
1703
1615
|
|
|
@@ -1705,7 +1617,6 @@ msgstr "Etiquetas de Imposto"
|
|
|
1705
1617
|
#. odoo-python
|
|
1706
1618
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1707
1619
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1708
|
-
#, python-format
|
|
1709
1620
|
msgid "Tax ending balance"
|
|
1710
1621
|
msgstr "Saldo de impostos final"
|
|
1711
1622
|
|
|
@@ -1721,14 +1632,12 @@ msgstr "Saldo de impostos inicial"
|
|
|
1721
1632
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1722
1633
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1723
1634
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1724
|
-
#, python-format
|
|
1725
1635
|
msgid "Taxes"
|
|
1726
1636
|
msgstr "Impostos"
|
|
1727
1637
|
|
|
1728
1638
|
#. module: account_financial_report
|
|
1729
1639
|
#. odoo-python
|
|
1730
1640
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1731
|
-
#, python-format
|
|
1732
1641
|
msgid ""
|
|
1733
1642
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1734
1643
|
"the same."
|
|
@@ -1738,7 +1647,6 @@ msgstr ""
|
|
|
1738
1647
|
#. module: account_financial_report
|
|
1739
1648
|
#. odoo-python
|
|
1740
1649
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1741
|
-
#, python-format
|
|
1742
1650
|
msgid ""
|
|
1743
1651
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1744
1652
|
"same."
|
|
@@ -1749,7 +1657,6 @@ msgstr ""
|
|
|
1749
1657
|
#. module: account_financial_report
|
|
1750
1658
|
#. odoo-python
|
|
1751
1659
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1752
|
-
#, python-format
|
|
1753
1660
|
msgid ""
|
|
1754
1661
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1755
1662
|
msgstr ""
|
|
@@ -1758,7 +1665,6 @@ msgstr ""
|
|
|
1758
1665
|
#. module: account_financial_report
|
|
1759
1666
|
#. odoo-python
|
|
1760
1667
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1761
|
-
#, python-format
|
|
1762
1668
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1763
1669
|
msgstr "O nível hierárquico a filtrar deve ser superior a 0."
|
|
1764
1670
|
|
|
@@ -1783,7 +1689,6 @@ msgstr "Para:"
|
|
|
1783
1689
|
#. odoo-python
|
|
1784
1690
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1785
1691
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1786
|
-
#, python-format
|
|
1787
1692
|
msgid "Total"
|
|
1788
1693
|
msgstr "Total"
|
|
1789
1694
|
|
|
@@ -1794,7 +1699,6 @@ msgstr "Total"
|
|
|
1794
1699
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1795
1700
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1796
1701
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1797
|
-
#, python-format
|
|
1798
1702
|
msgid "Trial Balance"
|
|
1799
1703
|
msgstr "Balancete"
|
|
1800
1704
|
|
|
@@ -1886,7 +1790,6 @@ msgstr "Relatório de IVA XLSX"
|
|
|
1886
1790
|
#. module: account_financial_report
|
|
1887
1791
|
#. odoo-python
|
|
1888
1792
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1889
|
-
#, python-format
|
|
1890
1793
|
msgid "Vat Report"
|
|
1891
1794
|
msgstr "Relatório de IVA"
|
|
1892
1795
|
|
|
@@ -1927,7 +1830,6 @@ msgstr "Com Nome de Conta"
|
|
|
1927
1830
|
#. module: account_financial_report
|
|
1928
1831
|
#. odoo-python
|
|
1929
1832
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1930
|
-
#, python-format
|
|
1931
1833
|
msgid "Without analytic account"
|
|
1932
1834
|
msgstr ""
|
|
1933
1835
|
|
|
@@ -1937,14 +1839,12 @@ msgstr ""
|
|
|
1937
1839
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1938
1840
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1939
1841
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1940
|
-
#, python-format
|
|
1941
1842
|
msgid "Yes"
|
|
1942
1843
|
msgstr "Sim"
|
|
1943
1844
|
|
|
1944
1845
|
#. module: account_financial_report
|
|
1945
1846
|
#. odoo-python
|
|
1946
1847
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1947
|
-
#, python-format
|
|
1948
1848
|
msgid "future"
|
|
1949
1849
|
msgstr "futuro"
|
|
1950
1850
|
|