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 "Sammanfattning XLSX Konto Finansiell Rapport"
|
|
|
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 "Konto"
|
|
107
106
|
|
|
@@ -134,7 +133,6 @@ msgstr "Konto grupp"
|
|
|
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 "Konto namn"
|
|
140
138
|
|
|
@@ -142,7 +140,6 @@ msgstr "Konto namn"
|
|
|
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 "Konto vid 0 filter"
|
|
148
145
|
|
|
@@ -152,7 +149,6 @@ msgstr "Konto vid 0 filter"
|
|
|
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 "Kontosaldo vid 0 filter"
|
|
158
154
|
|
|
@@ -188,7 +184,6 @@ msgstr ""
|
|
|
188
184
|
#. module: account_financial_report
|
|
189
185
|
#. odoo-python
|
|
190
186
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
191
|
-
#, python-format
|
|
192
187
|
msgid "Age ≤ 120 d."
|
|
193
188
|
msgstr "Ålder ≤ 120 d."
|
|
194
189
|
|
|
@@ -204,7 +199,6 @@ msgstr ""
|
|
|
204
199
|
#. module: account_financial_report
|
|
205
200
|
#. odoo-python
|
|
206
201
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
207
|
-
#, python-format
|
|
208
202
|
msgid "Age ≤ 30 d."
|
|
209
203
|
msgstr "Ålder ≤ 30 d."
|
|
210
204
|
|
|
@@ -220,7 +214,6 @@ msgstr ""
|
|
|
220
214
|
#. module: account_financial_report
|
|
221
215
|
#. odoo-python
|
|
222
216
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
223
|
-
#, python-format
|
|
224
217
|
msgid "Age ≤ 60 d."
|
|
225
218
|
msgstr "Ålder ≤ 60 d."
|
|
226
219
|
|
|
@@ -236,7 +229,6 @@ msgstr ""
|
|
|
236
229
|
#. module: account_financial_report
|
|
237
230
|
#. odoo-python
|
|
238
231
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
239
|
-
#, python-format
|
|
240
232
|
msgid "Age ≤ 90 d."
|
|
241
233
|
msgstr "Ålder ≤ 90 d."
|
|
242
234
|
|
|
@@ -247,7 +239,6 @@ msgstr "Ålder ≤ 90 d."
|
|
|
247
239
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
248
240
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
249
241
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
250
|
-
#, python-format
|
|
251
242
|
msgid "Aged Partner Balance"
|
|
252
243
|
msgstr "Äldre kontakter balans"
|
|
253
244
|
|
|
@@ -279,7 +270,6 @@ msgstr "Äldre kontakt balans XLSX"
|
|
|
279
270
|
#. module: account_financial_report
|
|
280
271
|
#. odoo-python
|
|
281
272
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
282
|
-
#, python-format
|
|
283
273
|
msgid "All"
|
|
284
274
|
msgstr "Alla"
|
|
285
275
|
|
|
@@ -311,7 +301,6 @@ msgstr "Alla bokförda verifikat"
|
|
|
311
301
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
312
302
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
313
303
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
314
|
-
#, python-format
|
|
315
304
|
msgid "All entries"
|
|
316
305
|
msgstr "Alla verifikat"
|
|
317
306
|
|
|
@@ -325,7 +314,6 @@ msgstr "Alla verifikat"
|
|
|
325
314
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
326
315
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
327
316
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
328
|
-
#, python-format
|
|
329
317
|
msgid "All posted entries"
|
|
330
318
|
msgstr "Alla bokförda verifikat"
|
|
331
319
|
|
|
@@ -337,7 +325,6 @@ msgstr "Belopp val."
|
|
|
337
325
|
#. module: account_financial_report
|
|
338
326
|
#. odoo-python
|
|
339
327
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
340
|
-
#, python-format
|
|
341
328
|
msgid "Amount Currency"
|
|
342
329
|
msgstr "Belopp valuta"
|
|
343
330
|
|
|
@@ -345,7 +332,6 @@ msgstr "Belopp valuta"
|
|
|
345
332
|
#. odoo-python
|
|
346
333
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
347
334
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
348
|
-
#, python-format
|
|
349
335
|
msgid "Amount cur."
|
|
350
336
|
msgstr "Belopp val."
|
|
351
337
|
|
|
@@ -359,7 +345,6 @@ msgstr "Objekt konto"
|
|
|
359
345
|
#. odoo-python
|
|
360
346
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
361
347
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
362
|
-
#, python-format
|
|
363
348
|
msgid "Analytic Distribution"
|
|
364
349
|
msgstr "Objekt distribution"
|
|
365
350
|
|
|
@@ -378,21 +363,18 @@ msgstr "Basbelopp"
|
|
|
378
363
|
#. module: account_financial_report
|
|
379
364
|
#. odoo-python
|
|
380
365
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
381
|
-
#, python-format
|
|
382
366
|
msgid "Base Balance"
|
|
383
367
|
msgstr "Brundbalans"
|
|
384
368
|
|
|
385
369
|
#. module: account_financial_report
|
|
386
370
|
#. odoo-python
|
|
387
371
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
388
|
-
#, python-format
|
|
389
372
|
msgid "Base Credit"
|
|
390
373
|
msgstr "Baskredit"
|
|
391
374
|
|
|
392
375
|
#. module: account_financial_report
|
|
393
376
|
#. odoo-python
|
|
394
377
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
395
|
-
#, python-format
|
|
396
378
|
msgid "Base Debit"
|
|
397
379
|
msgstr "Grunddebitering"
|
|
398
380
|
|
|
@@ -405,7 +387,6 @@ msgstr "Baserat på"
|
|
|
405
387
|
#. module: account_financial_report
|
|
406
388
|
#. odoo-python
|
|
407
389
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
408
|
-
#, python-format
|
|
409
390
|
msgid "Based on"
|
|
410
391
|
msgstr "Baserat på"
|
|
411
392
|
|
|
@@ -423,7 +404,6 @@ msgstr "Avbryt"
|
|
|
423
404
|
#. odoo-python
|
|
424
405
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
425
406
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
426
|
-
#, python-format
|
|
427
407
|
msgid "Centralize filter"
|
|
428
408
|
msgstr "Centralisera filtret"
|
|
429
409
|
|
|
@@ -443,7 +423,6 @@ msgstr "Undergrupper"
|
|
|
443
423
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
444
424
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
445
425
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
446
|
-
#, python-format
|
|
447
426
|
msgid "Code"
|
|
448
427
|
msgstr "Kod"
|
|
449
428
|
|
|
@@ -458,7 +437,6 @@ msgstr "Kod"
|
|
|
458
437
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
459
438
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
460
439
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
461
|
-
#, python-format
|
|
462
440
|
msgid "Company"
|
|
463
441
|
msgstr "Företag"
|
|
464
442
|
|
|
@@ -511,7 +489,6 @@ msgstr "Skapat den"
|
|
|
511
489
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
512
490
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
513
491
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
514
|
-
#, python-format
|
|
515
492
|
msgid "Credit"
|
|
516
493
|
msgstr "Kredit"
|
|
517
494
|
|
|
@@ -519,7 +496,6 @@ msgstr "Kredit"
|
|
|
519
496
|
#. odoo-python
|
|
520
497
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
521
498
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
522
|
-
#, python-format
|
|
523
499
|
msgid "Cumul cur."
|
|
524
500
|
msgstr "Kumulativ cur."
|
|
525
501
|
|
|
@@ -527,7 +503,6 @@ msgstr "Kumulativ cur."
|
|
|
527
503
|
#. odoo-python
|
|
528
504
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
529
505
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
530
|
-
#, python-format
|
|
531
506
|
msgid "Cumul. Bal."
|
|
532
507
|
msgstr "Cumulation. Bal."
|
|
533
508
|
|
|
@@ -536,7 +511,6 @@ msgstr "Cumulation. Bal."
|
|
|
536
511
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
537
512
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
538
513
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
539
|
-
#, python-format
|
|
540
514
|
msgid "Cur."
|
|
541
515
|
msgstr "Valuta"
|
|
542
516
|
|
|
@@ -544,7 +518,6 @@ msgstr "Valuta"
|
|
|
544
518
|
#. odoo-python
|
|
545
519
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
546
520
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
547
|
-
#, python-format
|
|
548
521
|
msgid "Cur. Original"
|
|
549
522
|
msgstr "Valuta original"
|
|
550
523
|
|
|
@@ -552,14 +525,12 @@ msgstr "Valuta original"
|
|
|
552
525
|
#. odoo-python
|
|
553
526
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
554
527
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
555
|
-
#, python-format
|
|
556
528
|
msgid "Cur. Residual"
|
|
557
529
|
msgstr "Valuta, resterande"
|
|
558
530
|
|
|
559
531
|
#. module: account_financial_report
|
|
560
532
|
#. odoo-python
|
|
561
533
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
562
|
-
#, python-format
|
|
563
534
|
msgid "Currency"
|
|
564
535
|
msgstr "Valuta"
|
|
565
536
|
|
|
@@ -567,7 +538,6 @@ msgstr "Valuta"
|
|
|
567
538
|
#. odoo-python
|
|
568
539
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
569
540
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
570
|
-
#, python-format
|
|
571
541
|
msgid "Current"
|
|
572
542
|
msgstr "Nuvarande"
|
|
573
543
|
|
|
@@ -582,7 +552,6 @@ msgstr "Nuvarande"
|
|
|
582
552
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
583
553
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
584
554
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
585
|
-
#, python-format
|
|
586
555
|
msgid "Date"
|
|
587
556
|
msgstr "Datum"
|
|
588
557
|
|
|
@@ -614,14 +583,12 @@ msgstr "Datum, till och med"
|
|
|
614
583
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
615
584
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
616
585
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
617
|
-
#, python-format
|
|
618
586
|
msgid "Date at filter"
|
|
619
587
|
msgstr "Datumfilter"
|
|
620
588
|
|
|
621
589
|
#. module: account_financial_report
|
|
622
590
|
#. odoo-python
|
|
623
591
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
624
|
-
#, python-format
|
|
625
592
|
msgid "Date from"
|
|
626
593
|
msgstr "Datum, från"
|
|
627
594
|
|
|
@@ -640,14 +607,12 @@ msgstr "Datumintervall"
|
|
|
640
607
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
641
608
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
642
609
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
643
|
-
#, python-format
|
|
644
610
|
msgid "Date range filter"
|
|
645
611
|
msgstr "Datumintervall filter"
|
|
646
612
|
|
|
647
613
|
#. module: account_financial_report
|
|
648
614
|
#. odoo-python
|
|
649
615
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
650
|
-
#, python-format
|
|
651
616
|
msgid "Date to"
|
|
652
617
|
msgstr "Datum till"
|
|
653
618
|
|
|
@@ -661,7 +626,6 @@ msgstr "Datum till"
|
|
|
661
626
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
662
627
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
663
628
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
664
|
-
#, python-format
|
|
665
629
|
msgid "Debit"
|
|
666
630
|
msgstr "Debitera"
|
|
667
631
|
|
|
@@ -670,7 +634,6 @@ msgstr "Debitera"
|
|
|
670
634
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
671
635
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
672
636
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
673
|
-
#, python-format
|
|
674
637
|
msgid "Description"
|
|
675
638
|
msgstr "Beskrivning"
|
|
676
639
|
|
|
@@ -731,7 +694,6 @@ msgstr ""
|
|
|
731
694
|
#. odoo-python
|
|
732
695
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
733
696
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
734
|
-
#, python-format
|
|
735
697
|
msgid "Due date"
|
|
736
698
|
msgstr "Förfallodatum"
|
|
737
699
|
|
|
@@ -769,7 +731,6 @@ msgstr "Slutkonto i ett intervall"
|
|
|
769
731
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
770
732
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
771
733
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
772
|
-
#, python-format
|
|
773
734
|
msgid "Ending balance"
|
|
774
735
|
msgstr "Utgående balans"
|
|
775
736
|
|
|
@@ -785,7 +746,6 @@ msgstr ""
|
|
|
785
746
|
#. module: account_financial_report
|
|
786
747
|
#. odoo-python
|
|
787
748
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
788
|
-
#, python-format
|
|
789
749
|
msgid "Entries sorted by"
|
|
790
750
|
msgstr "Inlägg sorterade efter"
|
|
791
751
|
|
|
@@ -799,21 +759,18 @@ msgstr "Inlägg sorterade efter"
|
|
|
799
759
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
800
760
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
801
761
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
802
|
-
#, python-format
|
|
803
762
|
msgid "Entry"
|
|
804
763
|
msgstr "Inlägg"
|
|
805
764
|
|
|
806
765
|
#. module: account_financial_report
|
|
807
766
|
#. odoo-python
|
|
808
767
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
809
|
-
#, python-format
|
|
810
768
|
msgid "Entry number"
|
|
811
769
|
msgstr "Ingångsnummer"
|
|
812
770
|
|
|
813
771
|
#. module: account_financial_report
|
|
814
772
|
#. odoo-javascript
|
|
815
773
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
816
|
-
#, python-format
|
|
817
774
|
msgid "Export"
|
|
818
775
|
msgstr "Exportera"
|
|
819
776
|
|
|
@@ -894,7 +851,6 @@ msgstr "Från:"
|
|
|
894
851
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
895
852
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
896
853
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
897
|
-
#, python-format
|
|
898
854
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
899
855
|
msgstr "Från: %(date_from)s Till: %(date_to)s"
|
|
900
856
|
|
|
@@ -922,7 +878,6 @@ msgstr "Startdatum"
|
|
|
922
878
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
923
879
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
924
880
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
925
|
-
#, python-format
|
|
926
881
|
msgid "General Ledger"
|
|
927
882
|
msgstr "Huvudbok"
|
|
928
883
|
|
|
@@ -986,7 +941,6 @@ msgstr ""
|
|
|
986
941
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
987
942
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
988
943
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
989
|
-
#, python-format
|
|
990
944
|
msgid "Hide"
|
|
991
945
|
msgstr "Dölja"
|
|
992
946
|
|
|
@@ -1035,7 +989,6 @@ msgstr "Nedre gräns"
|
|
|
1035
989
|
#. module: account_financial_report
|
|
1036
990
|
#. odoo-python
|
|
1037
991
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1038
|
-
#, python-format
|
|
1039
992
|
msgid "Inferior Limit must be greather than zero"
|
|
1040
993
|
msgstr "Inferior Limit måste vara större än noll"
|
|
1041
994
|
|
|
@@ -1062,7 +1015,6 @@ msgstr ""
|
|
|
1062
1015
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1063
1016
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1064
1017
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1065
|
-
#, python-format
|
|
1066
1018
|
msgid "Initial balance"
|
|
1067
1019
|
msgstr "Initial balans"
|
|
1068
1020
|
|
|
@@ -1082,7 +1034,6 @@ msgstr "Konfiguration av intervall"
|
|
|
1082
1034
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1083
1035
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1084
1036
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1085
|
-
#, python-format
|
|
1086
1037
|
msgid "Journal"
|
|
1087
1038
|
msgstr "Verifikat"
|
|
1088
1039
|
|
|
@@ -1102,7 +1053,6 @@ msgstr "Domän för verifikat"
|
|
|
1102
1053
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1103
1054
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1104
1055
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1105
|
-
#, python-format
|
|
1106
1056
|
msgid "Journal Ledger"
|
|
1107
1057
|
msgstr "Journalreskontra"
|
|
1108
1058
|
|
|
@@ -1136,7 +1086,6 @@ msgstr "Journalreskontra XLSX Rapport"
|
|
|
1136
1086
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1137
1087
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1138
1088
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1139
|
-
#, python-format
|
|
1140
1089
|
msgid "Journals"
|
|
1141
1090
|
msgstr "Journaler"
|
|
1142
1091
|
|
|
@@ -1173,7 +1122,6 @@ msgstr "Nivå"
|
|
|
1173
1122
|
#. module: account_financial_report
|
|
1174
1123
|
#. odoo-python
|
|
1175
1124
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1176
|
-
#, python-format
|
|
1177
1125
|
msgid "Level %s"
|
|
1178
1126
|
msgstr "Nivå%s"
|
|
1179
1127
|
|
|
@@ -1182,7 +1130,6 @@ msgstr "Nivå%s"
|
|
|
1182
1130
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1183
1131
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1184
1132
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1185
|
-
#, python-format
|
|
1186
1133
|
msgid "Limit hierarchy levels"
|
|
1187
1134
|
msgstr "Begränsa hierarkinivåer"
|
|
1188
1135
|
|
|
@@ -1196,7 +1143,6 @@ msgstr "Linje"
|
|
|
1196
1143
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1197
1144
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1198
1145
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1199
|
-
#, python-format
|
|
1200
1146
|
msgid "Missing Partner"
|
|
1201
1147
|
msgstr "Saknad partner"
|
|
1202
1148
|
|
|
@@ -1223,7 +1169,6 @@ msgstr "Rörelser"
|
|
|
1223
1169
|
#. module: account_financial_report
|
|
1224
1170
|
#. odoo-python
|
|
1225
1171
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1226
|
-
#, python-format
|
|
1227
1172
|
msgid "Must complete Configuration Lines"
|
|
1228
1173
|
msgstr "Måste komplettera konfigurationslinjerna"
|
|
1229
1174
|
|
|
@@ -1236,15 +1181,11 @@ msgstr "Måste komplettera konfigurationslinjerna"
|
|
|
1236
1181
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1237
1182
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1238
1183
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1239
|
-
#, python-format
|
|
1240
1184
|
msgid "Name"
|
|
1241
1185
|
msgstr "Namn"
|
|
1242
1186
|
|
|
1243
1187
|
#. module: account_financial_report
|
|
1244
|
-
#. odoo-python
|
|
1245
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1246
1188
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1247
|
-
#, python-format
|
|
1248
1189
|
msgid "Name must be unique per report configuration"
|
|
1249
1190
|
msgstr "Namnet måste vara unikt för varje rapportkonfiguration"
|
|
1250
1191
|
|
|
@@ -1252,7 +1193,6 @@ msgstr "Namnet måste vara unikt för varje rapportkonfiguration"
|
|
|
1252
1193
|
#. odoo-python
|
|
1253
1194
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1254
1195
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1255
|
-
#, python-format
|
|
1256
1196
|
msgid "Net"
|
|
1257
1197
|
msgstr "Nät"
|
|
1258
1198
|
|
|
@@ -1262,14 +1202,12 @@ msgstr "Nät"
|
|
|
1262
1202
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1263
1203
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1264
1204
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1265
|
-
#, python-format
|
|
1266
1205
|
msgid "No"
|
|
1267
1206
|
msgstr "Nej"
|
|
1268
1207
|
|
|
1269
1208
|
#. module: account_financial_report
|
|
1270
1209
|
#. odoo-python
|
|
1271
1210
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1272
|
-
#, python-format
|
|
1273
1211
|
msgid "No group"
|
|
1274
1212
|
msgstr "Ingen grupp"
|
|
1275
1213
|
|
|
@@ -1277,7 +1215,6 @@ msgstr "Ingen grupp"
|
|
|
1277
1215
|
#. odoo-python
|
|
1278
1216
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1279
1217
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1280
|
-
#, python-format
|
|
1281
1218
|
msgid "No limit"
|
|
1282
1219
|
msgstr "Utan begränsning"
|
|
1283
1220
|
|
|
@@ -1289,7 +1226,6 @@ msgstr "Ingen"
|
|
|
1289
1226
|
#. module: account_financial_report
|
|
1290
1227
|
#. odoo-python
|
|
1291
1228
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1292
|
-
#, python-format
|
|
1293
1229
|
msgid "Not Posted"
|
|
1294
1230
|
msgstr "Inte bokförd"
|
|
1295
1231
|
|
|
@@ -1312,7 +1248,6 @@ msgstr "OCA bokföringsrapporter"
|
|
|
1312
1248
|
#. odoo-python
|
|
1313
1249
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1314
1250
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1315
|
-
#, python-format
|
|
1316
1251
|
msgid "Older"
|
|
1317
1252
|
msgstr "Äldre"
|
|
1318
1253
|
|
|
@@ -1329,7 +1264,6 @@ msgstr "Endast ett intäktskonto som inte påverkas"
|
|
|
1329
1264
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1330
1265
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1331
1266
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1332
|
-
#, python-format
|
|
1333
1267
|
msgid "Open Items"
|
|
1334
1268
|
msgstr "Öppna föremål"
|
|
1335
1269
|
|
|
@@ -1372,7 +1306,6 @@ msgstr "Alternativ"
|
|
|
1372
1306
|
#. odoo-python
|
|
1373
1307
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1374
1308
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1375
|
-
#, python-format
|
|
1376
1309
|
msgid "Original"
|
|
1377
1310
|
msgstr "Original"
|
|
1378
1311
|
|
|
@@ -1389,7 +1322,6 @@ msgstr "Original"
|
|
|
1389
1322
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1390
1323
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1391
1324
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1392
|
-
#, python-format
|
|
1393
1325
|
msgid "Partner"
|
|
1394
1326
|
msgstr "Kund"
|
|
1395
1327
|
|
|
@@ -1405,14 +1337,12 @@ msgstr ""
|
|
|
1405
1337
|
#. module: account_financial_report
|
|
1406
1338
|
#. odoo-python
|
|
1407
1339
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1408
|
-
#, python-format
|
|
1409
1340
|
msgid "Partner Initial balance"
|
|
1410
1341
|
msgstr "Kund initial balans"
|
|
1411
1342
|
|
|
1412
1343
|
#. module: account_financial_report
|
|
1413
1344
|
#. odoo-python
|
|
1414
1345
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1415
|
-
#, python-format
|
|
1416
1346
|
msgid "Partner cumul aged balance"
|
|
1417
1347
|
msgstr "Partner ackumulerat åldrat saldo"
|
|
1418
1348
|
|
|
@@ -1422,7 +1352,6 @@ msgstr "Partner ackumulerat åldrat saldo"
|
|
|
1422
1352
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1423
1353
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1424
1354
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1425
|
-
#, python-format
|
|
1426
1355
|
msgid "Partner ending balance"
|
|
1427
1356
|
msgstr "Partner utgående balans"
|
|
1428
1357
|
|
|
@@ -1453,7 +1382,6 @@ msgstr "Procent"
|
|
|
1453
1382
|
#. odoo-python
|
|
1454
1383
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1455
1384
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1456
|
-
#, python-format
|
|
1457
1385
|
msgid "Period balance"
|
|
1458
1386
|
msgstr "Periodsaldo"
|
|
1459
1387
|
|
|
@@ -1465,7 +1393,6 @@ msgstr "Perioder"
|
|
|
1465
1393
|
#. module: account_financial_report
|
|
1466
1394
|
#. odoo-python
|
|
1467
1395
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1468
|
-
#, python-format
|
|
1469
1396
|
msgid "Posted"
|
|
1470
1397
|
msgstr "Bokförd"
|
|
1471
1398
|
|
|
@@ -1473,7 +1400,6 @@ msgstr "Bokförd"
|
|
|
1473
1400
|
#. odoo-python
|
|
1474
1401
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1475
1402
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1476
|
-
#, python-format
|
|
1477
1403
|
msgid "Rec."
|
|
1478
1404
|
msgstr "Rec."
|
|
1479
1405
|
|
|
@@ -1511,7 +1437,6 @@ msgstr ""
|
|
|
1511
1437
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1512
1438
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1513
1439
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1514
|
-
#, python-format
|
|
1515
1440
|
msgid "Ref - Label"
|
|
1516
1441
|
msgstr "Ref - etikett"
|
|
1517
1442
|
|
|
@@ -1527,7 +1452,6 @@ msgstr "Rapportera åtgärd"
|
|
|
1527
1452
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1528
1453
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1529
1454
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1530
|
-
#, python-format
|
|
1531
1455
|
msgid "Residual"
|
|
1532
1456
|
msgstr "Återstående"
|
|
1533
1457
|
|
|
@@ -1535,7 +1459,6 @@ msgstr "Återstående"
|
|
|
1535
1459
|
#. odoo-python
|
|
1536
1460
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1537
1461
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1538
|
-
#, python-format
|
|
1539
1462
|
msgid "Sequence"
|
|
1540
1463
|
msgstr "Sekvens"
|
|
1541
1464
|
|
|
@@ -1547,7 +1470,6 @@ msgstr "Sekvens"
|
|
|
1547
1470
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1548
1471
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1549
1472
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1550
|
-
#, python-format
|
|
1551
1473
|
msgid "Show"
|
|
1552
1474
|
msgstr "Visa"
|
|
1553
1475
|
|
|
@@ -1580,7 +1502,6 @@ msgstr "Visa partnerdetaljer"
|
|
|
1580
1502
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1581
1503
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1582
1504
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1583
|
-
#, python-format
|
|
1584
1505
|
msgid "Show foreign currency"
|
|
1585
1506
|
msgstr "Visa utländsk valuta"
|
|
1586
1507
|
|
|
@@ -1615,7 +1536,6 @@ msgstr "Påbörjar ett konto inom ett intervall"
|
|
|
1615
1536
|
#. odoo-python
|
|
1616
1537
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1617
1538
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1618
|
-
#, python-format
|
|
1619
1539
|
msgid "TOTAL"
|
|
1620
1540
|
msgstr ""
|
|
1621
1541
|
|
|
@@ -1644,7 +1564,6 @@ msgstr "Målrörelser"
|
|
|
1644
1564
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1645
1565
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1646
1566
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1647
|
-
#, python-format
|
|
1648
1567
|
msgid "Target moves filter"
|
|
1649
1568
|
msgstr "Mål flyttar filter"
|
|
1650
1569
|
|
|
@@ -1652,7 +1571,6 @@ msgstr "Mål flyttar filter"
|
|
|
1652
1571
|
#. odoo-python
|
|
1653
1572
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1654
1573
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1655
|
-
#, python-format
|
|
1656
1574
|
msgid "Tax"
|
|
1657
1575
|
msgstr "Skatt"
|
|
1658
1576
|
|
|
@@ -1665,21 +1583,18 @@ msgstr "Skattesats"
|
|
|
1665
1583
|
#. module: account_financial_report
|
|
1666
1584
|
#. odoo-python
|
|
1667
1585
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1668
|
-
#, python-format
|
|
1669
1586
|
msgid "Tax Balance"
|
|
1670
1587
|
msgstr "Skattebalans"
|
|
1671
1588
|
|
|
1672
1589
|
#. module: account_financial_report
|
|
1673
1590
|
#. odoo-python
|
|
1674
1591
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1675
|
-
#, python-format
|
|
1676
1592
|
msgid "Tax Credit"
|
|
1677
1593
|
msgstr "Skattekreditering"
|
|
1678
1594
|
|
|
1679
1595
|
#. module: account_financial_report
|
|
1680
1596
|
#. odoo-python
|
|
1681
1597
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1682
|
-
#, python-format
|
|
1683
1598
|
msgid "Tax Debit"
|
|
1684
1599
|
msgstr "Skattedebitering"
|
|
1685
1600
|
|
|
@@ -1687,14 +1602,12 @@ msgstr "Skattedebitering"
|
|
|
1687
1602
|
#. odoo-python
|
|
1688
1603
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1689
1604
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1690
|
-
#, python-format
|
|
1691
1605
|
msgid "Tax Groups"
|
|
1692
1606
|
msgstr "Skattegrupper"
|
|
1693
1607
|
|
|
1694
1608
|
#. module: account_financial_report
|
|
1695
1609
|
#. odoo-python
|
|
1696
1610
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1697
|
-
#, python-format
|
|
1698
1611
|
msgid "Tax Initial balance"
|
|
1699
1612
|
msgstr "Skatt, ingående balans"
|
|
1700
1613
|
|
|
@@ -1702,7 +1615,6 @@ msgstr "Skatt, ingående balans"
|
|
|
1702
1615
|
#. odoo-python
|
|
1703
1616
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1704
1617
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1705
|
-
#, python-format
|
|
1706
1618
|
msgid "Tax Tags"
|
|
1707
1619
|
msgstr "Skattetaggar"
|
|
1708
1620
|
|
|
@@ -1710,7 +1622,6 @@ msgstr "Skattetaggar"
|
|
|
1710
1622
|
#. odoo-python
|
|
1711
1623
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1712
1624
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1713
|
-
#, python-format
|
|
1714
1625
|
msgid "Tax ending balance"
|
|
1715
1626
|
msgstr "Slutskatt"
|
|
1716
1627
|
|
|
@@ -1726,14 +1637,12 @@ msgstr "Skatt, ingående balans"
|
|
|
1726
1637
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1727
1638
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1728
1639
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1729
|
-
#, python-format
|
|
1730
1640
|
msgid "Taxes"
|
|
1731
1641
|
msgstr "Skatter"
|
|
1732
1642
|
|
|
1733
1643
|
#. module: account_financial_report
|
|
1734
1644
|
#. odoo-python
|
|
1735
1645
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1736
|
-
#, python-format
|
|
1737
1646
|
msgid ""
|
|
1738
1647
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1739
1648
|
"the same."
|
|
@@ -1744,7 +1653,6 @@ msgstr ""
|
|
|
1744
1653
|
#. module: account_financial_report
|
|
1745
1654
|
#. odoo-python
|
|
1746
1655
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1747
|
-
#, python-format
|
|
1748
1656
|
msgid ""
|
|
1749
1657
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1750
1658
|
"same."
|
|
@@ -1755,7 +1663,6 @@ msgstr ""
|
|
|
1755
1663
|
#. module: account_financial_report
|
|
1756
1664
|
#. odoo-python
|
|
1757
1665
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1758
|
-
#, python-format
|
|
1759
1666
|
msgid ""
|
|
1760
1667
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1761
1668
|
msgstr ""
|
|
@@ -1764,7 +1671,6 @@ msgstr ""
|
|
|
1764
1671
|
#. module: account_financial_report
|
|
1765
1672
|
#. odoo-python
|
|
1766
1673
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1767
|
-
#, python-format
|
|
1768
1674
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1769
1675
|
msgstr "Hierarkinivån att filtrera på måste vara större än 0."
|
|
1770
1676
|
|
|
@@ -1789,7 +1695,6 @@ msgstr "Till:"
|
|
|
1789
1695
|
#. odoo-python
|
|
1790
1696
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1791
1697
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1792
|
-
#, python-format
|
|
1793
1698
|
msgid "Total"
|
|
1794
1699
|
msgstr "Total"
|
|
1795
1700
|
|
|
@@ -1800,7 +1705,6 @@ msgstr "Total"
|
|
|
1800
1705
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1801
1706
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1802
1707
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1803
|
-
#, python-format
|
|
1804
1708
|
msgid "Trial Balance"
|
|
1805
1709
|
msgstr "Provbalans"
|
|
1806
1710
|
|
|
@@ -1892,7 +1796,6 @@ msgstr "Momsrapport XLSX"
|
|
|
1892
1796
|
#. module: account_financial_report
|
|
1893
1797
|
#. odoo-python
|
|
1894
1798
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1895
|
-
#, python-format
|
|
1896
1799
|
msgid "Vat Report"
|
|
1897
1800
|
msgstr "Momsrapport"
|
|
1898
1801
|
|
|
@@ -1933,7 +1836,6 @@ msgstr "Med kontonamn"
|
|
|
1933
1836
|
#. module: account_financial_report
|
|
1934
1837
|
#. odoo-python
|
|
1935
1838
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1936
|
-
#, python-format
|
|
1937
1839
|
msgid "Without analytic account"
|
|
1938
1840
|
msgstr ""
|
|
1939
1841
|
|
|
@@ -1943,14 +1845,12 @@ msgstr ""
|
|
|
1943
1845
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1944
1846
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1945
1847
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1946
|
-
#, python-format
|
|
1947
1848
|
msgid "Yes"
|
|
1948
1849
|
msgstr "Ja"
|
|
1949
1850
|
|
|
1950
1851
|
#. module: account_financial_report
|
|
1951
1852
|
#. odoo-python
|
|
1952
1853
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1953
|
-
#, python-format
|
|
1954
1854
|
msgid "future"
|
|
1955
1855
|
msgstr "framtid"
|
|
1956
1856
|
|