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
|
@@ -101,7 +101,6 @@ msgstr "Relat??rio Financeiro abstrato da conta XLSX"
|
|
|
101
101
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
102
102
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
103
103
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
104
|
-
#, python-format
|
|
105
104
|
msgid "Account"
|
|
106
105
|
msgstr "Conta"
|
|
107
106
|
|
|
@@ -134,7 +133,6 @@ msgstr "Grupo de Contas"
|
|
|
134
133
|
#. module: account_financial_report
|
|
135
134
|
#. odoo-python
|
|
136
135
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
137
|
-
#, python-format
|
|
138
136
|
msgid "Account Name"
|
|
139
137
|
msgstr "Nome da Conta"
|
|
140
138
|
|
|
@@ -142,7 +140,6 @@ msgstr "Nome da Conta"
|
|
|
142
140
|
#. odoo-python
|
|
143
141
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
144
142
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
145
|
-
#, python-format
|
|
146
143
|
msgid "Account at 0 filter"
|
|
147
144
|
msgstr "Filtro de Conta Zerada"
|
|
148
145
|
|
|
@@ -152,7 +149,6 @@ msgstr "Filtro de Conta Zerada"
|
|
|
152
149
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
153
150
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
154
151
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
155
|
-
#, python-format
|
|
156
152
|
msgid "Account balance at 0 filter"
|
|
157
153
|
msgstr "Filtro de Saldo Zerado em Conta"
|
|
158
154
|
|
|
@@ -186,7 +182,6 @@ msgstr ""
|
|
|
186
182
|
#. module: account_financial_report
|
|
187
183
|
#. odoo-python
|
|
188
184
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
189
|
-
#, python-format
|
|
190
185
|
msgid "Age ≤ 120 d."
|
|
191
186
|
msgstr ""
|
|
192
187
|
|
|
@@ -200,7 +195,6 @@ msgstr ""
|
|
|
200
195
|
#. module: account_financial_report
|
|
201
196
|
#. odoo-python
|
|
202
197
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
203
|
-
#, python-format
|
|
204
198
|
msgid "Age ≤ 30 d."
|
|
205
199
|
msgstr ""
|
|
206
200
|
|
|
@@ -214,7 +208,6 @@ msgstr ""
|
|
|
214
208
|
#. module: account_financial_report
|
|
215
209
|
#. odoo-python
|
|
216
210
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
217
|
-
#, python-format
|
|
218
211
|
msgid "Age ≤ 60 d."
|
|
219
212
|
msgstr ""
|
|
220
213
|
|
|
@@ -228,7 +221,6 @@ msgstr ""
|
|
|
228
221
|
#. module: account_financial_report
|
|
229
222
|
#. odoo-python
|
|
230
223
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
231
|
-
#, python-format
|
|
232
224
|
msgid "Age ≤ 90 d."
|
|
233
225
|
msgstr ""
|
|
234
226
|
|
|
@@ -239,7 +231,6 @@ msgstr ""
|
|
|
239
231
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
240
232
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
241
233
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
242
|
-
#, python-format
|
|
243
234
|
msgid "Aged Partner Balance"
|
|
244
235
|
msgstr "Saldo Atrasado do Parceiro"
|
|
245
236
|
|
|
@@ -271,7 +262,6 @@ msgstr "Saldo Atrasado do Parceiro XLSX"
|
|
|
271
262
|
#. module: account_financial_report
|
|
272
263
|
#. odoo-python
|
|
273
264
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
274
|
-
#, python-format
|
|
275
265
|
msgid "All"
|
|
276
266
|
msgstr "Todos"
|
|
277
267
|
|
|
@@ -303,7 +293,6 @@ msgstr "Todas as Movimenta????es Lan??adas"
|
|
|
303
293
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
304
294
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
305
295
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
306
|
-
#, python-format
|
|
307
296
|
msgid "All entries"
|
|
308
297
|
msgstr "Todos os Lan??amentos"
|
|
309
298
|
|
|
@@ -317,7 +306,6 @@ msgstr "Todos os Lan??amentos"
|
|
|
317
306
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
318
307
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
319
308
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
320
|
-
#, python-format
|
|
321
309
|
msgid "All posted entries"
|
|
322
310
|
msgstr "Todas as Movimenta????es Lan??adas"
|
|
323
311
|
|
|
@@ -329,7 +317,6 @@ msgstr "Valor."
|
|
|
329
317
|
#. module: account_financial_report
|
|
330
318
|
#. odoo-python
|
|
331
319
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
332
|
-
#, python-format
|
|
333
320
|
msgid "Amount Currency"
|
|
334
321
|
msgstr "Valor na Moeda"
|
|
335
322
|
|
|
@@ -337,7 +324,6 @@ msgstr "Valor na Moeda"
|
|
|
337
324
|
#. odoo-python
|
|
338
325
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
339
326
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
340
|
-
#, python-format
|
|
341
327
|
msgid "Amount cur."
|
|
342
328
|
msgstr "Valor."
|
|
343
329
|
|
|
@@ -351,7 +337,6 @@ msgstr "Conta Anal??tica"
|
|
|
351
337
|
#. odoo-python
|
|
352
338
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
353
339
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
354
|
-
#, python-format
|
|
355
340
|
msgid "Analytic Distribution"
|
|
356
341
|
msgstr "Distribui????o Anal??tica"
|
|
357
342
|
|
|
@@ -370,21 +355,18 @@ msgstr "Valor Base"
|
|
|
370
355
|
#. module: account_financial_report
|
|
371
356
|
#. odoo-python
|
|
372
357
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
373
|
-
#, python-format
|
|
374
358
|
msgid "Base Balance"
|
|
375
359
|
msgstr "Saldo Base"
|
|
376
360
|
|
|
377
361
|
#. module: account_financial_report
|
|
378
362
|
#. odoo-python
|
|
379
363
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
380
|
-
#, python-format
|
|
381
364
|
msgid "Base Credit"
|
|
382
365
|
msgstr "Cr??dito Base"
|
|
383
366
|
|
|
384
367
|
#. module: account_financial_report
|
|
385
368
|
#. odoo-python
|
|
386
369
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
387
|
-
#, python-format
|
|
388
370
|
msgid "Base Debit"
|
|
389
371
|
msgstr "D??bito Base"
|
|
390
372
|
|
|
@@ -397,7 +379,6 @@ msgstr "Baseado em"
|
|
|
397
379
|
#. module: account_financial_report
|
|
398
380
|
#. odoo-python
|
|
399
381
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
400
|
-
#, python-format
|
|
401
382
|
msgid "Based on"
|
|
402
383
|
msgstr "Baseado em"
|
|
403
384
|
|
|
@@ -415,7 +396,6 @@ msgstr "Cancelar"
|
|
|
415
396
|
#. odoo-python
|
|
416
397
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
417
398
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
418
|
-
#, python-format
|
|
419
399
|
msgid "Centralize filter"
|
|
420
400
|
msgstr "Filtro Centralizar"
|
|
421
401
|
|
|
@@ -435,7 +415,6 @@ msgstr "Grupos Filhos"
|
|
|
435
415
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
436
416
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
437
417
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
438
|
-
#, python-format
|
|
439
418
|
msgid "Code"
|
|
440
419
|
msgstr "C??digo"
|
|
441
420
|
|
|
@@ -450,7 +429,6 @@ msgstr "C??digo"
|
|
|
450
429
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
451
430
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
452
431
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
453
|
-
#, python-format
|
|
454
432
|
msgid "Company"
|
|
455
433
|
msgstr "Empresa"
|
|
456
434
|
|
|
@@ -503,7 +481,6 @@ msgstr "Criado em"
|
|
|
503
481
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
504
482
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
505
483
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
506
|
-
#, python-format
|
|
507
484
|
msgid "Credit"
|
|
508
485
|
msgstr "Cr??dito"
|
|
509
486
|
|
|
@@ -511,7 +488,6 @@ msgstr "Cr??dito"
|
|
|
511
488
|
#. odoo-python
|
|
512
489
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
513
490
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
514
|
-
#, python-format
|
|
515
491
|
msgid "Cumul cur."
|
|
516
492
|
msgstr ""
|
|
517
493
|
|
|
@@ -519,7 +495,6 @@ msgstr ""
|
|
|
519
495
|
#. odoo-python
|
|
520
496
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
521
497
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
522
|
-
#, python-format
|
|
523
498
|
msgid "Cumul. Bal."
|
|
524
499
|
msgstr "Saldo Acum."
|
|
525
500
|
|
|
@@ -528,7 +503,6 @@ msgstr "Saldo Acum."
|
|
|
528
503
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
529
504
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
530
505
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
531
|
-
#, python-format
|
|
532
506
|
msgid "Cur."
|
|
533
507
|
msgstr "Moeda."
|
|
534
508
|
|
|
@@ -536,7 +510,6 @@ msgstr "Moeda."
|
|
|
536
510
|
#. odoo-python
|
|
537
511
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
538
512
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
539
|
-
#, python-format
|
|
540
513
|
msgid "Cur. Original"
|
|
541
514
|
msgstr "Moeda Original"
|
|
542
515
|
|
|
@@ -544,14 +517,12 @@ msgstr "Moeda Original"
|
|
|
544
517
|
#. odoo-python
|
|
545
518
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
546
519
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
547
|
-
#, python-format
|
|
548
520
|
msgid "Cur. Residual"
|
|
549
521
|
msgstr "Moeda Residual"
|
|
550
522
|
|
|
551
523
|
#. module: account_financial_report
|
|
552
524
|
#. odoo-python
|
|
553
525
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
554
|
-
#, python-format
|
|
555
526
|
msgid "Currency"
|
|
556
527
|
msgstr "Moeda"
|
|
557
528
|
|
|
@@ -559,7 +530,6 @@ msgstr "Moeda"
|
|
|
559
530
|
#. odoo-python
|
|
560
531
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
561
532
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
562
|
-
#, python-format
|
|
563
533
|
msgid "Current"
|
|
564
534
|
msgstr "Atual"
|
|
565
535
|
|
|
@@ -574,7 +544,6 @@ msgstr "Atual"
|
|
|
574
544
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
575
545
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
576
546
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
577
|
-
#, python-format
|
|
578
547
|
msgid "Date"
|
|
579
548
|
msgstr "Data"
|
|
580
549
|
|
|
@@ -606,14 +575,12 @@ msgstr "Data Final"
|
|
|
606
575
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
607
576
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
608
577
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
609
|
-
#, python-format
|
|
610
578
|
msgid "Date at filter"
|
|
611
579
|
msgstr "Filtro de Data"
|
|
612
580
|
|
|
613
581
|
#. module: account_financial_report
|
|
614
582
|
#. odoo-python
|
|
615
583
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
616
|
-
#, python-format
|
|
617
584
|
msgid "Date from"
|
|
618
585
|
msgstr "Data Inicial"
|
|
619
586
|
|
|
@@ -632,14 +599,12 @@ msgstr "Per??odo"
|
|
|
632
599
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
633
600
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
634
601
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
635
|
-
#, python-format
|
|
636
602
|
msgid "Date range filter"
|
|
637
603
|
msgstr "Filtro de per??odo"
|
|
638
604
|
|
|
639
605
|
#. module: account_financial_report
|
|
640
606
|
#. odoo-python
|
|
641
607
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
642
|
-
#, python-format
|
|
643
608
|
msgid "Date to"
|
|
644
609
|
msgstr "Data Final"
|
|
645
610
|
|
|
@@ -653,7 +618,6 @@ msgstr "Data Final"
|
|
|
653
618
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
654
619
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
655
620
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
656
|
-
#, python-format
|
|
657
621
|
msgid "Debit"
|
|
658
622
|
msgstr "D??bito"
|
|
659
623
|
|
|
@@ -662,7 +626,6 @@ msgstr "D??bito"
|
|
|
662
626
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
663
627
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
664
628
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
665
|
-
#, python-format
|
|
666
629
|
msgid "Description"
|
|
667
630
|
msgstr "Descri????o"
|
|
668
631
|
|
|
@@ -723,7 +686,6 @@ msgstr ""
|
|
|
723
686
|
#. odoo-python
|
|
724
687
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
725
688
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
726
|
-
#, python-format
|
|
727
689
|
msgid "Due date"
|
|
728
690
|
msgstr "Data de vencimento"
|
|
729
691
|
|
|
@@ -761,7 +723,6 @@ msgstr "Conta final em um intervalo"
|
|
|
761
723
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
762
724
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
763
725
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
764
|
-
#, python-format
|
|
765
726
|
msgid "Ending balance"
|
|
766
727
|
msgstr "Saldo final"
|
|
767
728
|
|
|
@@ -777,7 +738,6 @@ msgstr ""
|
|
|
777
738
|
#. module: account_financial_report
|
|
778
739
|
#. odoo-python
|
|
779
740
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
780
|
-
#, python-format
|
|
781
741
|
msgid "Entries sorted by"
|
|
782
742
|
msgstr "Lan??amentos ordenados por"
|
|
783
743
|
|
|
@@ -791,21 +751,18 @@ msgstr "Lan??amentos ordenados por"
|
|
|
791
751
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
792
752
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
793
753
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
794
|
-
#, python-format
|
|
795
754
|
msgid "Entry"
|
|
796
755
|
msgstr "Lan??amento"
|
|
797
756
|
|
|
798
757
|
#. module: account_financial_report
|
|
799
758
|
#. odoo-python
|
|
800
759
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
801
|
-
#, python-format
|
|
802
760
|
msgid "Entry number"
|
|
803
761
|
msgstr "N??mero do lan??amento"
|
|
804
762
|
|
|
805
763
|
#. module: account_financial_report
|
|
806
764
|
#. odoo-javascript
|
|
807
765
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
808
|
-
#, python-format
|
|
809
766
|
msgid "Export"
|
|
810
767
|
msgstr "Exportar"
|
|
811
768
|
|
|
@@ -886,7 +843,6 @@ msgstr "De:"
|
|
|
886
843
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
887
844
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
888
845
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
889
|
-
#, python-format
|
|
890
846
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
891
847
|
msgstr "De: %(date_from)s Para: %(date_to)s"
|
|
892
848
|
|
|
@@ -914,7 +870,6 @@ msgstr "Data Inicial"
|
|
|
914
870
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
915
871
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
916
872
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
917
|
-
#, python-format
|
|
918
873
|
msgid "General Ledger"
|
|
919
874
|
msgstr "Raz??o Geral"
|
|
920
875
|
|
|
@@ -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 "Ocultar"
|
|
983
937
|
|
|
@@ -1026,7 +980,6 @@ msgstr ""
|
|
|
1026
980
|
#. module: account_financial_report
|
|
1027
981
|
#. odoo-python
|
|
1028
982
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1029
|
-
#, python-format
|
|
1030
983
|
msgid "Inferior Limit must be greather than zero"
|
|
1031
984
|
msgstr ""
|
|
1032
985
|
|
|
@@ -1053,7 +1006,6 @@ msgstr ""
|
|
|
1053
1006
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1054
1007
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1055
1008
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1056
|
-
#, python-format
|
|
1057
1009
|
msgid "Initial balance"
|
|
1058
1010
|
msgstr "Saldo inicial"
|
|
1059
1011
|
|
|
@@ -1073,7 +1025,6 @@ msgstr ""
|
|
|
1073
1025
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1074
1026
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1075
1027
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1076
|
-
#, python-format
|
|
1077
1028
|
msgid "Journal"
|
|
1078
1029
|
msgstr "Di??rio"
|
|
1079
1030
|
|
|
@@ -1093,7 +1044,6 @@ msgstr "Dom??nio de itens de di??rio"
|
|
|
1093
1044
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1094
1045
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1095
1046
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1096
|
-
#, python-format
|
|
1097
1047
|
msgid "Journal Ledger"
|
|
1098
1048
|
msgstr "Raz??o por Di??rio"
|
|
1099
1049
|
|
|
@@ -1127,7 +1077,6 @@ msgstr "Relat??rio Raz??o por Di??rio XLSX"
|
|
|
1127
1077
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1128
1078
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1129
1079
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1130
|
-
#, python-format
|
|
1131
1080
|
msgid "Journals"
|
|
1132
1081
|
msgstr "Di??rios"
|
|
1133
1082
|
|
|
@@ -1164,7 +1113,6 @@ msgstr "N??vel"
|
|
|
1164
1113
|
#. module: account_financial_report
|
|
1165
1114
|
#. odoo-python
|
|
1166
1115
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1167
|
-
#, python-format
|
|
1168
1116
|
msgid "Level %s"
|
|
1169
1117
|
msgstr "N??vel %s"
|
|
1170
1118
|
|
|
@@ -1173,7 +1121,6 @@ msgstr "N??vel %s"
|
|
|
1173
1121
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1174
1122
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1175
1123
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1176
|
-
#, python-format
|
|
1177
1124
|
msgid "Limit hierarchy levels"
|
|
1178
1125
|
msgstr "Limitar n??veis hier??rquicos"
|
|
1179
1126
|
|
|
@@ -1187,7 +1134,6 @@ msgstr "Linha"
|
|
|
1187
1134
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1188
1135
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1189
1136
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1190
|
-
#, python-format
|
|
1191
1137
|
msgid "Missing Partner"
|
|
1192
1138
|
msgstr ""
|
|
1193
1139
|
|
|
@@ -1214,7 +1160,6 @@ msgstr "Movimenta????es"
|
|
|
1214
1160
|
#. module: account_financial_report
|
|
1215
1161
|
#. odoo-python
|
|
1216
1162
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1217
|
-
#, python-format
|
|
1218
1163
|
msgid "Must complete Configuration Lines"
|
|
1219
1164
|
msgstr ""
|
|
1220
1165
|
|
|
@@ -1227,15 +1172,11 @@ msgstr ""
|
|
|
1227
1172
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1228
1173
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1229
1174
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1230
|
-
#, python-format
|
|
1231
1175
|
msgid "Name"
|
|
1232
1176
|
msgstr "Nome"
|
|
1233
1177
|
|
|
1234
1178
|
#. module: account_financial_report
|
|
1235
|
-
#. odoo-python
|
|
1236
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1237
1179
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1238
|
-
#, python-format
|
|
1239
1180
|
msgid "Name must be unique per report configuration"
|
|
1240
1181
|
msgstr ""
|
|
1241
1182
|
|
|
@@ -1243,7 +1184,6 @@ msgstr ""
|
|
|
1243
1184
|
#. odoo-python
|
|
1244
1185
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1245
1186
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1246
|
-
#, python-format
|
|
1247
1187
|
msgid "Net"
|
|
1248
1188
|
msgstr "L??quido"
|
|
1249
1189
|
|
|
@@ -1253,14 +1193,12 @@ msgstr "L??quido"
|
|
|
1253
1193
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1254
1194
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1255
1195
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1256
|
-
#, python-format
|
|
1257
1196
|
msgid "No"
|
|
1258
1197
|
msgstr "N??o"
|
|
1259
1198
|
|
|
1260
1199
|
#. module: account_financial_report
|
|
1261
1200
|
#. odoo-python
|
|
1262
1201
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1263
|
-
#, python-format
|
|
1264
1202
|
msgid "No group"
|
|
1265
1203
|
msgstr "Sem grupo"
|
|
1266
1204
|
|
|
@@ -1268,7 +1206,6 @@ msgstr "Sem grupo"
|
|
|
1268
1206
|
#. odoo-python
|
|
1269
1207
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1270
1208
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1271
|
-
#, python-format
|
|
1272
1209
|
msgid "No limit"
|
|
1273
1210
|
msgstr "Sem limite"
|
|
1274
1211
|
|
|
@@ -1280,7 +1217,6 @@ msgstr "N??o"
|
|
|
1280
1217
|
#. module: account_financial_report
|
|
1281
1218
|
#. odoo-python
|
|
1282
1219
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1283
|
-
#, python-format
|
|
1284
1220
|
msgid "Not Posted"
|
|
1285
1221
|
msgstr "N??o lan??ado"
|
|
1286
1222
|
|
|
@@ -1303,7 +1239,6 @@ msgstr "Relat??rios Cont??beis OCA"
|
|
|
1303
1239
|
#. odoo-python
|
|
1304
1240
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1305
1241
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1306
|
-
#, python-format
|
|
1307
1242
|
msgid "Older"
|
|
1308
1243
|
msgstr "Mais antigo"
|
|
1309
1244
|
|
|
@@ -1320,7 +1255,6 @@ msgstr ""
|
|
|
1320
1255
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1321
1256
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1322
1257
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1323
|
-
#, python-format
|
|
1324
1258
|
msgid "Open Items"
|
|
1325
1259
|
msgstr "Itens abertos"
|
|
1326
1260
|
|
|
@@ -1363,7 +1297,6 @@ msgstr "Op????es"
|
|
|
1363
1297
|
#. odoo-python
|
|
1364
1298
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1365
1299
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1366
|
-
#, python-format
|
|
1367
1300
|
msgid "Original"
|
|
1368
1301
|
msgstr "Original"
|
|
1369
1302
|
|
|
@@ -1380,7 +1313,6 @@ msgstr "Original"
|
|
|
1380
1313
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1381
1314
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1382
1315
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1383
|
-
#, python-format
|
|
1384
1316
|
msgid "Partner"
|
|
1385
1317
|
msgstr "Parceiro"
|
|
1386
1318
|
|
|
@@ -1396,14 +1328,12 @@ msgstr ""
|
|
|
1396
1328
|
#. module: account_financial_report
|
|
1397
1329
|
#. odoo-python
|
|
1398
1330
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1399
|
-
#, python-format
|
|
1400
1331
|
msgid "Partner Initial balance"
|
|
1401
1332
|
msgstr "Saldo inicial do parceiro"
|
|
1402
1333
|
|
|
1403
1334
|
#. module: account_financial_report
|
|
1404
1335
|
#. odoo-python
|
|
1405
1336
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1406
|
-
#, python-format
|
|
1407
1337
|
msgid "Partner cumul aged balance"
|
|
1408
1338
|
msgstr "Saldo peri??dico acumulado do parceiro"
|
|
1409
1339
|
|
|
@@ -1413,7 +1343,6 @@ msgstr "Saldo peri??dico acumulado do parceiro"
|
|
|
1413
1343
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1414
1344
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1415
1345
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1416
|
-
#, python-format
|
|
1417
1346
|
msgid "Partner ending balance"
|
|
1418
1347
|
msgstr "Saldo final do parceiro"
|
|
1419
1348
|
|
|
@@ -1444,7 +1373,6 @@ msgstr "Percentuais"
|
|
|
1444
1373
|
#. odoo-python
|
|
1445
1374
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1446
1375
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1447
|
-
#, python-format
|
|
1448
1376
|
msgid "Period balance"
|
|
1449
1377
|
msgstr "Saldo do per??odo"
|
|
1450
1378
|
|
|
@@ -1456,7 +1384,6 @@ msgstr "Per??odos"
|
|
|
1456
1384
|
#. module: account_financial_report
|
|
1457
1385
|
#. odoo-python
|
|
1458
1386
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1459
|
-
#, python-format
|
|
1460
1387
|
msgid "Posted"
|
|
1461
1388
|
msgstr "Lan??ado"
|
|
1462
1389
|
|
|
@@ -1464,7 +1391,6 @@ msgstr "Lan??ado"
|
|
|
1464
1391
|
#. odoo-python
|
|
1465
1392
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1466
1393
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1467
|
-
#, python-format
|
|
1468
1394
|
msgid "Rec."
|
|
1469
1395
|
msgstr "Rec."
|
|
1470
1396
|
|
|
@@ -1502,7 +1428,6 @@ msgstr ""
|
|
|
1502
1428
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1503
1429
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1504
1430
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1505
|
-
#, python-format
|
|
1506
1431
|
msgid "Ref - Label"
|
|
1507
1432
|
msgstr "Ref - R??tulo"
|
|
1508
1433
|
|
|
@@ -1518,7 +1443,6 @@ msgstr "A????o do Relat??rio"
|
|
|
1518
1443
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1519
1444
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1520
1445
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1521
|
-
#, python-format
|
|
1522
1446
|
msgid "Residual"
|
|
1523
1447
|
msgstr "Residual"
|
|
1524
1448
|
|
|
@@ -1526,7 +1450,6 @@ msgstr "Residual"
|
|
|
1526
1450
|
#. odoo-python
|
|
1527
1451
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1528
1452
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1529
|
-
#, python-format
|
|
1530
1453
|
msgid "Sequence"
|
|
1531
1454
|
msgstr "Sequ??ncia"
|
|
1532
1455
|
|
|
@@ -1538,7 +1461,6 @@ msgstr "Sequ??ncia"
|
|
|
1538
1461
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1539
1462
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1540
1463
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1541
|
-
#, python-format
|
|
1542
1464
|
msgid "Show"
|
|
1543
1465
|
msgstr "Exibir"
|
|
1544
1466
|
|
|
@@ -1571,7 +1493,6 @@ msgstr "Exibir Detalhes do Parceiro"
|
|
|
1571
1493
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1572
1494
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1573
1495
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1574
|
-
#, python-format
|
|
1575
1496
|
msgid "Show foreign currency"
|
|
1576
1497
|
msgstr "Exibir moeda estrangeira"
|
|
1577
1498
|
|
|
@@ -1606,7 +1527,6 @@ msgstr "Iniciando conta em um intervalo"
|
|
|
1606
1527
|
#. odoo-python
|
|
1607
1528
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1608
1529
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1609
|
-
#, python-format
|
|
1610
1530
|
msgid "TOTAL"
|
|
1611
1531
|
msgstr ""
|
|
1612
1532
|
|
|
@@ -1635,7 +1555,6 @@ msgstr "Movimenta????es de Destino"
|
|
|
1635
1555
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1636
1556
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1637
1557
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1638
|
-
#, python-format
|
|
1639
1558
|
msgid "Target moves filter"
|
|
1640
1559
|
msgstr "Filtro de movimenta????es de destino"
|
|
1641
1560
|
|
|
@@ -1643,7 +1562,6 @@ msgstr "Filtro de movimenta????es de destino"
|
|
|
1643
1562
|
#. odoo-python
|
|
1644
1563
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1645
1564
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1646
|
-
#, python-format
|
|
1647
1565
|
msgid "Tax"
|
|
1648
1566
|
msgstr "Imposto"
|
|
1649
1567
|
|
|
@@ -1656,21 +1574,18 @@ msgstr "Valor do Imposto"
|
|
|
1656
1574
|
#. module: account_financial_report
|
|
1657
1575
|
#. odoo-python
|
|
1658
1576
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1659
|
-
#, python-format
|
|
1660
1577
|
msgid "Tax Balance"
|
|
1661
1578
|
msgstr "Saldo de Impostos"
|
|
1662
1579
|
|
|
1663
1580
|
#. module: account_financial_report
|
|
1664
1581
|
#. odoo-python
|
|
1665
1582
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1666
|
-
#, python-format
|
|
1667
1583
|
msgid "Tax Credit"
|
|
1668
1584
|
msgstr "Cr??dito de Impostos"
|
|
1669
1585
|
|
|
1670
1586
|
#. module: account_financial_report
|
|
1671
1587
|
#. odoo-python
|
|
1672
1588
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1673
|
-
#, python-format
|
|
1674
1589
|
msgid "Tax Debit"
|
|
1675
1590
|
msgstr "D??bito de Impostos"
|
|
1676
1591
|
|
|
@@ -1678,14 +1593,12 @@ msgstr "D??bito de Impostos"
|
|
|
1678
1593
|
#. odoo-python
|
|
1679
1594
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1680
1595
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1681
|
-
#, python-format
|
|
1682
1596
|
msgid "Tax Groups"
|
|
1683
1597
|
msgstr "Grupos de Impostos"
|
|
1684
1598
|
|
|
1685
1599
|
#. module: account_financial_report
|
|
1686
1600
|
#. odoo-python
|
|
1687
1601
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1688
|
-
#, python-format
|
|
1689
1602
|
msgid "Tax Initial balance"
|
|
1690
1603
|
msgstr "Saldo Inicial do imposto"
|
|
1691
1604
|
|
|
@@ -1693,7 +1606,6 @@ msgstr "Saldo Inicial do imposto"
|
|
|
1693
1606
|
#. odoo-python
|
|
1694
1607
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1695
1608
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1696
|
-
#, python-format
|
|
1697
1609
|
msgid "Tax Tags"
|
|
1698
1610
|
msgstr "Marcadores do Imposto"
|
|
1699
1611
|
|
|
@@ -1701,7 +1613,6 @@ msgstr "Marcadores do Imposto"
|
|
|
1701
1613
|
#. odoo-python
|
|
1702
1614
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1703
1615
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1704
|
-
#, python-format
|
|
1705
1616
|
msgid "Tax ending balance"
|
|
1706
1617
|
msgstr "Saldo Final do imposto"
|
|
1707
1618
|
|
|
@@ -1717,14 +1628,12 @@ msgstr "Saldo inicial do imposto"
|
|
|
1717
1628
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1718
1629
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1719
1630
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1720
|
-
#, python-format
|
|
1721
1631
|
msgid "Taxes"
|
|
1722
1632
|
msgstr "Impostos"
|
|
1723
1633
|
|
|
1724
1634
|
#. module: account_financial_report
|
|
1725
1635
|
#. odoo-python
|
|
1726
1636
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1727
|
-
#, python-format
|
|
1728
1637
|
msgid ""
|
|
1729
1638
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1730
1639
|
"the same."
|
|
@@ -1735,7 +1644,6 @@ msgstr ""
|
|
|
1735
1644
|
#. module: account_financial_report
|
|
1736
1645
|
#. odoo-python
|
|
1737
1646
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1738
|
-
#, python-format
|
|
1739
1647
|
msgid ""
|
|
1740
1648
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1741
1649
|
"same."
|
|
@@ -1746,7 +1654,6 @@ msgstr ""
|
|
|
1746
1654
|
#. module: account_financial_report
|
|
1747
1655
|
#. odoo-python
|
|
1748
1656
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1749
|
-
#, python-format
|
|
1750
1657
|
msgid ""
|
|
1751
1658
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1752
1659
|
msgstr ""
|
|
@@ -1756,7 +1663,6 @@ msgstr ""
|
|
|
1756
1663
|
#. module: account_financial_report
|
|
1757
1664
|
#. odoo-python
|
|
1758
1665
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1759
|
-
#, python-format
|
|
1760
1666
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1761
1667
|
msgstr "O filtro de n??vel hier??rquico deve ser maior que zero."
|
|
1762
1668
|
|
|
@@ -1781,7 +1687,6 @@ msgstr "Para:"
|
|
|
1781
1687
|
#. odoo-python
|
|
1782
1688
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1783
1689
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1784
|
-
#, python-format
|
|
1785
1690
|
msgid "Total"
|
|
1786
1691
|
msgstr "Total"
|
|
1787
1692
|
|
|
@@ -1792,7 +1697,6 @@ msgstr "Total"
|
|
|
1792
1697
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1793
1698
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1794
1699
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1795
|
-
#, python-format
|
|
1796
1700
|
msgid "Trial Balance"
|
|
1797
1701
|
msgstr "Balancete"
|
|
1798
1702
|
|
|
@@ -1884,7 +1788,6 @@ msgstr "Relat??rio de Impostos XLSX"
|
|
|
1884
1788
|
#. module: account_financial_report
|
|
1885
1789
|
#. odoo-python
|
|
1886
1790
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1887
|
-
#, python-format
|
|
1888
1791
|
msgid "Vat Report"
|
|
1889
1792
|
msgstr "Relat??rio de Impostos"
|
|
1890
1793
|
|
|
@@ -1926,7 +1829,6 @@ msgstr "Com Nome de Conta"
|
|
|
1926
1829
|
#. module: account_financial_report
|
|
1927
1830
|
#. odoo-python
|
|
1928
1831
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1929
|
-
#, python-format
|
|
1930
1832
|
msgid "Without analytic account"
|
|
1931
1833
|
msgstr ""
|
|
1932
1834
|
|
|
@@ -1936,14 +1838,12 @@ msgstr ""
|
|
|
1936
1838
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1937
1839
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1938
1840
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1939
|
-
#, python-format
|
|
1940
1841
|
msgid "Yes"
|
|
1941
1842
|
msgstr "Sim"
|
|
1942
1843
|
|
|
1943
1844
|
#. module: account_financial_report
|
|
1944
1845
|
#. odoo-python
|
|
1945
1846
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1946
|
-
#, python-format
|
|
1947
1847
|
msgid "future"
|
|
1948
1848
|
msgstr "futuro"
|
|
1949
1849
|
|