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 "Abstract XLSX Account Financial Report"
|
|
|
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 "Rekening"
|
|
110
109
|
|
|
@@ -137,7 +136,6 @@ msgstr "Rekening groep"
|
|
|
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 "Rekening naam"
|
|
143
141
|
|
|
@@ -145,7 +143,6 @@ msgstr "Rekening naam"
|
|
|
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 "Rekening balans met 0 filter"
|
|
151
148
|
|
|
@@ -155,7 +152,6 @@ msgstr "Rekening balans met 0 filter"
|
|
|
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 "Rekening balans met 0 filter"
|
|
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 "Ouderdomsanalyse"
|
|
248
239
|
|
|
@@ -274,7 +265,6 @@ msgstr "Ouderdomsanalyse 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 "Alle"
|
|
280
270
|
|
|
@@ -306,7 +296,6 @@ msgstr "Alle Geboekte Regels"
|
|
|
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 "Alle regels"
|
|
312
301
|
|
|
@@ -320,7 +309,6 @@ msgstr "Alle regels"
|
|
|
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 "Alle geboekte regels"
|
|
326
314
|
|
|
@@ -332,7 +320,6 @@ msgstr "Valutabedrag."
|
|
|
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 "Valutabedrag"
|
|
338
325
|
|
|
@@ -340,7 +327,6 @@ msgstr "Valutabedrag"
|
|
|
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 "Valutabedrag."
|
|
346
332
|
|
|
@@ -354,7 +340,6 @@ msgstr "Analytische Rekening"
|
|
|
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 "Analytische verdeling"
|
|
360
345
|
|
|
@@ -373,21 +358,18 @@ msgstr "Basisbedrag"
|
|
|
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 "Balans"
|
|
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 "Balans Credit"
|
|
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 "Balans Debet"
|
|
393
375
|
|
|
@@ -400,7 +382,6 @@ msgstr "Gebaseerd op"
|
|
|
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 "Gebaseerd op"
|
|
406
387
|
|
|
@@ -418,7 +399,6 @@ msgstr "Annuleren"
|
|
|
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 "Centralisatie filter"
|
|
424
404
|
|
|
@@ -438,7 +418,6 @@ msgstr "Onderliggende groepen"
|
|
|
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 "Code"
|
|
444
423
|
|
|
@@ -453,7 +432,6 @@ msgstr "Code"
|
|
|
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 "Bedrijf"
|
|
459
437
|
|
|
@@ -506,7 +484,6 @@ msgstr "Gecre??erd op"
|
|
|
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 "Credit"
|
|
512
489
|
|
|
@@ -514,7 +491,7 @@ msgstr "Credit"
|
|
|
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
|
-
#, fuzzy
|
|
494
|
+
#, fuzzy
|
|
518
495
|
msgid "Cumul cur."
|
|
519
496
|
msgstr "Cumul cur."
|
|
520
497
|
|
|
@@ -522,7 +499,6 @@ msgstr "Cumul cur."
|
|
|
522
499
|
#. odoo-python
|
|
523
500
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
524
501
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
525
|
-
#, python-format
|
|
526
502
|
msgid "Cumul. Bal."
|
|
527
503
|
msgstr "Cumulatief Bal."
|
|
528
504
|
|
|
@@ -531,7 +507,6 @@ msgstr "Cumulatief Bal."
|
|
|
531
507
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
532
508
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
533
509
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
534
|
-
#, python-format
|
|
535
510
|
msgid "Cur."
|
|
536
511
|
msgstr "Huidig."
|
|
537
512
|
|
|
@@ -539,7 +514,6 @@ msgstr "Huidig."
|
|
|
539
514
|
#. odoo-python
|
|
540
515
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
541
516
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
542
|
-
#, python-format
|
|
543
517
|
msgid "Cur. Original"
|
|
544
518
|
msgstr "Huidig. Origineel"
|
|
545
519
|
|
|
@@ -547,14 +521,12 @@ msgstr "Huidig. Origineel"
|
|
|
547
521
|
#. odoo-python
|
|
548
522
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
549
523
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
550
|
-
#, python-format
|
|
551
524
|
msgid "Cur. Residual"
|
|
552
525
|
msgstr "Huidig. Rest"
|
|
553
526
|
|
|
554
527
|
#. module: account_financial_report
|
|
555
528
|
#. odoo-python
|
|
556
529
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
557
|
-
#, python-format
|
|
558
530
|
msgid "Currency"
|
|
559
531
|
msgstr "Valuta"
|
|
560
532
|
|
|
@@ -562,7 +534,6 @@ msgstr "Valuta"
|
|
|
562
534
|
#. odoo-python
|
|
563
535
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
564
536
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
565
|
-
#, python-format
|
|
566
537
|
msgid "Current"
|
|
567
538
|
msgstr "Huidig"
|
|
568
539
|
|
|
@@ -577,7 +548,6 @@ msgstr "Huidig"
|
|
|
577
548
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
578
549
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
579
550
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
580
|
-
#, python-format
|
|
581
551
|
msgid "Date"
|
|
582
552
|
msgstr "Datum"
|
|
583
553
|
|
|
@@ -609,14 +579,12 @@ msgstr "Datum tot"
|
|
|
609
579
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
610
580
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
611
581
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
612
|
-
#, python-format
|
|
613
582
|
msgid "Date at filter"
|
|
614
583
|
msgstr "Datum van filter"
|
|
615
584
|
|
|
616
585
|
#. module: account_financial_report
|
|
617
586
|
#. odoo-python
|
|
618
587
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
619
|
-
#, python-format
|
|
620
588
|
msgid "Date from"
|
|
621
589
|
msgstr "Datum vanaf"
|
|
622
590
|
|
|
@@ -635,14 +603,12 @@ msgstr "Datumreeks"
|
|
|
635
603
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
636
604
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
637
605
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
638
|
-
#, python-format
|
|
639
606
|
msgid "Date range filter"
|
|
640
607
|
msgstr "Datumreeks filter"
|
|
641
608
|
|
|
642
609
|
#. module: account_financial_report
|
|
643
610
|
#. odoo-python
|
|
644
611
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
645
|
-
#, python-format
|
|
646
612
|
msgid "Date to"
|
|
647
613
|
msgstr "Datum vanaf"
|
|
648
614
|
|
|
@@ -656,7 +622,6 @@ msgstr "Datum vanaf"
|
|
|
656
622
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
657
623
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
658
624
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
659
|
-
#, python-format
|
|
660
625
|
msgid "Debit"
|
|
661
626
|
msgstr "Debet"
|
|
662
627
|
|
|
@@ -665,7 +630,6 @@ msgstr "Debet"
|
|
|
665
630
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
666
631
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
667
632
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
668
|
-
#, python-format
|
|
669
633
|
msgid "Description"
|
|
670
634
|
msgstr "Omschrijving"
|
|
671
635
|
|
|
@@ -726,7 +690,6 @@ msgstr ""
|
|
|
726
690
|
#. odoo-python
|
|
727
691
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
728
692
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
729
|
-
#, python-format
|
|
730
693
|
msgid "Due date"
|
|
731
694
|
msgstr "Vervaldatum"
|
|
732
695
|
|
|
@@ -764,7 +727,6 @@ msgstr "Laatste rekening in een bereik"
|
|
|
764
727
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
765
728
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
766
729
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
767
|
-
#, python-format
|
|
768
730
|
msgid "Ending balance"
|
|
769
731
|
msgstr "Eindbalans"
|
|
770
732
|
|
|
@@ -780,7 +742,6 @@ msgstr ""
|
|
|
780
742
|
#. module: account_financial_report
|
|
781
743
|
#. odoo-python
|
|
782
744
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
783
|
-
#, python-format
|
|
784
745
|
msgid "Entries sorted by"
|
|
785
746
|
msgstr "Regels gesorteerd op"
|
|
786
747
|
|
|
@@ -794,21 +755,18 @@ msgstr "Regels gesorteerd op"
|
|
|
794
755
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
795
756
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
796
757
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
797
|
-
#, python-format
|
|
798
758
|
msgid "Entry"
|
|
799
759
|
msgstr "Boeking"
|
|
800
760
|
|
|
801
761
|
#. module: account_financial_report
|
|
802
762
|
#. odoo-python
|
|
803
763
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
804
|
-
#, python-format
|
|
805
764
|
msgid "Entry number"
|
|
806
765
|
msgstr "Boekingsnummer"
|
|
807
766
|
|
|
808
767
|
#. module: account_financial_report
|
|
809
768
|
#. odoo-javascript
|
|
810
769
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
811
|
-
#, python-format
|
|
812
770
|
msgid "Export"
|
|
813
771
|
msgstr "Export"
|
|
814
772
|
|
|
@@ -889,7 +847,6 @@ msgstr "Van:"
|
|
|
889
847
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
890
848
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
891
849
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
892
|
-
#, python-format
|
|
893
850
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
894
851
|
msgstr "Van: %(date_from)s Tot: %(date_to)s"
|
|
895
852
|
|
|
@@ -917,7 +874,6 @@ msgstr "Fj startdatum"
|
|
|
917
874
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
918
875
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
919
876
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
920
|
-
#, python-format
|
|
921
877
|
msgid "General Ledger"
|
|
922
878
|
msgstr "Grootboek"
|
|
923
879
|
|
|
@@ -980,7 +936,6 @@ msgstr ""
|
|
|
980
936
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
981
937
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
982
938
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
983
|
-
#, python-format
|
|
984
939
|
msgid "Hide"
|
|
985
940
|
msgstr "Verbergen"
|
|
986
941
|
|
|
@@ -1029,7 +984,6 @@ msgstr ""
|
|
|
1029
984
|
#. module: account_financial_report
|
|
1030
985
|
#. odoo-python
|
|
1031
986
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1032
|
-
#, python-format
|
|
1033
987
|
msgid "Inferior Limit must be greather than zero"
|
|
1034
988
|
msgstr ""
|
|
1035
989
|
|
|
@@ -1056,7 +1010,6 @@ msgstr ""
|
|
|
1056
1010
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1057
1011
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1058
1012
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1059
|
-
#, python-format
|
|
1060
1013
|
msgid "Initial balance"
|
|
1061
1014
|
msgstr "Beginbalans"
|
|
1062
1015
|
|
|
@@ -1076,7 +1029,6 @@ msgstr ""
|
|
|
1076
1029
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1077
1030
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1078
1031
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1079
|
-
#, python-format
|
|
1080
1032
|
msgid "Journal"
|
|
1081
1033
|
msgstr "Dagboek"
|
|
1082
1034
|
|
|
@@ -1096,7 +1048,6 @@ msgstr "Boekingsregels Domein"
|
|
|
1096
1048
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1097
1049
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1098
1050
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1099
|
-
#, python-format
|
|
1100
1051
|
msgid "Journal Ledger"
|
|
1101
1052
|
msgstr "Grootboekbalans"
|
|
1102
1053
|
|
|
@@ -1130,7 +1081,6 @@ msgstr "Grootboekbalans XLSX"
|
|
|
1130
1081
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1131
1082
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1132
1083
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1133
|
-
#, python-format
|
|
1134
1084
|
msgid "Journals"
|
|
1135
1085
|
msgstr "Dagboeken"
|
|
1136
1086
|
|
|
@@ -1167,7 +1117,6 @@ msgstr "Niveau"
|
|
|
1167
1117
|
#. module: account_financial_report
|
|
1168
1118
|
#. odoo-python
|
|
1169
1119
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1170
|
-
#, python-format
|
|
1171
1120
|
msgid "Level %s"
|
|
1172
1121
|
msgstr "Niveau %s"
|
|
1173
1122
|
|
|
@@ -1176,7 +1125,6 @@ msgstr "Niveau %s"
|
|
|
1176
1125
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1177
1126
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1178
1127
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1179
|
-
#, python-format
|
|
1180
1128
|
msgid "Limit hierarchy levels"
|
|
1181
1129
|
msgstr "beperk hirarchie niveaus"
|
|
1182
1130
|
|
|
@@ -1190,7 +1138,6 @@ msgstr "Regel"
|
|
|
1190
1138
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1191
1139
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1192
1140
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1193
|
-
#, python-format
|
|
1194
1141
|
msgid "Missing Partner"
|
|
1195
1142
|
msgstr ""
|
|
1196
1143
|
|
|
@@ -1217,7 +1164,6 @@ msgstr "Boekingen"
|
|
|
1217
1164
|
#. module: account_financial_report
|
|
1218
1165
|
#. odoo-python
|
|
1219
1166
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1220
|
-
#, python-format
|
|
1221
1167
|
msgid "Must complete Configuration Lines"
|
|
1222
1168
|
msgstr ""
|
|
1223
1169
|
|
|
@@ -1230,15 +1176,11 @@ msgstr ""
|
|
|
1230
1176
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1231
1177
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1232
1178
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1233
|
-
#, python-format
|
|
1234
1179
|
msgid "Name"
|
|
1235
1180
|
msgstr "Naam"
|
|
1236
1181
|
|
|
1237
1182
|
#. module: account_financial_report
|
|
1238
|
-
#. odoo-python
|
|
1239
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1240
1183
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1241
|
-
#, python-format
|
|
1242
1184
|
msgid "Name must be unique per report configuration"
|
|
1243
1185
|
msgstr ""
|
|
1244
1186
|
|
|
@@ -1246,7 +1188,6 @@ msgstr ""
|
|
|
1246
1188
|
#. odoo-python
|
|
1247
1189
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1248
1190
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1249
|
-
#, python-format
|
|
1250
1191
|
msgid "Net"
|
|
1251
1192
|
msgstr "Netto"
|
|
1252
1193
|
|
|
@@ -1256,14 +1197,12 @@ msgstr "Netto"
|
|
|
1256
1197
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1257
1198
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1258
1199
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1259
|
-
#, python-format
|
|
1260
1200
|
msgid "No"
|
|
1261
1201
|
msgstr "Nee"
|
|
1262
1202
|
|
|
1263
1203
|
#. module: account_financial_report
|
|
1264
1204
|
#. odoo-python
|
|
1265
1205
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1266
|
-
#, python-format
|
|
1267
1206
|
msgid "No group"
|
|
1268
1207
|
msgstr "Geen groep"
|
|
1269
1208
|
|
|
@@ -1271,7 +1210,6 @@ msgstr "Geen groep"
|
|
|
1271
1210
|
#. odoo-python
|
|
1272
1211
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1273
1212
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1274
|
-
#, python-format
|
|
1275
1213
|
msgid "No limit"
|
|
1276
1214
|
msgstr "geen limiet"
|
|
1277
1215
|
|
|
@@ -1283,7 +1221,6 @@ msgstr "Geen"
|
|
|
1283
1221
|
#. module: account_financial_report
|
|
1284
1222
|
#. odoo-python
|
|
1285
1223
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1286
|
-
#, python-format
|
|
1287
1224
|
msgid "Not Posted"
|
|
1288
1225
|
msgstr "Ongeboekt"
|
|
1289
1226
|
|
|
@@ -1306,7 +1243,6 @@ msgstr "OCA boekhoudkundige rapporten"
|
|
|
1306
1243
|
#. odoo-python
|
|
1307
1244
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1308
1245
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1309
|
-
#, python-format
|
|
1310
1246
|
msgid "Older"
|
|
1311
1247
|
msgstr "Ouder"
|
|
1312
1248
|
|
|
@@ -1323,7 +1259,6 @@ msgstr ""
|
|
|
1323
1259
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1324
1260
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1325
1261
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1326
|
-
#, python-format
|
|
1327
1262
|
msgid "Open Items"
|
|
1328
1263
|
msgstr "Openstaande posten"
|
|
1329
1264
|
|
|
@@ -1366,7 +1301,6 @@ msgstr "Opties"
|
|
|
1366
1301
|
#. odoo-python
|
|
1367
1302
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1368
1303
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1369
|
-
#, python-format
|
|
1370
1304
|
msgid "Original"
|
|
1371
1305
|
msgstr "Origineel"
|
|
1372
1306
|
|
|
@@ -1383,7 +1317,6 @@ msgstr "Origineel"
|
|
|
1383
1317
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1384
1318
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1385
1319
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1386
|
-
#, python-format
|
|
1387
1320
|
msgid "Partner"
|
|
1388
1321
|
msgstr "Partner"
|
|
1389
1322
|
|
|
@@ -1399,14 +1332,12 @@ msgstr ""
|
|
|
1399
1332
|
#. module: account_financial_report
|
|
1400
1333
|
#. odoo-python
|
|
1401
1334
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1402
|
-
#, python-format
|
|
1403
1335
|
msgid "Partner Initial balance"
|
|
1404
1336
|
msgstr "Relatiebeginsaldo"
|
|
1405
1337
|
|
|
1406
1338
|
#. module: account_financial_report
|
|
1407
1339
|
#. odoo-python
|
|
1408
1340
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1409
|
-
#, python-format
|
|
1410
1341
|
msgid "Partner cumul aged balance"
|
|
1411
1342
|
msgstr "Partner cumulatief ouderdomsanalyse"
|
|
1412
1343
|
|
|
@@ -1416,7 +1347,6 @@ msgstr "Partner cumulatief ouderdomsanalyse"
|
|
|
1416
1347
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1417
1348
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1418
1349
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1419
|
-
#, python-format
|
|
1420
1350
|
msgid "Partner ending balance"
|
|
1421
1351
|
msgstr "Partner eindbalans"
|
|
1422
1352
|
|
|
@@ -1447,7 +1377,6 @@ msgstr "Percentage"
|
|
|
1447
1377
|
#. odoo-python
|
|
1448
1378
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1449
1379
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1450
|
-
#, python-format
|
|
1451
1380
|
msgid "Period balance"
|
|
1452
1381
|
msgstr "Periode Balans"
|
|
1453
1382
|
|
|
@@ -1459,7 +1388,6 @@ msgstr "Periodes"
|
|
|
1459
1388
|
#. module: account_financial_report
|
|
1460
1389
|
#. odoo-python
|
|
1461
1390
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1462
|
-
#, python-format
|
|
1463
1391
|
msgid "Posted"
|
|
1464
1392
|
msgstr "Geboekt"
|
|
1465
1393
|
|
|
@@ -1467,7 +1395,6 @@ msgstr "Geboekt"
|
|
|
1467
1395
|
#. odoo-python
|
|
1468
1396
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1469
1397
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1470
|
-
#, python-format
|
|
1471
1398
|
msgid "Rec."
|
|
1472
1399
|
msgstr "Deb."
|
|
1473
1400
|
|
|
@@ -1505,7 +1432,6 @@ msgstr ""
|
|
|
1505
1432
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1506
1433
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1507
1434
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1508
|
-
#, python-format
|
|
1509
1435
|
msgid "Ref - Label"
|
|
1510
1436
|
msgstr "Ref - Label"
|
|
1511
1437
|
|
|
@@ -1521,7 +1447,6 @@ msgstr "Report Actie"
|
|
|
1521
1447
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1522
1448
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1523
1449
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1524
|
-
#, python-format
|
|
1525
1450
|
msgid "Residual"
|
|
1526
1451
|
msgstr "Resterend"
|
|
1527
1452
|
|
|
@@ -1529,7 +1454,6 @@ msgstr "Resterend"
|
|
|
1529
1454
|
#. odoo-python
|
|
1530
1455
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1531
1456
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1532
|
-
#, python-format
|
|
1533
1457
|
msgid "Sequence"
|
|
1534
1458
|
msgstr "Volgorde"
|
|
1535
1459
|
|
|
@@ -1541,7 +1465,6 @@ msgstr "Volgorde"
|
|
|
1541
1465
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1542
1466
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1543
1467
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1544
|
-
#, python-format
|
|
1545
1468
|
msgid "Show"
|
|
1546
1469
|
msgstr "Toon"
|
|
1547
1470
|
|
|
@@ -1574,7 +1497,6 @@ msgstr "Toon partner details"
|
|
|
1574
1497
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1575
1498
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1576
1499
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1577
|
-
#, python-format
|
|
1578
1500
|
msgid "Show foreign currency"
|
|
1579
1501
|
msgstr "Toon buitenlandse valuta"
|
|
1580
1502
|
|
|
@@ -1609,7 +1531,6 @@ msgstr "Start rekening in een bereik"
|
|
|
1609
1531
|
#. odoo-python
|
|
1610
1532
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1611
1533
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1612
|
-
#, python-format
|
|
1613
1534
|
msgid "TOTAL"
|
|
1614
1535
|
msgstr ""
|
|
1615
1536
|
|
|
@@ -1638,7 +1559,6 @@ msgstr "Doel boekingen"
|
|
|
1638
1559
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1639
1560
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1640
1561
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1641
|
-
#, python-format
|
|
1642
1562
|
msgid "Target moves filter"
|
|
1643
1563
|
msgstr "Doel boekingen filter"
|
|
1644
1564
|
|
|
@@ -1646,7 +1566,6 @@ msgstr "Doel boekingen filter"
|
|
|
1646
1566
|
#. odoo-python
|
|
1647
1567
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1648
1568
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1649
|
-
#, python-format
|
|
1650
1569
|
msgid "Tax"
|
|
1651
1570
|
msgstr "Belasting"
|
|
1652
1571
|
|
|
@@ -1659,21 +1578,18 @@ msgstr "Belastingbedrag"
|
|
|
1659
1578
|
#. module: account_financial_report
|
|
1660
1579
|
#. odoo-python
|
|
1661
1580
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1662
|
-
#, python-format
|
|
1663
1581
|
msgid "Tax Balance"
|
|
1664
1582
|
msgstr "BTW-saldo"
|
|
1665
1583
|
|
|
1666
1584
|
#. module: account_financial_report
|
|
1667
1585
|
#. odoo-python
|
|
1668
1586
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1669
|
-
#, python-format
|
|
1670
1587
|
msgid "Tax Credit"
|
|
1671
1588
|
msgstr "Belasting credit"
|
|
1672
1589
|
|
|
1673
1590
|
#. module: account_financial_report
|
|
1674
1591
|
#. odoo-python
|
|
1675
1592
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1676
|
-
#, python-format
|
|
1677
1593
|
msgid "Tax Debit"
|
|
1678
1594
|
msgstr "Belasting debet"
|
|
1679
1595
|
|
|
@@ -1681,14 +1597,12 @@ msgstr "Belasting debet"
|
|
|
1681
1597
|
#. odoo-python
|
|
1682
1598
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1683
1599
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1684
|
-
#, python-format
|
|
1685
1600
|
msgid "Tax Groups"
|
|
1686
1601
|
msgstr "Belasting groep"
|
|
1687
1602
|
|
|
1688
1603
|
#. module: account_financial_report
|
|
1689
1604
|
#. odoo-python
|
|
1690
1605
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1691
|
-
#, python-format
|
|
1692
1606
|
msgid "Tax Initial balance"
|
|
1693
1607
|
msgstr "Belasting beginsaldo"
|
|
1694
1608
|
|
|
@@ -1696,7 +1610,6 @@ msgstr "Belasting beginsaldo"
|
|
|
1696
1610
|
#. odoo-python
|
|
1697
1611
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1698
1612
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1699
|
-
#, python-format
|
|
1700
1613
|
msgid "Tax Tags"
|
|
1701
1614
|
msgstr "Belasting label"
|
|
1702
1615
|
|
|
@@ -1704,7 +1617,6 @@ msgstr "Belasting label"
|
|
|
1704
1617
|
#. odoo-python
|
|
1705
1618
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1706
1619
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1707
|
-
#, python-format
|
|
1708
1620
|
msgid "Tax ending balance"
|
|
1709
1621
|
msgstr "Belasting eindsaldo"
|
|
1710
1622
|
|
|
@@ -1720,14 +1632,12 @@ msgstr "Belasting beginsaldo"
|
|
|
1720
1632
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1721
1633
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1722
1634
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1723
|
-
#, python-format
|
|
1724
1635
|
msgid "Taxes"
|
|
1725
1636
|
msgstr "Belastingen"
|
|
1726
1637
|
|
|
1727
1638
|
#. module: account_financial_report
|
|
1728
1639
|
#. odoo-python
|
|
1729
1640
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1730
|
-
#, python-format
|
|
1731
1641
|
msgid ""
|
|
1732
1642
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1733
1643
|
"the same."
|
|
@@ -1738,7 +1648,6 @@ msgstr ""
|
|
|
1738
1648
|
#. module: account_financial_report
|
|
1739
1649
|
#. odoo-python
|
|
1740
1650
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1741
|
-
#, python-format
|
|
1742
1651
|
msgid ""
|
|
1743
1652
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1744
1653
|
"same."
|
|
@@ -1749,7 +1658,6 @@ msgstr ""
|
|
|
1749
1658
|
#. module: account_financial_report
|
|
1750
1659
|
#. odoo-python
|
|
1751
1660
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1752
|
-
#, python-format
|
|
1753
1661
|
msgid ""
|
|
1754
1662
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1755
1663
|
msgstr ""
|
|
@@ -1758,7 +1666,6 @@ msgstr ""
|
|
|
1758
1666
|
#. module: account_financial_report
|
|
1759
1667
|
#. odoo-python
|
|
1760
1668
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1761
|
-
#, python-format
|
|
1762
1669
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1763
1670
|
msgstr ""
|
|
1764
1671
|
"Het hi??rarchieniveau waarop gefilterd moet worden, moet groter zijn dan 0."
|
|
@@ -1784,7 +1691,6 @@ msgstr "Naar:"
|
|
|
1784
1691
|
#. odoo-python
|
|
1785
1692
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1786
1693
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1787
|
-
#, python-format
|
|
1788
1694
|
msgid "Total"
|
|
1789
1695
|
msgstr "Totaal"
|
|
1790
1696
|
|
|
@@ -1795,7 +1701,6 @@ msgstr "Totaal"
|
|
|
1795
1701
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1796
1702
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1797
1703
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1798
|
-
#, python-format
|
|
1799
1704
|
msgid "Trial Balance"
|
|
1800
1705
|
msgstr "Proefbalans"
|
|
1801
1706
|
|
|
@@ -1888,7 +1793,6 @@ msgstr "BTW rapport XLSX"
|
|
|
1888
1793
|
#. module: account_financial_report
|
|
1889
1794
|
#. odoo-python
|
|
1890
1795
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1891
|
-
#, python-format
|
|
1892
1796
|
msgid "Vat Report"
|
|
1893
1797
|
msgstr "BTW Rapport"
|
|
1894
1798
|
|
|
@@ -1929,7 +1833,6 @@ msgstr "Met rekening naam"
|
|
|
1929
1833
|
#. module: account_financial_report
|
|
1930
1834
|
#. odoo-python
|
|
1931
1835
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1932
|
-
#, python-format
|
|
1933
1836
|
msgid "Without analytic account"
|
|
1934
1837
|
msgstr ""
|
|
1935
1838
|
|
|
@@ -1939,14 +1842,12 @@ msgstr ""
|
|
|
1939
1842
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1940
1843
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1941
1844
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1942
|
-
#, python-format
|
|
1943
1845
|
msgid "Yes"
|
|
1944
1846
|
msgstr "Ja"
|
|
1945
1847
|
|
|
1946
1848
|
#. module: account_financial_report
|
|
1947
1849
|
#. odoo-python
|
|
1948
1850
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1949
|
-
#, python-format
|
|
1950
1851
|
msgid "future"
|
|
1951
1852
|
msgstr "toekomstig"
|
|
1952
1853
|
|