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
|
@@ -103,7 +103,6 @@ msgstr "Extracto XLSX Account Financial Report"
|
|
|
103
103
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
104
104
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
105
105
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
106
|
-
#, python-format
|
|
107
106
|
msgid "Account"
|
|
108
107
|
msgstr "Cuenta"
|
|
109
108
|
|
|
@@ -136,7 +135,6 @@ msgstr "Grupo de cuenta"
|
|
|
136
135
|
#. module: account_financial_report
|
|
137
136
|
#. odoo-python
|
|
138
137
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
139
|
-
#, python-format
|
|
140
138
|
msgid "Account Name"
|
|
141
139
|
msgstr "Cuenta"
|
|
142
140
|
|
|
@@ -144,7 +142,6 @@ msgstr "Cuenta"
|
|
|
144
142
|
#. odoo-python
|
|
145
143
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
146
144
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
147
|
-
#, python-format
|
|
148
145
|
msgid "Account at 0 filter"
|
|
149
146
|
msgstr "Filtrar por Cuenta a 0"
|
|
150
147
|
|
|
@@ -154,7 +151,6 @@ msgstr "Filtrar por Cuenta a 0"
|
|
|
154
151
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
155
152
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
156
153
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
157
|
-
#, python-format
|
|
158
154
|
msgid "Account balance at 0 filter"
|
|
159
155
|
msgstr "Balance de Cuenta en filtro 0"
|
|
160
156
|
|
|
@@ -190,7 +186,6 @@ msgstr ""
|
|
|
190
186
|
#. module: account_financial_report
|
|
191
187
|
#. odoo-python
|
|
192
188
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
193
|
-
#, python-format
|
|
194
189
|
msgid "Age ≤ 120 d."
|
|
195
190
|
msgstr "Edad ≤ 120 d."
|
|
196
191
|
|
|
@@ -206,7 +201,6 @@ msgstr ""
|
|
|
206
201
|
#. module: account_financial_report
|
|
207
202
|
#. odoo-python
|
|
208
203
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
209
|
-
#, python-format
|
|
210
204
|
msgid "Age ≤ 30 d."
|
|
211
205
|
msgstr "Edad ≤ 30 d."
|
|
212
206
|
|
|
@@ -222,7 +216,6 @@ msgstr ""
|
|
|
222
216
|
#. module: account_financial_report
|
|
223
217
|
#. odoo-python
|
|
224
218
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
225
|
-
#, python-format
|
|
226
219
|
msgid "Age ≤ 60 d."
|
|
227
220
|
msgstr "Edad <= 60 d."
|
|
228
221
|
|
|
@@ -238,7 +231,6 @@ msgstr ""
|
|
|
238
231
|
#. module: account_financial_report
|
|
239
232
|
#. odoo-python
|
|
240
233
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
241
|
-
#, python-format
|
|
242
234
|
msgid "Age ≤ 90 d."
|
|
243
235
|
msgstr "Edad <= 90 d."
|
|
244
236
|
|
|
@@ -249,7 +241,6 @@ msgstr "Edad <= 90 d."
|
|
|
249
241
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
250
242
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
251
243
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
252
|
-
#, python-format
|
|
253
244
|
msgid "Aged Partner Balance"
|
|
254
245
|
msgstr "Calidad de la deuda"
|
|
255
246
|
|
|
@@ -281,7 +272,6 @@ msgstr "Calidad de la deuda XLSX"
|
|
|
281
272
|
#. module: account_financial_report
|
|
282
273
|
#. odoo-python
|
|
283
274
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
284
|
-
#, python-format
|
|
285
275
|
msgid "All"
|
|
286
276
|
msgstr "Todos"
|
|
287
277
|
|
|
@@ -313,7 +303,6 @@ msgstr "Todos los asientos publicados"
|
|
|
313
303
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
314
304
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
315
305
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
316
|
-
#, python-format
|
|
317
306
|
msgid "All entries"
|
|
318
307
|
msgstr "Todos los asientos"
|
|
319
308
|
|
|
@@ -327,7 +316,6 @@ msgstr "Todos los asientos"
|
|
|
327
316
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
328
317
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
329
318
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
330
|
-
#, python-format
|
|
331
319
|
msgid "All posted entries"
|
|
332
320
|
msgstr "Todos los asientos asentados"
|
|
333
321
|
|
|
@@ -339,7 +327,6 @@ msgstr "Importe moneda."
|
|
|
339
327
|
#. module: account_financial_report
|
|
340
328
|
#. odoo-python
|
|
341
329
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
342
|
-
#, python-format
|
|
343
330
|
msgid "Amount Currency"
|
|
344
331
|
msgstr "Importe moneda"
|
|
345
332
|
|
|
@@ -347,7 +334,6 @@ msgstr "Importe moneda"
|
|
|
347
334
|
#. odoo-python
|
|
348
335
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
349
336
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
350
|
-
#, python-format
|
|
351
337
|
msgid "Amount cur."
|
|
352
338
|
msgstr "Importe moneda."
|
|
353
339
|
|
|
@@ -361,7 +347,6 @@ msgstr "Cuenta Analítica"
|
|
|
361
347
|
#. odoo-python
|
|
362
348
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
363
349
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
364
|
-
#, python-format
|
|
365
350
|
msgid "Analytic Distribution"
|
|
366
351
|
msgstr "Distribución analítica"
|
|
367
352
|
|
|
@@ -380,21 +365,18 @@ msgstr "Basados en"
|
|
|
380
365
|
#. module: account_financial_report
|
|
381
366
|
#. odoo-python
|
|
382
367
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
383
|
-
#, python-format
|
|
384
368
|
msgid "Base Balance"
|
|
385
369
|
msgstr "Total Saldo"
|
|
386
370
|
|
|
387
371
|
#. module: account_financial_report
|
|
388
372
|
#. odoo-python
|
|
389
373
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
390
|
-
#, python-format
|
|
391
374
|
msgid "Base Credit"
|
|
392
375
|
msgstr "Haber"
|
|
393
376
|
|
|
394
377
|
#. module: account_financial_report
|
|
395
378
|
#. odoo-python
|
|
396
379
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
397
|
-
#, python-format
|
|
398
380
|
msgid "Base Debit"
|
|
399
381
|
msgstr "Total Debe"
|
|
400
382
|
|
|
@@ -407,7 +389,6 @@ msgstr "Basados en"
|
|
|
407
389
|
#. module: account_financial_report
|
|
408
390
|
#. odoo-python
|
|
409
391
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
410
|
-
#, python-format
|
|
411
392
|
msgid "Based on"
|
|
412
393
|
msgstr "Basados en"
|
|
413
394
|
|
|
@@ -425,7 +406,6 @@ msgstr "Cancelar"
|
|
|
425
406
|
#. odoo-python
|
|
426
407
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
427
408
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
428
|
-
#, python-format
|
|
429
409
|
msgid "Centralize filter"
|
|
430
410
|
msgstr "Centralizar el filtro"
|
|
431
411
|
|
|
@@ -445,7 +425,6 @@ msgstr "Grupos Hijos"
|
|
|
445
425
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
446
426
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
447
427
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
448
|
-
#, python-format
|
|
449
428
|
msgid "Code"
|
|
450
429
|
msgstr "Código"
|
|
451
430
|
|
|
@@ -460,7 +439,6 @@ msgstr "Código"
|
|
|
460
439
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
461
440
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
462
441
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
463
|
-
#, python-format
|
|
464
442
|
msgid "Company"
|
|
465
443
|
msgstr "Compañía"
|
|
466
444
|
|
|
@@ -513,7 +491,6 @@ msgstr "Creado el"
|
|
|
513
491
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
514
492
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
515
493
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
516
|
-
#, python-format
|
|
517
494
|
msgid "Credit"
|
|
518
495
|
msgstr "Haber"
|
|
519
496
|
|
|
@@ -521,7 +498,6 @@ msgstr "Haber"
|
|
|
521
498
|
#. odoo-python
|
|
522
499
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
523
500
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
524
|
-
#, python-format
|
|
525
501
|
msgid "Cumul cur."
|
|
526
502
|
msgstr "Acumulado moneda."
|
|
527
503
|
|
|
@@ -529,7 +505,6 @@ msgstr "Acumulado moneda."
|
|
|
529
505
|
#. odoo-python
|
|
530
506
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
531
507
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
532
|
-
#, python-format
|
|
533
508
|
msgid "Cumul. Bal."
|
|
534
509
|
msgstr "Saldo Acumu."
|
|
535
510
|
|
|
@@ -538,7 +513,6 @@ msgstr "Saldo Acumu."
|
|
|
538
513
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
539
514
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
540
515
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
541
|
-
#, python-format
|
|
542
516
|
msgid "Cur."
|
|
543
517
|
msgstr "Actual."
|
|
544
518
|
|
|
@@ -546,7 +520,6 @@ msgstr "Actual."
|
|
|
546
520
|
#. odoo-python
|
|
547
521
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
548
522
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
549
|
-
#, python-format
|
|
550
523
|
msgid "Cur. Original"
|
|
551
524
|
msgstr "Importe moneda"
|
|
552
525
|
|
|
@@ -554,14 +527,12 @@ msgstr "Importe moneda"
|
|
|
554
527
|
#. odoo-python
|
|
555
528
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
556
529
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
557
|
-
#, python-format
|
|
558
530
|
msgid "Cur. Residual"
|
|
559
531
|
msgstr "Pdte. moneda"
|
|
560
532
|
|
|
561
533
|
#. module: account_financial_report
|
|
562
534
|
#. odoo-python
|
|
563
535
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
564
|
-
#, python-format
|
|
565
536
|
msgid "Currency"
|
|
566
537
|
msgstr "Moneda"
|
|
567
538
|
|
|
@@ -569,7 +540,6 @@ msgstr "Moneda"
|
|
|
569
540
|
#. odoo-python
|
|
570
541
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
571
542
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
572
|
-
#, python-format
|
|
573
543
|
msgid "Current"
|
|
574
544
|
msgstr "Actual"
|
|
575
545
|
|
|
@@ -584,7 +554,6 @@ msgstr "Actual"
|
|
|
584
554
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
585
555
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
586
556
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
587
|
-
#, python-format
|
|
588
557
|
msgid "Date"
|
|
589
558
|
msgstr "Fecha"
|
|
590
559
|
|
|
@@ -616,14 +585,12 @@ msgstr "Fecha final"
|
|
|
616
585
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
617
586
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
618
587
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
619
|
-
#, python-format
|
|
620
588
|
msgid "Date at filter"
|
|
621
589
|
msgstr "Filtro Fecha"
|
|
622
590
|
|
|
623
591
|
#. module: account_financial_report
|
|
624
592
|
#. odoo-python
|
|
625
593
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
626
|
-
#, python-format
|
|
627
594
|
msgid "Date from"
|
|
628
595
|
msgstr "Desde"
|
|
629
596
|
|
|
@@ -642,14 +609,12 @@ msgstr "Período"
|
|
|
642
609
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
643
610
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
644
611
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
645
|
-
#, python-format
|
|
646
612
|
msgid "Date range filter"
|
|
647
613
|
msgstr "Filtro período"
|
|
648
614
|
|
|
649
615
|
#. module: account_financial_report
|
|
650
616
|
#. odoo-python
|
|
651
617
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
652
|
-
#, python-format
|
|
653
618
|
msgid "Date to"
|
|
654
619
|
msgstr "Hasta"
|
|
655
620
|
|
|
@@ -663,7 +628,6 @@ msgstr "Hasta"
|
|
|
663
628
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
664
629
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
665
630
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
666
|
-
#, python-format
|
|
667
631
|
msgid "Debit"
|
|
668
632
|
msgstr "Debe"
|
|
669
633
|
|
|
@@ -672,7 +636,6 @@ msgstr "Debe"
|
|
|
672
636
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
673
637
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
674
638
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
675
|
-
#, python-format
|
|
676
639
|
msgid "Description"
|
|
677
640
|
msgstr "Descripción"
|
|
678
641
|
|
|
@@ -733,7 +696,6 @@ msgstr ""
|
|
|
733
696
|
#. odoo-python
|
|
734
697
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
735
698
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
736
|
-
#, python-format
|
|
737
699
|
msgid "Due date"
|
|
738
700
|
msgstr "Fecha vencimiento"
|
|
739
701
|
|
|
@@ -771,7 +733,6 @@ msgstr "Cuenta final en un rango"
|
|
|
771
733
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
772
734
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
773
735
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
774
|
-
#, python-format
|
|
775
736
|
msgid "Ending balance"
|
|
776
737
|
msgstr "Saldo final"
|
|
777
738
|
|
|
@@ -787,7 +748,6 @@ msgstr ""
|
|
|
787
748
|
#. module: account_financial_report
|
|
788
749
|
#. odoo-python
|
|
789
750
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
790
|
-
#, python-format
|
|
791
751
|
msgid "Entries sorted by"
|
|
792
752
|
msgstr "Asientos ordenados por"
|
|
793
753
|
|
|
@@ -801,21 +761,18 @@ msgstr "Asientos ordenados por"
|
|
|
801
761
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
802
762
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
803
763
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
804
|
-
#, python-format
|
|
805
764
|
msgid "Entry"
|
|
806
765
|
msgstr "Asiento"
|
|
807
766
|
|
|
808
767
|
#. module: account_financial_report
|
|
809
768
|
#. odoo-python
|
|
810
769
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
811
|
-
#, python-format
|
|
812
770
|
msgid "Entry number"
|
|
813
771
|
msgstr "Número de asiento"
|
|
814
772
|
|
|
815
773
|
#. module: account_financial_report
|
|
816
774
|
#. odoo-javascript
|
|
817
775
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
818
|
-
#, python-format
|
|
819
776
|
msgid "Export"
|
|
820
777
|
msgstr "Exportar"
|
|
821
778
|
|
|
@@ -896,7 +853,6 @@ msgstr "Desde:"
|
|
|
896
853
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
897
854
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
898
855
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
899
|
-
#, python-format
|
|
900
856
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
901
857
|
msgstr "Desde: %(date_from)s Hasta: %(date_to)s"
|
|
902
858
|
|
|
@@ -924,7 +880,6 @@ msgstr "Fecha Inicio"
|
|
|
924
880
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
925
881
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
926
882
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
927
|
-
#, python-format
|
|
928
883
|
msgid "General Ledger"
|
|
929
884
|
msgstr "Libro mayor"
|
|
930
885
|
|
|
@@ -990,7 +945,6 @@ msgstr ""
|
|
|
990
945
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
991
946
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
992
947
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
993
|
-
#, python-format
|
|
994
948
|
msgid "Hide"
|
|
995
949
|
msgstr "Ocultar"
|
|
996
950
|
|
|
@@ -1039,7 +993,6 @@ msgstr "Límite inferior"
|
|
|
1039
993
|
#. module: account_financial_report
|
|
1040
994
|
#. odoo-python
|
|
1041
995
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1042
|
-
#, python-format
|
|
1043
996
|
msgid "Inferior Limit must be greather than zero"
|
|
1044
997
|
msgstr "El límite inferior debe ser mayor que cero"
|
|
1045
998
|
|
|
@@ -1066,7 +1019,6 @@ msgstr ""
|
|
|
1066
1019
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1067
1020
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1068
1021
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1069
|
-
#, python-format
|
|
1070
1022
|
msgid "Initial balance"
|
|
1071
1023
|
msgstr "Saldo inicial"
|
|
1072
1024
|
|
|
@@ -1086,7 +1038,6 @@ msgstr "Configuración de intervalos"
|
|
|
1086
1038
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1087
1039
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1088
1040
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1089
|
-
#, python-format
|
|
1090
1041
|
msgid "Journal"
|
|
1091
1042
|
msgstr "Diario"
|
|
1092
1043
|
|
|
@@ -1106,7 +1057,6 @@ msgstr "Dominio Apuntes Contables"
|
|
|
1106
1057
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1107
1058
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1108
1059
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1109
|
-
#, python-format
|
|
1110
1060
|
msgid "Journal Ledger"
|
|
1111
1061
|
msgstr "Libro diario"
|
|
1112
1062
|
|
|
@@ -1140,7 +1090,6 @@ msgstr "Informe Libro de diario XLSX"
|
|
|
1140
1090
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1141
1091
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1142
1092
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1143
|
-
#, python-format
|
|
1144
1093
|
msgid "Journals"
|
|
1145
1094
|
msgstr "Diarios"
|
|
1146
1095
|
|
|
@@ -1177,7 +1126,6 @@ msgstr "Nivel"
|
|
|
1177
1126
|
#. module: account_financial_report
|
|
1178
1127
|
#. odoo-python
|
|
1179
1128
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1180
|
-
#, python-format
|
|
1181
1129
|
msgid "Level %s"
|
|
1182
1130
|
msgstr "Nivel %s"
|
|
1183
1131
|
|
|
@@ -1186,7 +1134,6 @@ msgstr "Nivel %s"
|
|
|
1186
1134
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1187
1135
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1188
1136
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1189
|
-
#, python-format
|
|
1190
1137
|
msgid "Limit hierarchy levels"
|
|
1191
1138
|
msgstr "Limitar niveles de jerarquía"
|
|
1192
1139
|
|
|
@@ -1200,7 +1147,6 @@ msgstr "Línea"
|
|
|
1200
1147
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1201
1148
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1202
1149
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1203
|
-
#, python-format
|
|
1204
1150
|
msgid "Missing Partner"
|
|
1205
1151
|
msgstr "Falta el Socio"
|
|
1206
1152
|
|
|
@@ -1229,7 +1175,6 @@ msgstr "Asientos"
|
|
|
1229
1175
|
#. module: account_financial_report
|
|
1230
1176
|
#. odoo-python
|
|
1231
1177
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1232
|
-
#, python-format
|
|
1233
1178
|
msgid "Must complete Configuration Lines"
|
|
1234
1179
|
msgstr "Debe completar las líneas de configuración"
|
|
1235
1180
|
|
|
@@ -1242,15 +1187,11 @@ msgstr "Debe completar las líneas de configuración"
|
|
|
1242
1187
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1243
1188
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1244
1189
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1245
|
-
#, python-format
|
|
1246
1190
|
msgid "Name"
|
|
1247
1191
|
msgstr "Nombre"
|
|
1248
1192
|
|
|
1249
1193
|
#. module: account_financial_report
|
|
1250
|
-
#. odoo-python
|
|
1251
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1252
1194
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1253
|
-
#, python-format
|
|
1254
1195
|
msgid "Name must be unique per report configuration"
|
|
1255
1196
|
msgstr "El nombre debe ser único por cada configuración del informe"
|
|
1256
1197
|
|
|
@@ -1258,7 +1199,6 @@ msgstr "El nombre debe ser único por cada configuración del informe"
|
|
|
1258
1199
|
#. odoo-python
|
|
1259
1200
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1260
1201
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1261
|
-
#, python-format
|
|
1262
1202
|
msgid "Net"
|
|
1263
1203
|
msgstr "Neto"
|
|
1264
1204
|
|
|
@@ -1268,14 +1208,12 @@ msgstr "Neto"
|
|
|
1268
1208
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1269
1209
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1270
1210
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1271
|
-
#, python-format
|
|
1272
1211
|
msgid "No"
|
|
1273
1212
|
msgstr "No"
|
|
1274
1213
|
|
|
1275
1214
|
#. module: account_financial_report
|
|
1276
1215
|
#. odoo-python
|
|
1277
1216
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1278
|
-
#, python-format
|
|
1279
1217
|
msgid "No group"
|
|
1280
1218
|
msgstr "Sin grupo"
|
|
1281
1219
|
|
|
@@ -1283,7 +1221,6 @@ msgstr "Sin grupo"
|
|
|
1283
1221
|
#. odoo-python
|
|
1284
1222
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1285
1223
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1286
|
-
#, python-format
|
|
1287
1224
|
msgid "No limit"
|
|
1288
1225
|
msgstr "Sin límite"
|
|
1289
1226
|
|
|
@@ -1295,7 +1232,6 @@ msgstr "Ninguna"
|
|
|
1295
1232
|
#. module: account_financial_report
|
|
1296
1233
|
#. odoo-python
|
|
1297
1234
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1298
|
-
#, python-format
|
|
1299
1235
|
msgid "Not Posted"
|
|
1300
1236
|
msgstr "Sin Postear"
|
|
1301
1237
|
|
|
@@ -1318,7 +1254,6 @@ msgstr "Informes de contabilidad OCA"
|
|
|
1318
1254
|
#. odoo-python
|
|
1319
1255
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1320
1256
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1321
|
-
#, python-format
|
|
1322
1257
|
msgid "Older"
|
|
1323
1258
|
msgstr "Mayor"
|
|
1324
1259
|
|
|
@@ -1335,7 +1270,6 @@ msgstr "Sólo Una Cuenta de Ganancias No Afectada"
|
|
|
1335
1270
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1336
1271
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1337
1272
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1338
|
-
#, python-format
|
|
1339
1273
|
msgid "Open Items"
|
|
1340
1274
|
msgstr "Partidas abiertas"
|
|
1341
1275
|
|
|
@@ -1378,7 +1312,6 @@ msgstr "Opciones"
|
|
|
1378
1312
|
#. odoo-python
|
|
1379
1313
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1380
1314
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1381
|
-
#, python-format
|
|
1382
1315
|
msgid "Original"
|
|
1383
1316
|
msgstr "Inicial"
|
|
1384
1317
|
|
|
@@ -1395,7 +1328,6 @@ msgstr "Inicial"
|
|
|
1395
1328
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1396
1329
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1397
1330
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1398
|
-
#, python-format
|
|
1399
1331
|
msgid "Partner"
|
|
1400
1332
|
msgstr "Empresa"
|
|
1401
1333
|
|
|
@@ -1411,14 +1343,12 @@ msgstr ""
|
|
|
1411
1343
|
#. module: account_financial_report
|
|
1412
1344
|
#. odoo-python
|
|
1413
1345
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1414
|
-
#, python-format
|
|
1415
1346
|
msgid "Partner Initial balance"
|
|
1416
1347
|
msgstr "Saldo Inicial de empresa"
|
|
1417
1348
|
|
|
1418
1349
|
#. module: account_financial_report
|
|
1419
1350
|
#. odoo-python
|
|
1420
1351
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1421
|
-
#, python-format
|
|
1422
1352
|
msgid "Partner cumul aged balance"
|
|
1423
1353
|
msgstr "Saldo Acumulado de Empresa"
|
|
1424
1354
|
|
|
@@ -1428,7 +1358,6 @@ msgstr "Saldo Acumulado de Empresa"
|
|
|
1428
1358
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1429
1359
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1430
1360
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1431
|
-
#, python-format
|
|
1432
1361
|
msgid "Partner ending balance"
|
|
1433
1362
|
msgstr "Saldo final de empresa"
|
|
1434
1363
|
|
|
@@ -1459,7 +1388,6 @@ msgstr "Porcentajes"
|
|
|
1459
1388
|
#. odoo-python
|
|
1460
1389
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1461
1390
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1462
|
-
#, python-format
|
|
1463
1391
|
msgid "Period balance"
|
|
1464
1392
|
msgstr "Saldo de periodo"
|
|
1465
1393
|
|
|
@@ -1471,7 +1399,6 @@ msgstr "Periodos"
|
|
|
1471
1399
|
#. module: account_financial_report
|
|
1472
1400
|
#. odoo-python
|
|
1473
1401
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1474
|
-
#, python-format
|
|
1475
1402
|
msgid "Posted"
|
|
1476
1403
|
msgstr "Posteado"
|
|
1477
1404
|
|
|
@@ -1479,7 +1406,6 @@ msgstr "Posteado"
|
|
|
1479
1406
|
#. odoo-python
|
|
1480
1407
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1481
1408
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1482
|
-
#, python-format
|
|
1483
1409
|
msgid "Rec."
|
|
1484
1410
|
msgstr "Num."
|
|
1485
1411
|
|
|
@@ -1517,7 +1443,6 @@ msgstr ""
|
|
|
1517
1443
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1518
1444
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1519
1445
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1520
|
-
#, python-format
|
|
1521
1446
|
msgid "Ref - Label"
|
|
1522
1447
|
msgstr "Ref - Etiqueta"
|
|
1523
1448
|
|
|
@@ -1533,7 +1458,6 @@ msgstr "Acción de informe"
|
|
|
1533
1458
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1534
1459
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1535
1460
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1536
|
-
#, python-format
|
|
1537
1461
|
msgid "Residual"
|
|
1538
1462
|
msgstr "Remanente"
|
|
1539
1463
|
|
|
@@ -1541,7 +1465,6 @@ msgstr "Remanente"
|
|
|
1541
1465
|
#. odoo-python
|
|
1542
1466
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1543
1467
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1544
|
-
#, python-format
|
|
1545
1468
|
msgid "Sequence"
|
|
1546
1469
|
msgstr "Secuencia"
|
|
1547
1470
|
|
|
@@ -1553,7 +1476,6 @@ msgstr "Secuencia"
|
|
|
1553
1476
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1554
1477
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1555
1478
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1556
|
-
#, python-format
|
|
1557
1479
|
msgid "Show"
|
|
1558
1480
|
msgstr "Mostrar"
|
|
1559
1481
|
|
|
@@ -1586,7 +1508,6 @@ msgstr "Mostrar detalles de empresa"
|
|
|
1586
1508
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1587
1509
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1588
1510
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1589
|
-
#, python-format
|
|
1590
1511
|
msgid "Show foreign currency"
|
|
1591
1512
|
msgstr "Mostrar Moneda Extranjera"
|
|
1592
1513
|
|
|
@@ -1621,7 +1542,6 @@ msgstr "Cuenta inicial en un rango"
|
|
|
1621
1542
|
#. odoo-python
|
|
1622
1543
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1623
1544
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1624
|
-
#, python-format
|
|
1625
1545
|
msgid "TOTAL"
|
|
1626
1546
|
msgstr ""
|
|
1627
1547
|
|
|
@@ -1650,7 +1570,6 @@ msgstr "Movimientos destino"
|
|
|
1650
1570
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1651
1571
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1652
1572
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1653
|
-
#, python-format
|
|
1654
1573
|
msgid "Target moves filter"
|
|
1655
1574
|
msgstr "Filtro movimientos destino"
|
|
1656
1575
|
|
|
@@ -1658,7 +1577,6 @@ msgstr "Filtro movimientos destino"
|
|
|
1658
1577
|
#. odoo-python
|
|
1659
1578
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1660
1579
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1661
|
-
#, python-format
|
|
1662
1580
|
msgid "Tax"
|
|
1663
1581
|
msgstr "Impuesto"
|
|
1664
1582
|
|
|
@@ -1671,21 +1589,18 @@ msgstr "Total Impuestos"
|
|
|
1671
1589
|
#. module: account_financial_report
|
|
1672
1590
|
#. odoo-python
|
|
1673
1591
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1674
|
-
#, python-format
|
|
1675
1592
|
msgid "Tax Balance"
|
|
1676
1593
|
msgstr "Saldo de Impuestos"
|
|
1677
1594
|
|
|
1678
1595
|
#. module: account_financial_report
|
|
1679
1596
|
#. odoo-python
|
|
1680
1597
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1681
|
-
#, python-format
|
|
1682
1598
|
msgid "Tax Credit"
|
|
1683
1599
|
msgstr "Haber"
|
|
1684
1600
|
|
|
1685
1601
|
#. module: account_financial_report
|
|
1686
1602
|
#. odoo-python
|
|
1687
1603
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1688
|
-
#, python-format
|
|
1689
1604
|
msgid "Tax Debit"
|
|
1690
1605
|
msgstr "Debe"
|
|
1691
1606
|
|
|
@@ -1693,14 +1608,12 @@ msgstr "Debe"
|
|
|
1693
1608
|
#. odoo-python
|
|
1694
1609
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1695
1610
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1696
|
-
#, python-format
|
|
1697
1611
|
msgid "Tax Groups"
|
|
1698
1612
|
msgstr "Grupo de impuestos"
|
|
1699
1613
|
|
|
1700
1614
|
#. module: account_financial_report
|
|
1701
1615
|
#. odoo-python
|
|
1702
1616
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1703
|
-
#, python-format
|
|
1704
1617
|
msgid "Tax Initial balance"
|
|
1705
1618
|
msgstr "Saldo inicial de impuesto"
|
|
1706
1619
|
|
|
@@ -1708,7 +1621,6 @@ msgstr "Saldo inicial de impuesto"
|
|
|
1708
1621
|
#. odoo-python
|
|
1709
1622
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1710
1623
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1711
|
-
#, python-format
|
|
1712
1624
|
msgid "Tax Tags"
|
|
1713
1625
|
msgstr "Etiquetas de impuestos"
|
|
1714
1626
|
|
|
@@ -1716,7 +1628,6 @@ msgstr "Etiquetas de impuestos"
|
|
|
1716
1628
|
#. odoo-python
|
|
1717
1629
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1718
1630
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1719
|
-
#, python-format
|
|
1720
1631
|
msgid "Tax ending balance"
|
|
1721
1632
|
msgstr "Saldo final de impuesto"
|
|
1722
1633
|
|
|
@@ -1732,14 +1643,12 @@ msgstr "Saldo inicial de impuesto"
|
|
|
1732
1643
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1733
1644
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1734
1645
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1735
|
-
#, python-format
|
|
1736
1646
|
msgid "Taxes"
|
|
1737
1647
|
msgstr "Impuestos"
|
|
1738
1648
|
|
|
1739
1649
|
#. module: account_financial_report
|
|
1740
1650
|
#. odoo-python
|
|
1741
1651
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1742
|
-
#, python-format
|
|
1743
1652
|
msgid ""
|
|
1744
1653
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1745
1654
|
"the same."
|
|
@@ -1750,7 +1659,6 @@ msgstr ""
|
|
|
1750
1659
|
#. module: account_financial_report
|
|
1751
1660
|
#. odoo-python
|
|
1752
1661
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1753
|
-
#, python-format
|
|
1754
1662
|
msgid ""
|
|
1755
1663
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1756
1664
|
"same."
|
|
@@ -1761,7 +1669,6 @@ msgstr ""
|
|
|
1761
1669
|
#. module: account_financial_report
|
|
1762
1670
|
#. odoo-python
|
|
1763
1671
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1764
|
-
#, python-format
|
|
1765
1672
|
msgid ""
|
|
1766
1673
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1767
1674
|
msgstr ""
|
|
@@ -1771,7 +1678,6 @@ msgstr ""
|
|
|
1771
1678
|
#. module: account_financial_report
|
|
1772
1679
|
#. odoo-python
|
|
1773
1680
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1774
|
-
#, python-format
|
|
1775
1681
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1776
1682
|
msgstr "El nivel de jerarquía a filtrar debe ser mayor que 0."
|
|
1777
1683
|
|
|
@@ -1796,7 +1702,6 @@ msgstr "A:"
|
|
|
1796
1702
|
#. odoo-python
|
|
1797
1703
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1798
1704
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1799
|
-
#, python-format
|
|
1800
1705
|
msgid "Total"
|
|
1801
1706
|
msgstr "Total"
|
|
1802
1707
|
|
|
@@ -1807,7 +1712,6 @@ msgstr "Total"
|
|
|
1807
1712
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1808
1713
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1809
1714
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1810
|
-
#, python-format
|
|
1811
1715
|
msgid "Trial Balance"
|
|
1812
1716
|
msgstr "Balance de Sumas y Saldos"
|
|
1813
1717
|
|
|
@@ -1901,7 +1805,6 @@ msgstr "Informe de impuestos XLSX"
|
|
|
1901
1805
|
#. module: account_financial_report
|
|
1902
1806
|
#. odoo-python
|
|
1903
1807
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1904
|
-
#, python-format
|
|
1905
1808
|
msgid "Vat Report"
|
|
1906
1809
|
msgstr "Informe de Impuestos"
|
|
1907
1810
|
|
|
@@ -1942,7 +1845,6 @@ msgstr "Cuenta con Nombre"
|
|
|
1942
1845
|
#. module: account_financial_report
|
|
1943
1846
|
#. odoo-python
|
|
1944
1847
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1945
|
-
#, python-format
|
|
1946
1848
|
msgid "Without analytic account"
|
|
1947
1849
|
msgstr ""
|
|
1948
1850
|
|
|
@@ -1952,14 +1854,12 @@ msgstr ""
|
|
|
1952
1854
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1953
1855
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1954
1856
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1955
|
-
#, python-format
|
|
1956
1857
|
msgid "Yes"
|
|
1957
1858
|
msgstr "Si"
|
|
1958
1859
|
|
|
1959
1860
|
#. module: account_financial_report
|
|
1960
1861
|
#. odoo-python
|
|
1961
1862
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1962
|
-
#, python-format
|
|
1963
1863
|
msgid "future"
|
|
1964
1864
|
msgstr "futuro"
|
|
1965
1865
|
|