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 ""
|
|
|
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 "Compte"
|
|
110
109
|
|
|
@@ -137,7 +136,6 @@ msgstr "Grup de comptes"
|
|
|
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 "Compte"
|
|
143
141
|
|
|
@@ -145,7 +143,6 @@ msgstr "Compte"
|
|
|
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 "Filtrar per compte a 0"
|
|
151
148
|
|
|
@@ -155,7 +152,6 @@ msgstr "Filtrar per compte a 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 "Balan?? de compte en filtre 0"
|
|
161
157
|
|
|
@@ -189,7 +185,6 @@ msgstr ""
|
|
|
189
185
|
#. module: account_financial_report
|
|
190
186
|
#. odoo-python
|
|
191
187
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
192
|
-
#, python-format
|
|
193
188
|
msgid "Age ≤ 120 d."
|
|
194
189
|
msgstr ""
|
|
195
190
|
|
|
@@ -203,7 +198,6 @@ msgstr ""
|
|
|
203
198
|
#. module: account_financial_report
|
|
204
199
|
#. odoo-python
|
|
205
200
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
206
|
-
#, python-format
|
|
207
201
|
msgid "Age ≤ 30 d."
|
|
208
202
|
msgstr ""
|
|
209
203
|
|
|
@@ -217,7 +211,6 @@ msgstr ""
|
|
|
217
211
|
#. module: account_financial_report
|
|
218
212
|
#. odoo-python
|
|
219
213
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
220
|
-
#, python-format
|
|
221
214
|
msgid "Age ≤ 60 d."
|
|
222
215
|
msgstr ""
|
|
223
216
|
|
|
@@ -231,7 +224,6 @@ msgstr ""
|
|
|
231
224
|
#. module: account_financial_report
|
|
232
225
|
#. odoo-python
|
|
233
226
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
234
|
-
#, python-format
|
|
235
227
|
msgid "Age ≤ 90 d."
|
|
236
228
|
msgstr ""
|
|
237
229
|
|
|
@@ -242,7 +234,6 @@ msgstr ""
|
|
|
242
234
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
243
235
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
244
236
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
245
|
-
#, python-format
|
|
246
237
|
msgid "Aged Partner Balance"
|
|
247
238
|
msgstr "Saldo ven??uts d'empresa"
|
|
248
239
|
|
|
@@ -274,7 +265,6 @@ msgstr "Saldo ven??uts d'empresa XLSX"
|
|
|
274
265
|
#. module: account_financial_report
|
|
275
266
|
#. odoo-python
|
|
276
267
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
277
|
-
#, python-format
|
|
278
268
|
msgid "All"
|
|
279
269
|
msgstr "Tots"
|
|
280
270
|
|
|
@@ -306,7 +296,6 @@ msgstr "Tots els assentaments assentats"
|
|
|
306
296
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
307
297
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
308
298
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
309
|
-
#, python-format
|
|
310
299
|
msgid "All entries"
|
|
311
300
|
msgstr "Tots els assentaments"
|
|
312
301
|
|
|
@@ -320,7 +309,6 @@ msgstr "Tots els assentaments"
|
|
|
320
309
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
321
310
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
322
311
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
323
|
-
#, python-format
|
|
324
312
|
msgid "All posted entries"
|
|
325
313
|
msgstr "Tots els assentaments assentats"
|
|
326
314
|
|
|
@@ -332,7 +320,6 @@ msgstr "Import inicial."
|
|
|
332
320
|
#. module: account_financial_report
|
|
333
321
|
#. odoo-python
|
|
334
322
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
335
|
-
#, python-format
|
|
336
323
|
msgid "Amount Currency"
|
|
337
324
|
msgstr "Moneda de l'import"
|
|
338
325
|
|
|
@@ -340,7 +327,6 @@ msgstr "Moneda de l'import"
|
|
|
340
327
|
#. odoo-python
|
|
341
328
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
342
329
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
343
|
-
#, python-format
|
|
344
330
|
msgid "Amount cur."
|
|
345
331
|
msgstr "Import actual"
|
|
346
332
|
|
|
@@ -354,7 +340,6 @@ msgstr "Compte anal??tic"
|
|
|
354
340
|
#. odoo-python
|
|
355
341
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
356
342
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
357
|
-
#, python-format
|
|
358
343
|
msgid "Analytic Distribution"
|
|
359
344
|
msgstr ""
|
|
360
345
|
|
|
@@ -373,21 +358,18 @@ msgstr "Import base"
|
|
|
373
358
|
#. module: account_financial_report
|
|
374
359
|
#. odoo-python
|
|
375
360
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
376
|
-
#, python-format
|
|
377
361
|
msgid "Base Balance"
|
|
378
362
|
msgstr "Saldo base"
|
|
379
363
|
|
|
380
364
|
#. module: account_financial_report
|
|
381
365
|
#. odoo-python
|
|
382
366
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
383
|
-
#, python-format
|
|
384
367
|
msgid "Base Credit"
|
|
385
368
|
msgstr "Haver base"
|
|
386
369
|
|
|
387
370
|
#. module: account_financial_report
|
|
388
371
|
#. odoo-python
|
|
389
372
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
390
|
-
#, python-format
|
|
391
373
|
msgid "Base Debit"
|
|
392
374
|
msgstr "Deure base"
|
|
393
375
|
|
|
@@ -400,7 +382,6 @@ msgstr "Basat en"
|
|
|
400
382
|
#. module: account_financial_report
|
|
401
383
|
#. odoo-python
|
|
402
384
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
403
|
-
#, python-format
|
|
404
385
|
msgid "Based on"
|
|
405
386
|
msgstr "Basat en"
|
|
406
387
|
|
|
@@ -418,7 +399,6 @@ msgstr "Cancel??lar "
|
|
|
418
399
|
#. odoo-python
|
|
419
400
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
420
401
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
421
|
-
#, python-format
|
|
422
402
|
msgid "Centralize filter"
|
|
423
403
|
msgstr ""
|
|
424
404
|
|
|
@@ -438,7 +418,6 @@ msgstr "Grups fill"
|
|
|
438
418
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
439
419
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
440
420
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
441
|
-
#, python-format
|
|
442
421
|
msgid "Code"
|
|
443
422
|
msgstr "Codi"
|
|
444
423
|
|
|
@@ -453,7 +432,6 @@ msgstr "Codi"
|
|
|
453
432
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
454
433
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
455
434
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
456
|
-
#, python-format
|
|
457
435
|
msgid "Company"
|
|
458
436
|
msgstr "Empresa "
|
|
459
437
|
|
|
@@ -506,7 +484,6 @@ msgstr "Creat a "
|
|
|
506
484
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
507
485
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
508
486
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
509
|
-
#, python-format
|
|
510
487
|
msgid "Credit"
|
|
511
488
|
msgstr "Haver"
|
|
512
489
|
|
|
@@ -514,7 +491,6 @@ msgstr "Haver"
|
|
|
514
491
|
#. odoo-python
|
|
515
492
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
516
493
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
517
|
-
#, python-format
|
|
518
494
|
msgid "Cumul cur."
|
|
519
495
|
msgstr ""
|
|
520
496
|
|
|
@@ -522,7 +498,6 @@ msgstr ""
|
|
|
522
498
|
#. odoo-python
|
|
523
499
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
524
500
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
525
|
-
#, python-format
|
|
526
501
|
msgid "Cumul. Bal."
|
|
527
502
|
msgstr ""
|
|
528
503
|
|
|
@@ -531,7 +506,6 @@ msgstr ""
|
|
|
531
506
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
532
507
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
533
508
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
534
|
-
#, python-format
|
|
535
509
|
msgid "Cur."
|
|
536
510
|
msgstr ""
|
|
537
511
|
|
|
@@ -539,7 +513,6 @@ msgstr ""
|
|
|
539
513
|
#. odoo-python
|
|
540
514
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
541
515
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
542
|
-
#, python-format
|
|
543
516
|
msgid "Cur. Original"
|
|
544
517
|
msgstr ""
|
|
545
518
|
|
|
@@ -547,14 +520,12 @@ msgstr ""
|
|
|
547
520
|
#. odoo-python
|
|
548
521
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
549
522
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
550
|
-
#, python-format
|
|
551
523
|
msgid "Cur. Residual"
|
|
552
524
|
msgstr ""
|
|
553
525
|
|
|
554
526
|
#. module: account_financial_report
|
|
555
527
|
#. odoo-python
|
|
556
528
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
557
|
-
#, python-format
|
|
558
529
|
msgid "Currency"
|
|
559
530
|
msgstr "Moneda"
|
|
560
531
|
|
|
@@ -562,7 +533,6 @@ msgstr "Moneda"
|
|
|
562
533
|
#. odoo-python
|
|
563
534
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
564
535
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
565
|
-
#, python-format
|
|
566
536
|
msgid "Current"
|
|
567
537
|
msgstr "Actual"
|
|
568
538
|
|
|
@@ -577,7 +547,6 @@ msgstr "Actual"
|
|
|
577
547
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
578
548
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
579
549
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
580
|
-
#, python-format
|
|
581
550
|
msgid "Date"
|
|
582
551
|
msgstr "Data"
|
|
583
552
|
|
|
@@ -609,14 +578,12 @@ msgstr "Data final"
|
|
|
609
578
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
610
579
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
611
580
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
612
|
-
#, python-format
|
|
613
581
|
msgid "Date at filter"
|
|
614
582
|
msgstr ""
|
|
615
583
|
|
|
616
584
|
#. module: account_financial_report
|
|
617
585
|
#. odoo-python
|
|
618
586
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
619
|
-
#, python-format
|
|
620
587
|
msgid "Date from"
|
|
621
588
|
msgstr "Data inicial"
|
|
622
589
|
|
|
@@ -635,14 +602,12 @@ msgstr "Rang de dates"
|
|
|
635
602
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
636
603
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
637
604
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
638
|
-
#, python-format
|
|
639
605
|
msgid "Date range filter"
|
|
640
606
|
msgstr "Filtre del rang de dates"
|
|
641
607
|
|
|
642
608
|
#. module: account_financial_report
|
|
643
609
|
#. odoo-python
|
|
644
610
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
645
|
-
#, python-format
|
|
646
611
|
msgid "Date to"
|
|
647
612
|
msgstr "Data final"
|
|
648
613
|
|
|
@@ -656,7 +621,6 @@ msgstr "Data final"
|
|
|
656
621
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
657
622
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
658
623
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
659
|
-
#, python-format
|
|
660
624
|
msgid "Debit"
|
|
661
625
|
msgstr "Deure"
|
|
662
626
|
|
|
@@ -665,7 +629,6 @@ msgstr "Deure"
|
|
|
665
629
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
666
630
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
667
631
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
668
|
-
#, python-format
|
|
669
632
|
msgid "Description"
|
|
670
633
|
msgstr "Descripci??"
|
|
671
634
|
|
|
@@ -725,7 +688,6 @@ msgstr ""
|
|
|
725
688
|
#. odoo-python
|
|
726
689
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
727
690
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
728
|
-
#, python-format
|
|
729
691
|
msgid "Due date"
|
|
730
692
|
msgstr "Venciment"
|
|
731
693
|
|
|
@@ -761,7 +723,6 @@ msgstr "Darrer compte d'un rang"
|
|
|
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
|
|
|
@@ -778,7 +739,6 @@ msgstr ""
|
|
|
778
739
|
#. module: account_financial_report
|
|
779
740
|
#. odoo-python
|
|
780
741
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
781
|
-
#, python-format
|
|
782
742
|
msgid "Entries sorted by"
|
|
783
743
|
msgstr "Apunts ordenats per"
|
|
784
744
|
|
|
@@ -792,21 +752,18 @@ msgstr "Apunts ordenats per"
|
|
|
792
752
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
793
753
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
794
754
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
795
|
-
#, python-format
|
|
796
755
|
msgid "Entry"
|
|
797
756
|
msgstr "Apunt"
|
|
798
757
|
|
|
799
758
|
#. module: account_financial_report
|
|
800
759
|
#. odoo-python
|
|
801
760
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
802
|
-
#, python-format
|
|
803
761
|
msgid "Entry number"
|
|
804
762
|
msgstr "N??mero d'apunt"
|
|
805
763
|
|
|
806
764
|
#. module: account_financial_report
|
|
807
765
|
#. odoo-javascript
|
|
808
766
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
809
|
-
#, python-format
|
|
810
767
|
msgid "Export"
|
|
811
768
|
msgstr "Exportar"
|
|
812
769
|
|
|
@@ -887,7 +844,6 @@ msgstr "Des de:"
|
|
|
887
844
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
888
845
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
889
846
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
890
|
-
#, python-format
|
|
891
847
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
892
848
|
msgstr ""
|
|
893
849
|
|
|
@@ -915,7 +871,6 @@ msgstr ""
|
|
|
915
871
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
916
872
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
917
873
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
918
|
-
#, python-format
|
|
919
874
|
msgid "General Ledger"
|
|
920
875
|
msgstr "Llibre major"
|
|
921
876
|
|
|
@@ -978,7 +933,6 @@ msgstr ""
|
|
|
978
933
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
979
934
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
980
935
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
981
|
-
#, python-format
|
|
982
936
|
msgid "Hide"
|
|
983
937
|
msgstr "Amaga"
|
|
984
938
|
|
|
@@ -1027,7 +981,6 @@ msgstr ""
|
|
|
1027
981
|
#. module: account_financial_report
|
|
1028
982
|
#. odoo-python
|
|
1029
983
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1030
|
-
#, python-format
|
|
1031
984
|
msgid "Inferior Limit must be greather than zero"
|
|
1032
985
|
msgstr ""
|
|
1033
986
|
|
|
@@ -1055,7 +1008,6 @@ msgstr ""
|
|
|
1055
1008
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1056
1009
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1057
1010
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1058
|
-
#, python-format
|
|
1059
1011
|
msgid "Initial balance"
|
|
1060
1012
|
msgstr "Saldo inicial"
|
|
1061
1013
|
|
|
@@ -1075,7 +1027,6 @@ msgstr ""
|
|
|
1075
1027
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1076
1028
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1077
1029
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1078
|
-
#, python-format
|
|
1079
1030
|
msgid "Journal"
|
|
1080
1031
|
msgstr "Diari"
|
|
1081
1032
|
|
|
@@ -1095,7 +1046,6 @@ msgstr ""
|
|
|
1095
1046
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1096
1047
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1097
1048
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1098
|
-
#, python-format
|
|
1099
1049
|
msgid "Journal Ledger"
|
|
1100
1050
|
msgstr "Llibre diari"
|
|
1101
1051
|
|
|
@@ -1129,7 +1079,6 @@ msgstr "Informe llibre diari XLSX"
|
|
|
1129
1079
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1130
1080
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1131
1081
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1132
|
-
#, python-format
|
|
1133
1082
|
msgid "Journals"
|
|
1134
1083
|
msgstr "Diaris"
|
|
1135
1084
|
|
|
@@ -1166,7 +1115,6 @@ msgstr "Nivell"
|
|
|
1166
1115
|
#. module: account_financial_report
|
|
1167
1116
|
#. odoo-python
|
|
1168
1117
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1169
|
-
#, python-format
|
|
1170
1118
|
msgid "Level %s"
|
|
1171
1119
|
msgstr "Nivell %s"
|
|
1172
1120
|
|
|
@@ -1175,7 +1123,6 @@ msgstr "Nivell %s"
|
|
|
1175
1123
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1176
1124
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1177
1125
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1178
|
-
#, python-format
|
|
1179
1126
|
msgid "Limit hierarchy levels"
|
|
1180
1127
|
msgstr "Limita nivells de jerarquia"
|
|
1181
1128
|
|
|
@@ -1189,7 +1136,6 @@ msgstr ""
|
|
|
1189
1136
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1190
1137
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1191
1138
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1192
|
-
#, python-format
|
|
1193
1139
|
msgid "Missing Partner"
|
|
1194
1140
|
msgstr ""
|
|
1195
1141
|
|
|
@@ -1216,7 +1162,6 @@ msgstr "Assentaments"
|
|
|
1216
1162
|
#. module: account_financial_report
|
|
1217
1163
|
#. odoo-python
|
|
1218
1164
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1219
|
-
#, python-format
|
|
1220
1165
|
msgid "Must complete Configuration Lines"
|
|
1221
1166
|
msgstr ""
|
|
1222
1167
|
|
|
@@ -1229,15 +1174,11 @@ msgstr ""
|
|
|
1229
1174
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1230
1175
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1231
1176
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1232
|
-
#, python-format
|
|
1233
1177
|
msgid "Name"
|
|
1234
1178
|
msgstr "Nom"
|
|
1235
1179
|
|
|
1236
1180
|
#. module: account_financial_report
|
|
1237
|
-
#. odoo-python
|
|
1238
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1239
1181
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1240
|
-
#, python-format
|
|
1241
1182
|
msgid "Name must be unique per report configuration"
|
|
1242
1183
|
msgstr ""
|
|
1243
1184
|
|
|
@@ -1245,7 +1186,6 @@ msgstr ""
|
|
|
1245
1186
|
#. odoo-python
|
|
1246
1187
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1247
1188
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1248
|
-
#, python-format
|
|
1249
1189
|
msgid "Net"
|
|
1250
1190
|
msgstr "Net"
|
|
1251
1191
|
|
|
@@ -1255,14 +1195,12 @@ msgstr "Net"
|
|
|
1255
1195
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1256
1196
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1257
1197
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1258
|
-
#, python-format
|
|
1259
1198
|
msgid "No"
|
|
1260
1199
|
msgstr "No"
|
|
1261
1200
|
|
|
1262
1201
|
#. module: account_financial_report
|
|
1263
1202
|
#. odoo-python
|
|
1264
1203
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1265
|
-
#, python-format
|
|
1266
1204
|
msgid "No group"
|
|
1267
1205
|
msgstr "Sense grup"
|
|
1268
1206
|
|
|
@@ -1270,7 +1208,6 @@ msgstr "Sense grup"
|
|
|
1270
1208
|
#. odoo-python
|
|
1271
1209
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1272
1210
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1273
|
-
#, python-format
|
|
1274
1211
|
msgid "No limit"
|
|
1275
1212
|
msgstr "Sense l??mit"
|
|
1276
1213
|
|
|
@@ -1282,7 +1219,6 @@ msgstr ""
|
|
|
1282
1219
|
#. module: account_financial_report
|
|
1283
1220
|
#. odoo-python
|
|
1284
1221
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1285
|
-
#, python-format
|
|
1286
1222
|
msgid "Not Posted"
|
|
1287
1223
|
msgstr "No confirmat"
|
|
1288
1224
|
|
|
@@ -1305,7 +1241,6 @@ msgstr "Informes comptables OCA"
|
|
|
1305
1241
|
#. odoo-python
|
|
1306
1242
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1307
1243
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1308
|
-
#, python-format
|
|
1309
1244
|
msgid "Older"
|
|
1310
1245
|
msgstr "M??s antic"
|
|
1311
1246
|
|
|
@@ -1322,7 +1257,6 @@ msgstr ""
|
|
|
1322
1257
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1323
1258
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1324
1259
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1325
|
-
#, python-format
|
|
1326
1260
|
msgid "Open Items"
|
|
1327
1261
|
msgstr "Partides obertes"
|
|
1328
1262
|
|
|
@@ -1365,7 +1299,6 @@ msgstr "Opcions"
|
|
|
1365
1299
|
#. odoo-python
|
|
1366
1300
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1367
1301
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1368
|
-
#, python-format
|
|
1369
1302
|
msgid "Original"
|
|
1370
1303
|
msgstr "Original"
|
|
1371
1304
|
|
|
@@ -1382,7 +1315,6 @@ msgstr "Original"
|
|
|
1382
1315
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1383
1316
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1384
1317
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1385
|
-
#, python-format
|
|
1386
1318
|
msgid "Partner"
|
|
1387
1319
|
msgstr "Partner"
|
|
1388
1320
|
|
|
@@ -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 partner"
|
|
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 ""
|
|
1409
1339
|
|
|
@@ -1413,7 +1343,6 @@ msgstr ""
|
|
|
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 partner"
|
|
1419
1348
|
|
|
@@ -1444,7 +1373,6 @@ msgstr "Percentatges"
|
|
|
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 del per??ode"
|
|
1450
1378
|
|
|
@@ -1456,7 +1384,6 @@ msgstr "Per??odes"
|
|
|
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 ""
|
|
1462
1389
|
|
|
@@ -1464,7 +1391,6 @@ msgstr ""
|
|
|
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 ""
|
|
1470
1396
|
|
|
@@ -1501,7 +1427,6 @@ msgstr ""
|
|
|
1501
1427
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1502
1428
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1503
1429
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1504
|
-
#, python-format
|
|
1505
1430
|
msgid "Ref - Label"
|
|
1506
1431
|
msgstr ""
|
|
1507
1432
|
|
|
@@ -1517,7 +1442,6 @@ msgstr "Acci?? d'informe"
|
|
|
1517
1442
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1518
1443
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1519
1444
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1520
|
-
#, python-format
|
|
1521
1445
|
msgid "Residual"
|
|
1522
1446
|
msgstr "Residual"
|
|
1523
1447
|
|
|
@@ -1525,7 +1449,6 @@ msgstr "Residual"
|
|
|
1525
1449
|
#. odoo-python
|
|
1526
1450
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1527
1451
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1528
|
-
#, python-format
|
|
1529
1452
|
msgid "Sequence"
|
|
1530
1453
|
msgstr "Seq????ncia"
|
|
1531
1454
|
|
|
@@ -1537,7 +1460,6 @@ msgstr "Seq????ncia"
|
|
|
1537
1460
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1538
1461
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1539
1462
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1540
|
-
#, python-format
|
|
1541
1463
|
msgid "Show"
|
|
1542
1464
|
msgstr "Mostrar"
|
|
1543
1465
|
|
|
@@ -1570,7 +1492,6 @@ msgstr "Mostrar detalls de partner"
|
|
|
1570
1492
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1571
1493
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1572
1494
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1573
|
-
#, python-format
|
|
1574
1495
|
msgid "Show foreign currency"
|
|
1575
1496
|
msgstr "Mostrar divisa estrangera"
|
|
1576
1497
|
|
|
@@ -1605,7 +1526,6 @@ msgstr "Compte inicial del rang"
|
|
|
1605
1526
|
#. odoo-python
|
|
1606
1527
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1607
1528
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1608
|
-
#, python-format
|
|
1609
1529
|
msgid "TOTAL"
|
|
1610
1530
|
msgstr ""
|
|
1611
1531
|
|
|
@@ -1634,7 +1554,6 @@ msgstr ""
|
|
|
1634
1554
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1635
1555
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1636
1556
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1637
|
-
#, python-format
|
|
1638
1557
|
msgid "Target moves filter"
|
|
1639
1558
|
msgstr ""
|
|
1640
1559
|
|
|
@@ -1642,7 +1561,6 @@ msgstr ""
|
|
|
1642
1561
|
#. odoo-python
|
|
1643
1562
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1644
1563
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1645
|
-
#, python-format
|
|
1646
1564
|
msgid "Tax"
|
|
1647
1565
|
msgstr "Impost"
|
|
1648
1566
|
|
|
@@ -1655,21 +1573,18 @@ msgstr "Total impost"
|
|
|
1655
1573
|
#. module: account_financial_report
|
|
1656
1574
|
#. odoo-python
|
|
1657
1575
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1658
|
-
#, python-format
|
|
1659
1576
|
msgid "Tax Balance"
|
|
1660
1577
|
msgstr "Saldo d'impostos"
|
|
1661
1578
|
|
|
1662
1579
|
#. module: account_financial_report
|
|
1663
1580
|
#. odoo-python
|
|
1664
1581
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1665
|
-
#, python-format
|
|
1666
1582
|
msgid "Tax Credit"
|
|
1667
1583
|
msgstr ""
|
|
1668
1584
|
|
|
1669
1585
|
#. module: account_financial_report
|
|
1670
1586
|
#. odoo-python
|
|
1671
1587
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1672
|
-
#, python-format
|
|
1673
1588
|
msgid "Tax Debit"
|
|
1674
1589
|
msgstr ""
|
|
1675
1590
|
|
|
@@ -1677,14 +1592,12 @@ msgstr ""
|
|
|
1677
1592
|
#. odoo-python
|
|
1678
1593
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1679
1594
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1680
|
-
#, python-format
|
|
1681
1595
|
msgid "Tax Groups"
|
|
1682
1596
|
msgstr "Grups d'impostos"
|
|
1683
1597
|
|
|
1684
1598
|
#. module: account_financial_report
|
|
1685
1599
|
#. odoo-python
|
|
1686
1600
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1687
|
-
#, python-format
|
|
1688
1601
|
msgid "Tax Initial balance"
|
|
1689
1602
|
msgstr ""
|
|
1690
1603
|
|
|
@@ -1692,7 +1605,6 @@ msgstr ""
|
|
|
1692
1605
|
#. odoo-python
|
|
1693
1606
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1694
1607
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1695
|
-
#, python-format
|
|
1696
1608
|
msgid "Tax Tags"
|
|
1697
1609
|
msgstr "Etiquetes d'impostos"
|
|
1698
1610
|
|
|
@@ -1700,7 +1612,6 @@ msgstr "Etiquetes d'impostos"
|
|
|
1700
1612
|
#. odoo-python
|
|
1701
1613
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1702
1614
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1703
|
-
#, python-format
|
|
1704
1615
|
msgid "Tax ending balance"
|
|
1705
1616
|
msgstr ""
|
|
1706
1617
|
|
|
@@ -1716,14 +1627,12 @@ msgstr ""
|
|
|
1716
1627
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1717
1628
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1718
1629
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1719
|
-
#, python-format
|
|
1720
1630
|
msgid "Taxes"
|
|
1721
1631
|
msgstr "Impostos"
|
|
1722
1632
|
|
|
1723
1633
|
#. module: account_financial_report
|
|
1724
1634
|
#. odoo-python
|
|
1725
1635
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1726
|
-
#, python-format
|
|
1727
1636
|
msgid ""
|
|
1728
1637
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1729
1638
|
"the same."
|
|
@@ -1734,7 +1643,6 @@ msgstr ""
|
|
|
1734
1643
|
#. module: account_financial_report
|
|
1735
1644
|
#. odoo-python
|
|
1736
1645
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1737
|
-
#, python-format
|
|
1738
1646
|
msgid ""
|
|
1739
1647
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1740
1648
|
"same."
|
|
@@ -1745,7 +1653,6 @@ msgstr ""
|
|
|
1745
1653
|
#. module: account_financial_report
|
|
1746
1654
|
#. odoo-python
|
|
1747
1655
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1748
|
-
#, python-format
|
|
1749
1656
|
msgid ""
|
|
1750
1657
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1751
1658
|
msgstr ""
|
|
@@ -1755,7 +1662,6 @@ msgstr ""
|
|
|
1755
1662
|
#. module: account_financial_report
|
|
1756
1663
|
#. odoo-python
|
|
1757
1664
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1758
|
-
#, python-format
|
|
1759
1665
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1760
1666
|
msgstr "El nivell de jerarquia pel filtre ha de ser m??s gran que 0."
|
|
1761
1667
|
|
|
@@ -1780,7 +1686,6 @@ msgstr "Fins:"
|
|
|
1780
1686
|
#. odoo-python
|
|
1781
1687
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1782
1688
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1783
|
-
#, python-format
|
|
1784
1689
|
msgid "Total"
|
|
1785
1690
|
msgstr "Total"
|
|
1786
1691
|
|
|
@@ -1791,7 +1696,6 @@ msgstr "Total"
|
|
|
1791
1696
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1792
1697
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1793
1698
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1794
|
-
#, python-format
|
|
1795
1699
|
msgid "Trial Balance"
|
|
1796
1700
|
msgstr "Balan?? de sumes i saldos"
|
|
1797
1701
|
|
|
@@ -1881,7 +1785,7 @@ msgstr "Informe d'IVA XLSX"
|
|
|
1881
1785
|
#. module: account_financial_report
|
|
1882
1786
|
#. odoo-python
|
|
1883
1787
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1884
|
-
#, fuzzy
|
|
1788
|
+
#, fuzzy
|
|
1885
1789
|
msgid "Vat Report"
|
|
1886
1790
|
msgstr "Informe extracte"
|
|
1887
1791
|
|
|
@@ -1923,7 +1827,6 @@ msgstr "Amb el nom de compte"
|
|
|
1923
1827
|
#. module: account_financial_report
|
|
1924
1828
|
#. odoo-python
|
|
1925
1829
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1926
|
-
#, python-format
|
|
1927
1830
|
msgid "Without analytic account"
|
|
1928
1831
|
msgstr ""
|
|
1929
1832
|
|
|
@@ -1933,14 +1836,12 @@ msgstr ""
|
|
|
1933
1836
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1934
1837
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1935
1838
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1936
|
-
#, python-format
|
|
1937
1839
|
msgid "Yes"
|
|
1938
1840
|
msgstr "S??"
|
|
1939
1841
|
|
|
1940
1842
|
#. module: account_financial_report
|
|
1941
1843
|
#. odoo-python
|
|
1942
1844
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1943
|
-
#, python-format
|
|
1944
1845
|
msgid "future"
|
|
1945
1846
|
msgstr "futur"
|
|
1946
1847
|
|