diff --git a/account_account_tag_code/README.rst b/account_account_tag_code/README.rst new file mode 100644 index 00000000..85e35c56 --- /dev/null +++ b/account_account_tag_code/README.rst @@ -0,0 +1,53 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: https://www.gnu.org/licenses/agpl + :alt: License: AGPL-3 + +================ +account tag code +================ + +This module adds a 'code' field to account tags in order to facilitate the +construction of accounting reports (e.g. with the OCA mis_builder module). + +Installation +============ + +There is no specific installation procedure for this module. + +Configuration and Usage +======================= + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/92/11.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. + +Credits +======= + +Contributors +------------ + +* Luc De Meyer + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. diff --git a/account_account_tag_code/__init__.py b/account_account_tag_code/__init__.py new file mode 100644 index 00000000..0650744f --- /dev/null +++ b/account_account_tag_code/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/account_account_tag_code/__manifest__.py b/account_account_tag_code/__manifest__.py new file mode 100644 index 00000000..92ab52bf --- /dev/null +++ b/account_account_tag_code/__manifest__.py @@ -0,0 +1,22 @@ +# Copyright 2009-2018 Noviat. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + 'name': 'account tag code', + 'version': '11.0.1.0.0', + 'category': 'Accounting & Finance', + 'summary': """ + Add 'code' field to account tags + """, + 'author': 'Noviat,' + 'Odoo Community Association (OCA)', + 'website': 'https://github.com/OCA/account-financial-tools', + 'depends': [ + 'account', + ], + 'data': [ + 'views/account_account_tag.xml', + ], + 'installable': True, + 'license': 'AGPL-3', +} diff --git a/account_account_tag_code/models/__init__.py b/account_account_tag_code/models/__init__.py new file mode 100644 index 00000000..1977e324 --- /dev/null +++ b/account_account_tag_code/models/__init__.py @@ -0,0 +1 @@ +from . import account_account_tag diff --git a/account_account_tag_code/models/account_account_tag.py b/account_account_tag_code/models/account_account_tag.py new file mode 100644 index 00000000..992de6ba --- /dev/null +++ b/account_account_tag_code/models/account_account_tag.py @@ -0,0 +1,34 @@ +# Copyright 2009-2018 Noviat. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models +from odoo.osv.expression import NEGATIVE_TERM_OPERATORS + + +class AccountAccountTag(models.Model): + _inherit = 'account.account.tag' + + code = fields.Char() + + @api.model + def name_search(self, name, args=None, operator='ilike', limit=100): + args = args or [] + domain = [] + if name: + domain = ['|', + ('code', '=ilike', name + '%'), + ('name', operator, name)] + if operator in NEGATIVE_TERM_OPERATORS: + domain = ['&', '!'] + domain[1:] + tags = self.search(domain + args, limit=limit) + return tags.name_get() + + @api.multi + @api.depends('name', 'code') + def name_get(self): + result = [] + for tag in self: + if tag.code: + name = ' - '.join([tag.code, tag.name]) + result.append((tag.id, name)) + return result diff --git a/account_account_tag_code/static/description/icon.png b/account_account_tag_code/static/description/icon.png new file mode 100644 index 00000000..3a0328b5 Binary files /dev/null and b/account_account_tag_code/static/description/icon.png differ diff --git a/account_account_tag_code/views/account_account_tag.xml b/account_account_tag_code/views/account_account_tag.xml new file mode 100644 index 00000000..c832b263 --- /dev/null +++ b/account_account_tag_code/views/account_account_tag.xml @@ -0,0 +1,41 @@ + + + + + account.account.tag.search + account.account.tag + + + + + + + + + + + account.account.tag.form + account.account.tag + + + + + + + + + + account.account.tag.tree + account.account.tag + + + + + + + + + + diff --git a/account_invoice_zero_cancel/README.rst b/account_invoice_zero_cancel/README.rst new file mode 100644 index 00000000..17b0ede3 --- /dev/null +++ b/account_invoice_zero_cancel/README.rst @@ -0,0 +1,55 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: https://www.gnu.org/licenses/agpl + :alt: License: AGPL-3 + +=================================== +Allow cancel of zero value invoices +=================================== + +This module adds the 'Cancel' button on zero value invoices +so that these can be cancelled and corrected via 'Set to Draft'. + +Installation +============ + +There is no specific installation procedure for this module. + +Configuration and Usage +======================= + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/95/11.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. + +Credits +======= + +Contributors +------------ + +* Luc De Meyer + +Do not contact contributors directly about support or help with technical issues. + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. diff --git a/account_invoice_zero_cancel/__init__.py b/account_invoice_zero_cancel/__init__.py new file mode 100644 index 00000000..0650744f --- /dev/null +++ b/account_invoice_zero_cancel/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/account_invoice_zero_cancel/__manifest__.py b/account_invoice_zero_cancel/__manifest__.py new file mode 100644 index 00000000..b2d3e344 --- /dev/null +++ b/account_invoice_zero_cancel/__manifest__.py @@ -0,0 +1,17 @@ +# Copyright 2009-2018 Noviat. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + 'name': 'Allow cancel of zero value invoices', + 'summary': 'Allow cancel of zero value invoices', + 'version': '11.0.1.0.0', + 'category': 'Accounting & Finance', + 'website': 'https://github.com/OCA/account-invoicing', + 'author': 'Noviat,' + 'Odoo Community Association (OCA)', + 'license': 'AGPL-3', + 'installable': True, + 'depends': [ + 'account_cancel', + ], +} diff --git a/account_invoice_zero_cancel/models/__init__.py b/account_invoice_zero_cancel/models/__init__.py new file mode 100644 index 00000000..8e072db8 --- /dev/null +++ b/account_invoice_zero_cancel/models/__init__.py @@ -0,0 +1 @@ +from . import account_invoice diff --git a/account_invoice_zero_cancel/models/account_invoice.py b/account_invoice_zero_cancel/models/account_invoice.py new file mode 100644 index 00000000..49898272 --- /dev/null +++ b/account_invoice_zero_cancel/models/account_invoice.py @@ -0,0 +1,40 @@ +# Copyright 2009-2018 Noviat. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from lxml import etree + +from odoo import api, models + + +class AccountInvoice(models.Model): + _inherit = 'account.invoice' + + @api.model + def fields_view_get(self, view_id=None, view_type='form', + toolbar=False, submenu=False): + res = super().fields_view_get( + view_id=view_id, view_type=view_type, toolbar=toolbar, + submenu=submenu) + if view_type == 'form': + doc = etree.XML(res['arch']) + nodes = doc.xpath("//button[@name='action_invoice_cancel']") + for node in nodes: + node.attrib.pop('states', None) + node.set( + 'modifiers', + '{"invisible": ' + '["|", ["state", "=", "cancel"], ' + '"&", ["state", "=", "paid"], ["amount_total", "!=", 0]]}' + ) + res['arch'] = etree.tostring(doc) + return res + + @api.multi + def action_invoice_cancel(self): + for inv in self: + if inv.state == 'paid' \ + and inv.currency_id.is_zero(inv.amount_total): + inv.action_cancel() + else: + super(AccountInvoice, inv).action_invoice_cancel() + return True diff --git a/account_invoice_zero_cancel/static/description/icon.png b/account_invoice_zero_cancel/static/description/icon.png new file mode 100644 index 00000000..3a0328b5 Binary files /dev/null and b/account_invoice_zero_cancel/static/description/icon.png differ diff --git a/account_invoice_zero_cancel/tests/__init__.py b/account_invoice_zero_cancel/tests/__init__.py new file mode 100644 index 00000000..f6eb5c7d --- /dev/null +++ b/account_invoice_zero_cancel/tests/__init__.py @@ -0,0 +1 @@ +from . import test_invoice_zero_cancel diff --git a/account_invoice_zero_cancel/tests/test_invoice_zero_cancel.py b/account_invoice_zero_cancel/tests/test_invoice_zero_cancel.py new file mode 100644 index 00000000..a0de378a --- /dev/null +++ b/account_invoice_zero_cancel/tests/test_invoice_zero_cancel.py @@ -0,0 +1,14 @@ +# Copyright 2009-2018 Noviat. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.tests.common import TransactionCase + + +class TestInvoiceZeroCancel(TransactionCase): + + def setUp(self): + super(TestInvoiceZeroCancel, self).setUp() + + def test_invoice_zero_cancel(self): + # TODO: add unit test + pass diff --git a/account_tax_code/__init__.py b/account_tax_code/__init__.py index a0fdc10f..0650744f 100644 --- a/account_tax_code/__init__.py +++ b/account_tax_code/__init__.py @@ -1,2 +1 @@ -# -*- coding: utf-8 -*- from . import models diff --git a/account_tax_code/__manifest__.py b/account_tax_code/__manifest__.py index 0dd87a95..8072606d 100644 --- a/account_tax_code/__manifest__.py +++ b/account_tax_code/__manifest__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2009-2018 Noviat. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/account_tax_code/models/__init__.py b/account_tax_code/models/__init__.py index 327eb8a7..59b7503a 100644 --- a/account_tax_code/models/__init__.py +++ b/account_tax_code/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- from . import account_invoice_tax from . import account_tax from . import account_tax_template diff --git a/account_tax_code/models/account_invoice_tax.py b/account_tax_code/models/account_invoice_tax.py index 5e293913..4ace46b0 100644 --- a/account_tax_code/models/account_invoice_tax.py +++ b/account_tax_code/models/account_invoice_tax.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2009-2018 Noviat. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/account_tax_code/models/account_tax.py b/account_tax_code/models/account_tax.py index 76cefabd..4e7a6a8b 100644 --- a/account_tax_code/models/account_tax.py +++ b/account_tax_code/models/account_tax.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2009-2018 Noviat. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/account_tax_code/models/account_tax_template.py b/account_tax_code/models/account_tax_template.py index 15580907..9fdfdaaa 100644 --- a/account_tax_code/models/account_tax_template.py +++ b/account_tax_code/models/account_tax_template.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2009-2018 Noviat. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/l10n_account_translate_config/README.rst b/l10n_account_translate_config/README.rst new file mode 100644 index 00000000..cd8a72e5 --- /dev/null +++ b/l10n_account_translate_config/README.rst @@ -0,0 +1,54 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: https://www.gnu.org/licenses/agpl + :alt: License: AGPL-3 + +============================ +Monolingual General Accounts +============================ + +This module adds on option to the Accounting Settings allowing to set translate=False +on the General Account (account.account) name field +and hence neutralise undesired multilingual account names provoked by +the localisation modules that depend on l10n_multilang (e.g. l10n_be, l10n_ch). + +Installation +============ + +The 'l10n_account_translate_off' module must available in your addons path. + +Usage +===== + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/92/11.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. + +Credits +======= + +Contributors +------------ + +* Luc De Meyer, Noviat + +Maintainer +---------- +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. diff --git a/l10n_account_translate_config/__init__.py b/l10n_account_translate_config/__init__.py new file mode 100644 index 00000000..0650744f --- /dev/null +++ b/l10n_account_translate_config/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/l10n_account_translate_config/__manifest__.py b/l10n_account_translate_config/__manifest__.py new file mode 100644 index 00000000..71dff891 --- /dev/null +++ b/l10n_account_translate_config/__manifest__.py @@ -0,0 +1,18 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + 'name': 'Monolingual General Account config', + 'version': '11.0.1.0.0', + 'category': 'Accounting & Finance', + 'website': 'http://odoo-community.org', + 'author': 'Noviat, Odoo Community Association (OCA)', + 'license': 'AGPL-3', + 'installable': True, + 'depends': [ + 'account', + ], + 'data': [ + 'views/res_config_settings.xml', + ], +} diff --git a/l10n_account_translate_config/models/__init__.py b/l10n_account_translate_config/models/__init__.py new file mode 100644 index 00000000..0deb68c4 --- /dev/null +++ b/l10n_account_translate_config/models/__init__.py @@ -0,0 +1 @@ +from . import res_config_settings diff --git a/l10n_account_translate_config/models/res_config_settings.py b/l10n_account_translate_config/models/res_config_settings.py new file mode 100644 index 00000000..c8c2b58e --- /dev/null +++ b/l10n_account_translate_config/models/res_config_settings.py @@ -0,0 +1,14 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + module_l10n_account_translate_off = fields.Boolean( + string='Monolingual General Accounts', + help="If checked, the General Account will become " + "a monolingual field.") + module_l10n_multilang = fields.Boolean() diff --git a/l10n_account_translate_config/static/description/icon.png b/l10n_account_translate_config/static/description/icon.png new file mode 100644 index 00000000..3a0328b5 Binary files /dev/null and b/l10n_account_translate_config/static/description/icon.png differ diff --git a/l10n_account_translate_config/views/res_config_settings.xml b/l10n_account_translate_config/views/res_config_settings.xml new file mode 100644 index 00000000..fd374a5a --- /dev/null +++ b/l10n_account_translate_config/views/res_config_settings.xml @@ -0,0 +1,31 @@ + + + + + account settings + res.config.settings + + +
+ +

Chart of Accounts

+
+
+
+ +
+
+
+
+
+
+
+
+ +
diff --git a/l10n_account_translate_off/README.rst b/l10n_account_translate_off/README.rst new file mode 100644 index 00000000..8000cbc8 --- /dev/null +++ b/l10n_account_translate_off/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: https://www.gnu.org/licenses/agpl + :alt: License: AGPL-3 + +============================== +Monolingual Chart of Accounts +============================== + +This module sets translate=False on the General Account (account.account) name field +and hence neutralises undesired multilingual account names provoked by +some accounting localisation modules (e.g. l10n_be, l10n_ch). + +Usage +===== + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/92/11.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. + +Credits +======= + +Contributors +------------ + +* Luc De Meyer, Noviat + +Maintainer +---------- +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. diff --git a/l10n_account_translate_off/__init__.py b/l10n_account_translate_off/__init__.py new file mode 100644 index 00000000..0650744f --- /dev/null +++ b/l10n_account_translate_off/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/l10n_account_translate_off/__manifest__.py b/l10n_account_translate_off/__manifest__.py new file mode 100644 index 00000000..114d2676 --- /dev/null +++ b/l10n_account_translate_off/__manifest__.py @@ -0,0 +1,15 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + 'name': 'Monolingual General Accounts', + 'version': '11.0.1.0.0', + 'category': 'Accounting & Finance', + 'website': 'http://odoo-community.org', + 'author': 'Noviat, Odoo Community Association (OCA)', + 'license': 'AGPL-3', + 'installable': True, + 'depends': [ + 'l10n_multilang', + ], +} diff --git a/l10n_account_translate_off/models/__init__.py b/l10n_account_translate_off/models/__init__.py new file mode 100644 index 00000000..5a5ba4f9 --- /dev/null +++ b/l10n_account_translate_off/models/__init__.py @@ -0,0 +1 @@ +from . import account_account diff --git a/l10n_account_translate_off/models/account_account.py b/l10n_account_translate_off/models/account_account.py new file mode 100644 index 00000000..7be15d4e --- /dev/null +++ b/l10n_account_translate_off/models/account_account.py @@ -0,0 +1,10 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class AccountAccount(models.Model): + _inherit = 'account.account' + + name = fields.Char(translate=False) diff --git a/l10n_account_translate_off/static/description/icon.png b/l10n_account_translate_off/static/description/icon.png new file mode 100644 index 00000000..3a0328b5 Binary files /dev/null and b/l10n_account_translate_off/static/description/icon.png differ diff --git a/l10n_account_translate_on/README.rst b/l10n_account_translate_on/README.rst new file mode 100644 index 00000000..46078e85 --- /dev/null +++ b/l10n_account_translate_on/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: https://www.gnu.org/licenses/agpl + :alt: License: AGPL-3 + +============================== +Multilingual Chart of Accounts +============================== + +This module sets translate=True on the General Account (account.account) +name field and is intended for being used by accounting localisation modules. + +Usage +===== + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/92/11.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. + +Credits +======= + +Contributors +------------ + +* Luc De Meyer, Noviat + +Maintainer +---------- +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. diff --git a/l10n_account_translate_on/__init__.py b/l10n_account_translate_on/__init__.py new file mode 100644 index 00000000..0650744f --- /dev/null +++ b/l10n_account_translate_on/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/l10n_account_translate_on/__manifest__.py b/l10n_account_translate_on/__manifest__.py new file mode 100644 index 00000000..86b1c96b --- /dev/null +++ b/l10n_account_translate_on/__manifest__.py @@ -0,0 +1,15 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + 'name': 'Multilingual General Accounts', + 'version': '11.0.1.0.0', + 'category': 'Accounting & Finance', + 'website': 'http://odoo-community.org', + 'author': 'Noviat, Odoo Community Association (OCA)', + 'license': 'AGPL-3', + 'installable': True, + 'depends': [ + 'account', + ], +} diff --git a/l10n_account_translate_on/models/__init__.py b/l10n_account_translate_on/models/__init__.py new file mode 100644 index 00000000..5a5ba4f9 --- /dev/null +++ b/l10n_account_translate_on/models/__init__.py @@ -0,0 +1 @@ +from . import account_account diff --git a/l10n_account_translate_on/models/account_account.py b/l10n_account_translate_on/models/account_account.py new file mode 100644 index 00000000..5d974bc7 --- /dev/null +++ b/l10n_account_translate_on/models/account_account.py @@ -0,0 +1,10 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class AccountAccount(models.Model): + _inherit = 'account.account' + + name = fields.Char(translate=True) diff --git a/l10n_account_translate_on/static/description/icon.png b/l10n_account_translate_on/static/description/icon.png new file mode 100644 index 00000000..3a0328b5 Binary files /dev/null and b/l10n_account_translate_on/static/description/icon.png differ diff --git a/l10n_be_coa_multilang/README.rst b/l10n_be_coa_multilang/README.rst new file mode 100644 index 00000000..e042e2be --- /dev/null +++ b/l10n_be_coa_multilang/README.rst @@ -0,0 +1,87 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: https://www.gnu.org/licenses/agpl + :alt: License: AGPL-3 + +===================================================================== +Multilanguage alternative for the 'l10n_be' belgian accounting module +===================================================================== + +This module activates the following functionality: + + * Multilanguage support (en/nl/fr) for Chart of Accounts (CoA), Taxes + and Tax Codes. + * Multilingual accounting templates. + * Support for the NBB/BNB legal Balance and P&L reportscheme including + auto-configuration of the correct financial report entry when + creating/changing a general account. + * The account type will be automatically assigned + based upon the account group when creating a new general account. + * The setup wizard + - allows to select mono- versus multilingual + Chart of Accounts + - allows to select which languages to install + - copies the CoA, Tax, Tax Tags and Fiscal Position translations + from the installation templates + * Intervat XML VAT declarations + - Periodical VAT Declaration + - Periodical Intracom Declaration + - Annual Listing of VAT-Subjected Customers + +This module has been tested for use with Odoo Enterprise as well as Odoo Community. + +Installation guidelines +======================= + +It is recommended not to install l10n_be when using this module. + +The l10n_be module is 'auto_installed' when creating a new database with the +Country field set to Belgium. As a consequence we recommend to leave this +field empty. The company country will be set to Belgium afterwards by the +l10n_be_coa_multilang setup wizard. + +The setup wizard may fail when running on an Odoo instance without patch +https://github.com/odoo/odoo/pull/21937. + +Configuration +============= + +1) Chart of Accounts +-------------------- + +This module has a different approach than l10n_be for the population of the +Chart of Accounts (CoA). + +The l10n_be module comes with a fully populated CoA whereas this module +will only create the CoA Groups and a strict minimum set of +general accounts. + +In order to have a fully populated CoA, you have to import your own CoA +after the installation of this module. +You can use the standard account import button in order to do this. +When importing your chart of accounts the reporting tags and user type will +be set automatically based upon the account group (the first digits of the account code). + +2) Fiscal Year +-------------- + +Configure your Fiscal Years via Accountint -> Configuration -> Date Ranges. + +3) VAT Declarations +------------------- + +By default the 'invoicing' contact of the Company is used as contact for the VAT Declarations. +Ensure that this contact has a valid e-mail and phone number since these fields +will be used for the Intervat XML VAT declarations. + +Known issues / Roadmap +====================== + + * Add extra controls to the VAT declaration wizards. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. diff --git a/l10n_be_coa_multilang/__init__.py b/l10n_be_coa_multilang/__init__.py new file mode 100644 index 00000000..cf6083cf --- /dev/null +++ b/l10n_be_coa_multilang/__init__.py @@ -0,0 +1,3 @@ +from . import models +from . import report +from . import wizards diff --git a/l10n_be_coa_multilang/__manifest__.py b/l10n_be_coa_multilang/__manifest__.py new file mode 100644 index 00000000..ec2a41ab --- /dev/null +++ b/l10n_be_coa_multilang/__manifest__.py @@ -0,0 +1,58 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + 'name': 'Belgium - Multilingual Chart of Accounts (en/nl/fr)', + 'version': '11.0.1.0.0', + 'license': 'AGPL-3', + 'author': "Noviat", + 'website': 'http://www.noviat.com', + 'category': 'Localization', + 'depends': [ + 'account_account_tag_code', + 'account_financial_report_date_range', + 'account_tax_code', + 'l10n_multilang', + 'l10n_account_translate_config', + 'base_vat', + 'base_iban', + 'account_invoicing', + 'account_fiscal_year', + 'account_move_line_tax_editable', + 'report_xlsx_helper', + 'web_tree_decoration_underline', + ], + 'data': [ + 'security/ir.model.access.csv', + 'data/account_chart_template_create.xml', + 'data/account_account_tag.xml', + 'data/account_tax_code_chart.xml', + 'data/account_account_template.xml', + 'data/account_chart_template_update.xml', + 'data/account_tax_template.xml', + 'data/account_fiscal_position_template.xml', + 'data/account_fiscal_position_tax_template.xml', + 'data/account_fiscal_position_account_template.xml', + 'data/account_financial_report.xml', + 'data/be_legal_financial_reportscheme.xml', + 'data/ir_sequence.xml', + 'views/account_account.xml', + 'views/account_financial_report.xml', + 'views/be_legal_financial_reportscheme.xml', + 'views/l10n_be_layouts.xml', + 'views/report_financial.xml', + 'views/report_l10nbevatdeclaration.xml', + 'views/report_l10nbevatintracom.xml', + 'views/report_l10nbevatlisting.xml', + 'views/res_partner.xml', + 'wizards/accounting_report.xml', + 'wizards/l10n_be_coa_multilang_config.xml', + 'wizards/l10n_be_update_be_reportscheme.xml', + 'wizards/l10n_be_vat_common.xml', + 'wizards/l10n_be_vat_declaration.xml', + 'wizards/l10n_be_vat_intracom.xml', + 'wizards/l10n_be_vat_listing.xml', + 'data/account_chart_template_data.yml', + ], + 'installable': True, +} diff --git a/l10n_be_coa_multilang/data/account_account_tag.xml b/l10n_be_coa_multilang/data/account_account_tag.xml new file mode 100644 index 00000000..04acb802 --- /dev/null +++ b/l10n_be_coa_multilang/data/account_account_tag.xml @@ -0,0 +1,181 @@ + + + + + + Operations subject to a special arrangement + 00 + taxes + + + Operations subject to 6% VAT + 01 + taxes + + + Operations subject to 12% VAT + 02 + taxes + + + Operations subject to 21% VAT + 03 + taxes + + + Intra Community Services + 44 + taxes + + + VAT due by the Cocontractant + 45 + taxes + + + VAT exempt Intra Community Supplies of Goods + 46L + taxes + + + VAT exempt Intra Community ABC Supplies + 46T + taxes + + + Other VAT exempt Operations + 47 + taxes + + + Issued Credit Notes Operations Grid [44] and [46] + 48 + taxes + + + Issued Credit Notes Other Operations Section II + 49 + taxes + + + Purchases of Goods, Raw Materials and Consumables + 81D + taxes + + + Purchases of Goods, Raw Mater. and Consum. - VAT Non Deductible + 81ND + taxes + + + Purchases of various Goods and Services + 82D + taxes + + + Purchases of various Goods and Services - VAT Non Deductible + 82ND + taxes + + + Purchases of Assets + 83D + taxes + + + Purchases of Assets - VAT Non Deductible + 83ND + taxes + + + Incoming Credit Notes Operations Grid [86] and [88] + 84 + taxes + + + Incoming Credit Notes other Operations + 85D + taxes + + + Incoming Credit Notes other Operations - VAT Non Deductible + 85ND + taxes + + + Intra Community and ABC Acquisitions + 86 + taxes + + + Other Incoming Operations + 87 + taxes + + + Intra Community Services + 88 + taxes + + + Balance (71-72) + VI + taxes + + + To Pay - Total + XX + taxes + + + VAT on Operations Grids [01], [02], [03] + 54 + taxes + + + VAT on Operations Grids [86] and [88] + 55 + taxes + + + VAT on Operations Grid [87] + 56 + taxes + + + VAT on Imports + 57 + taxes + + + VAT adjustments in favor of the Tax Authority + 61 + taxes + + + VAT Debt from Incoming Credit Notes + 63 + taxes + + + Deductible VAT + 59 + taxes + + + VAT adjustments in favor of the Declarant + 62 + taxes + + + Deductible VAT from Outgoing Credit Notes + 64 + taxes + + + Advance for Operations from December 1 to 20 + 91 + taxes + + + diff --git a/l10n_be_coa_multilang/data/account_account_template.xml b/l10n_be_coa_multilang/data/account_account_template.xml new file mode 100644 index 00000000..6a2678fd --- /dev/null +++ b/l10n_be_coa_multilang/data/account_account_template.xml @@ -0,0 +1,125 @@ + + + + + + Customers + 400000 + + + + + + Input VAT - current account balance + 411000 + + + + + VAT Deductible + 411059 + + + + + VAT Deductible - Correction Case 62 + 411062 + + + + + Suppliers + 440000 + + + + + + Output VAT - current account balance + 451000 + + + + + VAT Debt + 451054 + + + + + VAT Debt - Intracommunity + 451055 + + + + + VAT Debt - Cocontractant + 451056 + + + + + VAT Debt - Import + 451057 + + + + + VAT Debt - Correction Case 61 + 451061 + + + + + Bank + 550001 + + + + + + Cash + 570001 + + + + + + Internal transfer account + 580000 + + + + + + Purchases of raw materials + 600000 + + + + + Exchange rate losses + 654000 + + + + + Sales + 700000 + + + + + Exchange rate gains + 754000 + + + + + Undistributed Profits/Losses + 999999 + + + + + diff --git a/l10n_be_coa_multilang/data/account_chart_template_create.xml b/l10n_be_coa_multilang/data/account_chart_template_create.xml new file mode 100644 index 00000000..edf26419 --- /dev/null +++ b/l10n_be_coa_multilang/data/account_chart_template_create.xml @@ -0,0 +1,24 @@ + + + + + + Internal transfer account + 580000 + + + + + Belgian Chart of Accounts (en/nl/fr) + + + + 550 + 570 + 6 + + + diff --git a/l10n_be_coa_multilang/data/account_chart_template_data.yml b/l10n_be_coa_multilang/data/account_chart_template_data.yml new file mode 100644 index 00000000..7c9eea70 --- /dev/null +++ b/l10n_be_coa_multilang/data/account_chart_template_data.yml @@ -0,0 +1,3 @@ +- + !python {model: account.chart.template, id: l10n_be_coa_multilang_template}: | + self[0].try_loading_for_current_company() diff --git a/l10n_be_coa_multilang/data/account_chart_template_update.xml b/l10n_be_coa_multilang/data/account_chart_template_update.xml new file mode 100644 index 00000000..48730b0d --- /dev/null +++ b/l10n_be_coa_multilang/data/account_chart_template_update.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/l10n_be_coa_multilang/data/account_financial_report.xml b/l10n_be_coa_multilang/data/account_financial_report.xml new file mode 100644 index 00000000..02004c56 --- /dev/null +++ b/l10n_be_coa_multilang/data/account_financial_report.xml @@ -0,0 +1,1370 @@ + + + + + + Belgium Balance Sheet (Full Model) + 200000 + no_detail + sum + + + TOTAL ASSETS + 20/58 + 219000 + + no_detail + sum + + + + FIXED ASSETS + 20/28 + 211000 + + no_detail + sum + + + + Formation Expenses + 20 + 211100 + + no_detail + accounts + + + + Intangible Assets + 21 + 211200 + + no_detail + accounts + + + + Tangible Assets + 22/27 + 211300 + + no_detail + sum + + + + Land and Buildings + 22 + 211310 + + no_detail + accounts + + + + Plant, Machinery and Equipment + 23 + 211320 + + no_detail + accounts + + + + Furniture and Vehicles + 24 + 211330 + + no_detail + accounts + + + + Leasing and other similar Rights + 25 + 211340 + + no_detail + accounts + + + + Other Tangible Assets + 26 + 211350 + + no_detail + accounts + + + + Assets under Construction and Advance Payment + 27 + 211360 + + no_detail + accounts + + + + Financial Assets + 28 + 211400 + + no_detail + sum + + + + Affiliated Enterprises + 280/1 + 211410 + + no_detail + sum + + + + Participating Interests + 280 + 211411 + + no_detail + accounts + + + + Amounts Receivable + 281 + 211412 + + no_detail + accounts + + + + Enterprises Linked by Participating Interests + 282/3 + 211420 + + no_detail + sum + + + + Participating Interests + 282 + 211421 + + no_detail + accounts + + + + Amounts Receivable + 283 + 211422 + + no_detail + accounts + + + + Other Financial Assets + 284/8 + 211430 + + no_detail + sum + + + + Shares + 284 + 211431 + + no_detail + accounts + + + + Amounts Receivable and Cash Guarantees + 285/8 + 211432 + + no_detail + accounts + + + + CURRENT ASSETS + 29/58 + 212000 + + no_detail + sum + + + + Amounts Receivable after One Year + 29 + 212100 + + no_detail + sum + + + + Trade Debtors + 290 + 212110 + + no_detail + accounts + + + + Other Amounts Receivable + 291 + 212120 + + no_detail + accounts + + + + Stocks and Contracts in Progress + 3 + 212200 + + no_detail + sum + + + + Stocks + 30/36 + 212210 + + no_detail + sum + + + + Raw Materials and Consumables + 30/31 + 212211 + + no_detail + accounts + + + + Work in Progress + 32 + 212212 + + no_detail + accounts + + + + Finished Goods + 33 + 212213 + + no_detail + accounts + + + + Goods purchased for Resale + 34 + 212214 + + no_detail + accounts + + + + Imovable Property acquired for Resale + 35 + 212215 + + no_detail + accounts + + + + Advance Payments + 36 + 212216 + + no_detail + accounts + + + + Contracts in progress + 37 + 212220 + + no_detail + accounts + + + + Amounts Receivable within one Year + 40/41 + 212300 + + no_detail + sum + + + + Trade Debtors + 40 + 212310 + + no_detail + accounts + + + + Other Amounts Receivable + 41 + 212320 + + no_detail + accounts + + + + Investments + 50/53 + 212400 + + no_detail + sum + + + + Own Shares + 50 + 212410 + + no_detail + accounts + + + + Other Investments and Deposits + 51/53 + 212420 + + no_detail + accounts + + + + Cash at Bank and in Hand + 54/58 + 212500 + + no_detail + accounts + + + + Deferred Charges and Accrued Income + 490/1 + 212600 + + no_detail + accounts + + + + TOTAL LIABILITIES + 10/49 + 229000 + + no_detail + sum + + + + + EQUITY CAPITAL + 10/15 + 221000 + + no_detail + sum + + + + + Capital + 10 + 221100 + + no_detail + sum + + + + + Issued Capital + 100 + 221110 + + no_detail + accounts + + + + + Uncalled Capital + 101 + 221120 + + no_detail + accounts + + + + + Share Premium Account + 11 + 221200 + + no_detail + accounts + + + + + Revaluation Surpluses + 12 + 221300 + + no_detail + accounts + + + + + Reserves + 13 + 221400 + + no_detail + sum + + + + + Legal Reserve + 130 + 221410 + + no_detail + accounts + + + + + Reserves not available for Distribution + 131 + 221420 + + no_detail + sum + + + + + In respect of own Shares held + 1310 + 221421 + + no_detail + accounts + + + + + Other + 1311 + 221422 + + no_detail + accounts + + + + + Untaxed Reserves + 132 + 221430 + + no_detail + accounts + + + + + Reserves available for Distribution + 133 + 221440 + + no_detail + accounts + + + + + Accumulated Profits (Losses) + 14 + 221500 + + no_detail + accounts + + + + + Investment Grants + 15 + 221600 + + no_detail + accounts + + + + + Advance to Partners on the distribution of the net assets + 19 + 221700 + + no_detail + accounts + + + + + PROVISIONS AND DEFERRED TAXES + 16 + 222000 + + no_detail + sum + + + + + Provisions for Liabilities and Charges + 160/5 + 222100 + + no_detail + sum + + + + + Pensions and similar Obligations + 160 + 222110 + + no_detail + accounts + + + + + Taxation + 161 + 222120 + + no_detail + accounts + + + + + Major Repairs and Maintenance + 162 + 222130 + + no_detail + accounts + + + + + Other Liabilities and Charges + 163/5 + 222140 + + no_detail + accounts + + + + + Deferred Taxes + 168 + 222200 + + no_detail + accounts + + + + + DEBTS + 17/49 + 223000 + + no_detail + sum + + + + + Amounts Payable after one Year + 17 + 223100 + + no_detail + sum + + + + + Financial Debts + 170/4 + 223110 + + no_detail + sum + + + + + Subordinated Loans + 170 + 223111 + + no_detail + accounts + + + + + Unsubordinated Debentures + 171 + 223112 + + no_detail + accounts + + + + + Leasing and other similar Obligations + 172 + 223113 + + no_detail + accounts + + + + + Credit Institutions + 173 + 223114 + + no_detail + accounts + + + + + Other Loans + 174 + 223115 + + no_detail + accounts + + + + + Trade Debts + 175 + 223120 + + no_detail + sum + + + + + Suppliers + 1750 + 223121 + + no_detail + accounts + + + + + Bills of Exchange Payable + 1751 + 223122 + + no_detail + accounts + + + + + Advances received on Contracts in Progress + 176 + 223130 + + no_detail + accounts + + + + + Other Amounts Payable + 178/9 + 223140 + + no_detail + accounts + + + + + Amounts Payable within one Year + 42/48 + 223200 + + no_detail + sum + + + + + Portion of amounts Payable after one Year due within the year + 42 + 223210 + + no_detail + accounts + + + + + Financial Debts + 43 + 223220 + + no_detail + sum + + + + + Credit Institutions + 430/8 + 223221 + + no_detail + accounts + + + + + Other Loans + 439 + 223222 + + no_detail + accounts + + + + + Trade Debts + 44 + 223230 + + no_detail + sum + + + + + Suppliers + 440/4 + 223231 + + no_detail + accounts + + + + + Bills of Exchange Payable + 441 + 223232 + + no_detail + accounts + + + + + Advances received on Contracts in Progress + 46 + 223240 + + no_detail + accounts + + + + + Taxes, Remuneration and Social Security + 45 + 223250 + + no_detail + sum + + + + + Taxes + 450/3 + 223251 + + no_detail + accounts + + + + + Remuneration and Social Security + 454/9 + 223252 + + no_detail + accounts + + + + + Other Amounts Payable + 47/48 + 223260 + + no_detail + accounts + + + + + Accrued Charges and Deferred Income + 492/3 + 223300 + + no_detail + accounts + + + + + Belgium P&L (Full Model) + 30000 + no_detail + sum + + + Fiscal Year Profit (Loss) to be allocated + 9905 + 35000 + + no_detail + sum + + + + + Fiscal Year Profit (Loss) + 9904 + 34000 + + no_detail + sum + + + + + Fiscal Year Profit (Loss) before Taxation + 9903 + 33000 + + no_detail + sum + + + + + Profit (Loss) from Normal Operations before Taxation + 9902 + 32000 + + no_detail + sum + + + + + Operating Profit (Loss) + 9901 + 31000 + + no_detail + sum + + + + + Operating Income + 70/74 + 30100 + + no_detail + sum + + + + + Turnover + 70 + 30110 + + no_detail + accounts + + + + + Increase (Decrease) in Stocks, Final Goods, Etc. + 71 + 30120 + + no_detail + accounts + + + + + Fixed Assets Own Construction + 72 + 30130 + + no_detail + accounts + + + + + Other Operating Income + 74 + 30140 + + no_detail + accounts + + + + + Operating Charges + 60/64 + 30200 + + no_detail + sum + + + + Raw Materials, Consumables and Goods for Resale + 60 + 30210 + + no_detail + sum + + + + Purchases + 600/8 + 30211 + + no_detail + accounts + + + + Decrease (Increase) in Stocks + 609 + 30212 + + no_detail + accounts + + + + Services and Other Goods + 61 + 30220 + + no_detail + accounts + + + + Remunerations, Social Security Costs and Pensions + 62 + 30230 + + no_detail + accounts + + + + Depreciation and Amounts Written Off on Formation Expenses, on Intangible and Tangible Assets + 630 + 30240 + + no_detail + accounts + + + + Amounts Written Off on Stocks, Orders in Progress and Trade Debts: Increase (Decrease) + 631/4 + 30250 + + no_detail + accounts + + + + Provisions for Liabilities and Charges: Increase (Decrease) + 635/7 + 30260 + + no_detail + accounts + + + + Other Operating Charges + 640/8 + 30270 + + no_detail + accounts + + + + Restructuring Charges activated as Operating Charges + 649 + 30280 + + no_detail + accounts + + + + Financial Income + 75 + 31100 + + no_detail + sum + + + + + Income from Financial Fixed Assets + 750 + 31110 + + no_detail + accounts + + + + + Income from Current Assets + 751 + 31120 + + no_detail + accounts + + + + + Other Financial Income + 752/9 + 31130 + + no_detail + accounts + + + + + Financial Charges + 65 + 31200 + + no_detail + sum + + + + Debt Charges + 650 + 31210 + + no_detail + accounts + + + + Amounts Written Off on other than Stocks, Orders in Progress and Trade Debts: Increase (Decrease) + 651 + 31220 + + no_detail + accounts + + + + Other Financial Charges + 652/9 + 31230 + + no_detail + accounts + + + + Extraordinary Income + 76 + 32100 + + no_detail + sum + + + + + Adjustment to Depreciation and Write Off on Intangible and Tangible Assets + 760 + 32110 + + no_detail + accounts + + + + + Adjustment to Amounts Written Off on Financial Fixed Assets + 761 + 32120 + + no_detail + accounts + + + + + Adjustment to Provisions for Extraordinary Liabilities and Charges + 762 + 32130 + + no_detail + accounts + + + + + Gain on Disposal of Fixed Assets + 763 + 32140 + + no_detail + accounts + + + + + Other Extraordinary Income + 764/9 + 32150 + + no_detail + accounts + + + + + Extraordinary Charges + 66 + 32200 + + no_detail + sum + + + + Extraordinary Depreciation and Amounts Written Off on Formation Expenses, Intangible and Tangible Assets + 660 + 32210 + + no_detail + accounts + + + + Amounts Written Off on Financial Fixed Assets + 661 + 32220 + + no_detail + accounts + + + + Provisions for Extraordinary Liabilities and Charges + 662 + 32230 + + no_detail + accounts + + + + Loss on Disposal of Fixed Assets + 663 + 32240 + + no_detail + accounts + + + + Other Extraordinary Charges + 664/668 + 32250 + + no_detail + accounts + + + + Restructuring Charges activated as Extraordinary Charges + 669 + 32260 + + no_detail + accounts + + + + Transfer from Deferred Taxes + 780 + 33100 + + no_detail + accounts + + + + + Transfer to Deferred Taxes + 680 + 33200 + + no_detail + accounts + + + + Income Taxes + 67/77 + 33300 + + no_detail + sum + + + + Income Taxes + 670/3 + 33310 + + no_detail + accounts + + + + Adjustment of Income Taxes and Provisions for Taxes + 77 + 33320 + + no_detail + accounts + + + + + Transfer from Untaxed Reserves + 789 + 34100 + + no_detail + accounts + + + + + Transfer to Untaxed Reserves + 689 + 34200 + + no_detail + accounts + + + + diff --git a/l10n_be_coa_multilang/data/account_fiscal_position_account_template.xml b/l10n_be_coa_multilang/data/account_fiscal_position_account_template.xml new file mode 100644 index 00000000..fe5be861 --- /dev/null +++ b/l10n_be_coa_multilang/data/account_fiscal_position_account_template.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/l10n_be_coa_multilang/data/account_fiscal_position_tax_template.xml b/l10n_be_coa_multilang/data/account_fiscal_position_tax_template.xml new file mode 100644 index 00000000..3f5c19ca --- /dev/null +++ b/l10n_be_coa_multilang/data/account_fiscal_position_tax_template.xml @@ -0,0 +1,406 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/l10n_be_coa_multilang/data/account_fiscal_position_template.xml b/l10n_be_coa_multilang/data/account_fiscal_position_template.xml new file mode 100644 index 00000000..4210a4e6 --- /dev/null +++ b/l10n_be_coa_multilang/data/account_fiscal_position_template.xml @@ -0,0 +1,24 @@ + + + + + + National Regime + + + + National Regime - Cocontractant + + VAT subject to reverse charge. + + + Intra Community Regime + + Tax-free intra-Community supply / VAT subject to reverse charge. + + + Extra Community Regime + + + + diff --git a/l10n_be_coa_multilang/data/account_tax_code_chart.xml b/l10n_be_coa_multilang/data/account_tax_code_chart.xml new file mode 100644 index 00000000..815db1d9 --- /dev/null +++ b/l10n_be_coa_multilang/data/account_tax_code_chart.xml @@ -0,0 +1,618 @@ + + + + + + Belgian Chart of Taxes + I + 0 + 1 + + + + + Outgoing Operations + II + 0 + 100 + bu + darkblue + + + + + Operations subject to a special arrangement + II. A + 1 + 110 + u + darkblue + + Handelingen onderworpen aan een bijzondere regeling + + + + Operations subject to a special arrangement + 00 + 1 + 111 + + Rooster [00]<br/><br/>bedrag van de handelingen verricht in België en onderworpen aan een bijzondere regeling die, in principe, zowel de<br/>aangever als zijn medecontractant vrijstellen van de betaling van de belasting (tabaksfabrikaten, kranten, tijdschriften,<br/>recuperatieproducten, commissie op voorafbetaalde telefoonkaarten, interne verkopen van de leden van de<br/>btw-eenheid …).<br/><br/>Voor wat de toepassing van de winstmargeregeling (art. 58, §4, van het btw-wetboek) betreft, vermeldt het rooster [00],<br/>voor statistische doeleinden, het bedrag van de verkochte goederen gewaardeerd tegen aanschaffingsprijs. Deze<br/>vermelding gebeurt :<br/><br/>- ofwel in elke aangifte, wanneer de belastingplichtige de maatstaf van heffing per levering bepaalt;<br/>- ofwel één maal per jaar, in de laatste aangifte van het jaar, wanneer de belastingplichtige de maatstaf van heffing per aangifteperiode bepaalt.<br/><br/>Wijziging per 1 jan 2010:<br/><br/>Rooster [00]<br/><br/>behalve de huidige beoogde handelingen zal dit rooster ook de door artikel 44 van het Wetboek vrijgestelde handelingen verricht door gemengde of gedeeltelijke belastingplichtigen moeten bevatten. Deze maatregel wordt genomen in het kader van de strijd tegen de fraude, van de risicoanalyse en van datamining. De beoogde handelingen zullen in principe worden vermeld in rooster 00 van de maand- of kwartaalaangifte met betrekking tot de periode waarin ze worden verricht. De administratie zal evenwel geen kritiek uiten indien de belastingplichtige ten minste éénmaal per kalenderjaar deze handelingen opneemt in rooster 00. Het spreekt vanzelf dat in dit geval de handelingen met betrekking tot het volledige jaar zullen moeten worden opgenomen in rooster 00 van de aangifte van de maand december of van het vierde kwartaal. + + + + VAT due by the Declarant + II. B + 1 + 120 + u + darkblue + + Roosters [01], [02] en [03] : maatstaf van heffing van de handelingen verricht in België waarvoor de belasting verschuldigd is door de aangever overeenkomstig artikel 51, §1, 1°, van het btw-wetboek.<br/><br/>Rooster [01] : handelingen onderworpen aan het tarief van 6 pct.<br/>Rooster [02] : handelingen onderworpen aan het tarief van 12 pct.<br/>Rooster [03] : handelingen onderworpen aan het tarief van 21 pct. + + + + Operations subject to 6% VAT + 01 + 1 + 121 + + Rooster [01] : handelingen onderworpen aan het tarief van 6 pct. + + + + Operations subject to 12% VAT + 02 + 1 + 122 + + Rooster [02] : handelingen onderworpen aan het tarief van 12 pct. + + + + Operations subject to 21% VAT + 03 + 1 + 123 + + Rooster [03] : handelingen onderworpen aan het tarief van 21 pct. + + + + Foreign VAT due by the Cocontractant + II. C + 1 + 130 + u + darkblue + + Diensten waarvoor de buitenlands btw verschuldigd is door de medecontractant + + + + Intra Community Services + 44 + 1 + 131 + + Vanaf 1 jan 2010: <br/><br/>rooster [44] : nieuw rooster voor de maatstaf van heffing van de verrichte diensten aan een belastingplichtige gevestigd in een andere lidstaat waar deze belastingplichtige schuldenaar is van de belasting en voor zover deze dienstverrichtingen niet vrijgesteld zijn van de belasting in deze lidstaat = handelingen op te nemen in de intracommunautaire opgave van de aangever (voorheen opgenomen in rooster [47]). + + + + VAT due by the Cocontractant + II. D + 1 + 140 + u + darkblue + + Handelingen waarvoor de btw verschuldigd is door de medecontractant. + + + + VAT due by the Cocontractant + 45 + 1 + 141 + + Rooster [45] : maatstaf van heffing van de handelingen verricht in België waarvoor de belasting verschuldigd is door de medecontractant van de aangever.<br/><br/>Het betreft :<br/><br/>- de handelingen waarvoor de belasting verschuldigd is door de medecontractant op grond van artikel 51, § 2, van het btw-wetboek;<br/><br/>- de handelingen bedoeld in de artikelen 20 en 20bis van het K.B. nr. 1;<br/><br/>- de handelingen waarvoor de belasting verschuldigd is door de medecontractant krachtens een algemene of bijzondere administratieve vergunning. + + + + VAT exempt Intra Community Supplies + II. E + 1 + 150 + u + darkblue + + Vrijgestelde intracommunautaire leveringen verricht in België en ABC-verkopen. + + + + VAT exempt Intra Community and ABC Supplies + 46 + 1 + 151 + + Rooster [46] : maatstaf van heffing :<br/><br/>- van de intracommunautaire leveringen van goederen en gelijkgestelde handelingen (overbrengingen) - z. art. 39bis van het btw-wetboek;<br/><br/>- van de leveringen van goederen bedoeld in artikel 25 quinquies, § 3, laatste lid, van het btw-wetboek, verricht in de Lidstaat van aankomst van de verzending of van het vervoer van de goederen. + + + + VAT exempt Intra Community Supplies of Goods + 46L + 1 + 152 + + + + + VAT exempt Intra Community ABC Supplies + 46T + 1 + 153 + + + + + Other VAT exempt Operations + II. F + 1 + 160 + u + darkblue + + Andere vrijgestelde handelingen en handelingen verricht in het buitenland. + + + + Other VAT exempt Operations + 47 + 1 + 161 + + Andere vrijgestelde handelingen en handelingen verricht in het buitenland.<br/><br/>Rooster [47] : maatstaf van heffing :<br/><br/>- van de handelingen verricht in België en vrijgesteld van de belasting overeenkomstig de artikelen 39 tot 42 en 44bis van het btw-wetboek, met uitzondering van artikel 39bis van het btw-wetboek;<br/><br/>- van de handelingen verricht in België en vrijgesteld van de belasting overeenkomstig artikel 44 van het btw-wetboek waarvoor in hoofde van de aangever een recht op aftrek van de belasting bestaat overeenkomstig artikel 45, §1, 4° en 5°, van het btw-wetboek;<br/><br/>- van de handelingen verricht in het buitenland. + + + + Issued Credit Notes and Negative Corrections + II. G + -1 + 170 + u + darkblue + + Bedrag van de uitgereikte creditnota’s en de negatieve verbeteringen. + + + + Issued Credit Notes Operations Grid [44] and [46] + 48 + 1 + 171 + + Bedrag van de uitgereikte creditnota’s en de negatieve verbeteringen<br/><br/>Rooster [48] : bedrag van de uitgereikte creditnota’s en de negatieve verbeteringen met betrekking tot de handelingen ingeschreven in rooster [46].<br/><br/>Vanaf 1 jan 2010: <br/><br/>[48] : behalve de huidige beoogde verbeteringen zal dit rooster ook de eventuele negatieve verbeteringen van de in rooster [44] vermelde handelingen moeten bevatten (voorheen opgenomen in rooster [49]). + + + + Issued Credit Notes Other Operations Section II + 49 + 1 + 175 + + Bedrag van de uitgereikte creditnota’s en de negatieve verbeteringen<br/><br/>Rooster [49] : bedrag (btw niet inbegrepen) van de uitgereikte creditnota’s en de negatieve verbeteringen met betrekking tot de andere handelingen van kader II. + + + + Incoming Operations + III + 0 + 200 + bu + darkblue + + + + + Incoming Operations incl. Credit Notes and Corrections + III. A + 1 + 210 + u + darkblue + + Bedrag van de inkomende handelingen rekening houdend met de ontvangen creditnota’s en de andere verbeteringen<br/><br/>Rooster [81] : bedrag (aftrekbare btw niet inbegrepen) van de aankopen van handelsgoederen, grond- en hulpstoffen.<br/>Rooster [82] : bedrag (aftrekbare btw niet inbegrepen) van de aankopen van diverse goederen en diensten.<br/>Rooster [83] : bedrag (aftrekbare btw niet inbegrepen) van de aankopen van bedrijfsmiddelen.<br/><br/>In het geval de belastingplichtige een btw-eenheid betreft, bevat het bedrag van de roosters [81], [82] en [83] in voorkomend geval ook de interne aankopen van de leden van de btw-eenheid. + + + + Purchases of Goods, Raw Materials and Consumables + 81 + 1 + 211 + + Bedrag van de inkomende handelingen rekening houdend met de ontvangen creditnota’s en de andere verbeteringen<br/><br/>Rooster [81] : bedrag (aftrekbare btw niet inbegrepen) van de aankopen van handelsgoederen, grond- en hulpstoffen. + + + + Purchases of Goods, Raw Materials and Consumables + 81D + 1 + 212 + + + + + Purchases of Goods, Raw Mater. and Consum. - VAT Non Deductible + 81ND + 1 + 213 + + + + + Purchases of various Goods and Services + 82 + 1 + 214 + + Bedrag van de inkomende handelingen rekening houdend met de ontvangen creditnota’s en de andere verbeteringen<br/><br/>Rooster [82] : bedrag (aftrekbare btw niet inbegrepen) van de aankopen van diverse goederen en diensten. + + + + Purchases of various Goods and Services + 82D + 1 + 215 + + + + + Purchases of various Goods and Services - VAT Non Deductible + 82ND + 1 + 216 + + + + + Purchases of Assets + 83 + 1 + 217 + + Bedrag van de inkomende handelingen rekening houdend met de ontvangen creditnota’s en de andere verbeteringen<br/><br/>Rooster [83] : bedrag (aftrekbare btw niet inbegrepen) van de aankopen van bedrijfsmiddelen. + + + + Purchases of Assets + 83D + 1 + 218 + + + + + Purchases of Assets - VAT Non Deductible + 83ND + 1 + 219 + + + + + Incoming Credit Notes and negative Corrections + III. B + 0 + 220 + u + darkblue + + Bedrag van de ontvangen creditnota’s en de negatieve verbeteringen.<br/><br/>Rooster [84] : bedrag van de ontvangen creditnota’s en de negatieve verbeteringen met betrekking tot de handelingen ingeschreven in rooster [86].<br/><br/>Rooster [85] : bedrag (btw niet inbegrepen) van de ontvangen creditnota’s en negatieve verbeteringen met betrekking tot de andere handelingen van kader III. + + + + Incoming Credit Notes Operations Grid [86] and [88] + 84 + 1 + 221 + + Bedrag van de ontvangen creditnota’s en de negatieve verbeteringen<br/><br/>Rooster [84] : bedrag van de ontvangen creditnota’s en de negatieve verbeteringen met betrekking tot de handelingen ingeschreven in rooster [86].<br/><br/>Vanaf 1 jan 2010: <br/><br/>[84] : naast de correcties inzake intracommunautaire verwervingen [86], zal dit rooster ook de eventuele negatieve verbeteringen van de in rooster [88] vermelde handelingen moeten bevatten. + + + + Incoming Credit Notes other Operations + 85 + 1 + 222 + + Bedrag van de ontvangen creditnota’s en de negatieve verbeteringen<br/><br/>Rooster [85] : bedrag (btw niet inbegrepen) van de ontvangen creditnota’s en negatieve verbeteringen met betrekking tot de andere handelingen van kader III. + + + + Incoming Credit Notes other Operations + 85D + 1 + 223 + + + + + Incoming Credit Notes other Operations - VAT Non Deductible + 85ND + 1 + 224 + + + + + Intra Community Acquisitions and ABC Sales + III. C + 0 + 230 + u + darkblue + + Intracommunautaire verwervingen verricht in België en ABC-verkopen.<br/><br/>Rooster [86] : maatstaf van heffing van :<br/><br/>- de intracommunautaire verwervingen van goederen en gelijkgestelde handelingen verricht in België waarvoor de belasting verschuldigd is door de aangever overeenkomstig artikel 51, §1, 2° van het btw-wetboek;<br/><br/>- de intracommunautaire verwervingen verricht onder de voorwaarden van artikel 25quinquies, §3, laatste lid, van het btw-wetboek;<br/><br/>- de leveringen van goederen bedoeld in artikel 25ter, §1, tweede lid, 3°, van het btw-wetboek waarvoor de belasting verschuldigd is door de aangever overeenkomstig artikel 51, §2, 2°, van het btw-wetboek.<br/><br/>De over deze handelingen verschuldigde belasting moet worden ingeschreven in rooster [55]. + + + + Intra Community and ABC Acquisitions + 86 + 1 + 231 + + Intracommunautaire verwervingen verricht in België en ABC-verkopen<br/><br/>Rooster [86] : maatstaf van heffing van :<br/><br/>- de intracommunautaire verwervingen van goederen en gelijkgestelde handelingen verricht in België waarvoor de belasting verschuldigd is door de aangever overeenkomstig artikel 51, §1, 2° van het btw-wetboek;<br/><br/>- de intracommunautaire verwervingen verricht onder de voorwaarden van artikel 25quinquies, §3, laatste lid, van het btw-wetboek;<br/><br/>- de leveringen van goederen bedoeld in artikel 25ter, §1, tweede lid, 3°, van het btw-wetboek waarvoor de belasting verschuldigd is door de aangever overeenkomstig artikel 51, §2, 2°, van het btw-wetboek.<br/><br/>De over deze handelingen verschuldigde belasting moet worden ingeschreven in rooster [55]. + + + + Other Incoming Operations with VAT due by the Declarant + III. D + 0 + 240 + u + darkblue + + Andere inkomende handelingen waarvoor de btw verschuldigd is door de aangever<br/><br/>Rooster [87] : maatstaf van heffing van de andere inkomende handelingen verricht in België waarvoor de belasting verschuldigd is door de aangever.<br/><br/>Het betreft :<br/><br/>- de handelingen waarvoor de belasting verschuldigd is door de medecontractant (aangever) op grond van artikel 51, §2, 1°, 5° en 6°, van het btw-Wetboek;<br/><br/>- de werken in onroerende staat of gelijkgestelde handelingen (art. 20, K.B. nr. 1);<br/><br/>- de leveringen van beleggingsgoud (met belastingheffing), van goud of halffabrikaten met een zuiverheid van ten minste 325 duizendsten (art. 20bis, K.B. nr. 1);<br/><br/>- de invoer van goederen afkomstig van niet Lidstaten van de Europese Unie, met verlegging van de heffing naar het binnenland (art. 5, §3, K.B. nr. 7); + + + + Other Incoming Operations + 87 + 1 + 241 + + Andere inkomende handelingen waarvoor de btw verschuldigd is door de aangever<br/><br/>Rooster [87] : maatstaf van heffing van de andere inkomende handelingen verricht in België waarvoor de belasting verschuldigd is door de aangever.<br/><br/>Het betreft :<br/><br/>- de handelingen waarvoor de belasting verschuldigd is door de medecontractant (aangever) op grond van artikel 51, §2, 1°, 5° en 6°, van het btw-Wetboek;<br/><br/>- de werken in onroerende staat of gelijkgestelde handelingen (art. 20, K.B. nr. 1);<br/><br/>- de leveringen van beleggingsgoud (met belastingheffing), van goud of halffabrikaten met een zuiverheid van ten minste 325 duizendsten (art. 20bis, K.B. nr. 1);<br/><br/>- de invoer van goederen afkomstig van niet Lidstaten van de Europese Unie, met verlegging van de heffing naar het binnenland (art. 5, §3, K.B. nr. 7); + + + + Intra Community Services + III. E + 0 + 250 + u + darkblue + + Intracommunautaire diensten met verlegging van heffing + + + + Intra Community Services + 88 + 1 + 251 + + Vanaf 1 jan 2010: <br/><br/>Rooster [88] : in dit rooster wordt de maatstaf van heffing opgenomen “van de diensten ontvangen van een in een andere lidstaat gevestigde belastingplichtige, die plaatsvinden in België overeenkomstig de algemene regel van de plaats van vestiging van de afnemer, en waarvoor de aangever schuldenaar is van de belasting in België ingevolge de algemene verlegging van de heffingâ€. Het gaat dus om de handelingen die de buitenlandse dienstverrichter moet opnemen in zijn intracommunautaire opgave van diensten. + + + + Balance (71-72) + VI + 0 + 600 + bu + darkblue + + Kader VI : SALDO<br/><br/>Rooster [71] : bedrag van de aan de Staat verschuldigde belasting: Rooster [xx] - Rooster [yy] van de aangifteperiode.<br/><br/>Indien in de loop van het tijdvak geen enkele handeling werd verricht dient in de vakken van de eenheden en de centen een nul te worden ingevuld. <br/>Dit geldt eveneens wanneer de in de roosters xx en yy ingevulde bedragen gelijk zijn (rooster 71 = 0,00).<br/><br/>Rooster [72] : bedrag van de sommen verschuldigd door de Staat : Rooster [yy] - Rooster [xx] van de aangifteperiode.<br/><br/>Slechts één van de twee roosters kan worden ingevuld.<br/><br/>Bij het invullen van de roosters [71] of [72] houdt de belastingplichtige in geen geval rekening met de bedragen van de rekening-courant die de administratie voor hem bijhoudt. + + + + To Pay - Total + XX + 1 + 300 + bu + darkblue + + Totaal van de roosters 54, 55, 56, 57, 61 en 63. + + + + VAT on Operations Grids [01], [02], [03], [86], [87], [88] + IV. A + 1 + 310 + u + darkblue + + BTW op de handelingen aangegeven in de roosters 01, 02, 03, 86 en 87.<br/><br/>Rooster [54] : bedrag van de verschuldigde belasting op de handelingen vermeld in de roosters [01], [02] en [03].<br/><br/>Rooster [55] : bedrag van de verschuldigde belasting op de handelingen vermeld in rooster [86].<br/><br/>Rooster [56] : bedrag van de verschuldigde belasting op de handelingen vermeld in rooster [87], met uitzondering van de handelingen waarvoor de belasting wordt vermeld in rooster [57]. + + + + VAT on Operations Grids [01], [02], [03] + 54 + 1 + 311 + + Rooster [54] : bedrag van de verschuldigde belasting op de handelingen vermeld in de roosters [01], [02] en [03]. + + + + VAT on Operations Grids [86] and [88] + 55 + 1 + 312 + + Rooster [55] : bedrag van de verschuldigde belasting op de handelingen vermeld in rooster [86].<br/><br/>Vanaf 1 jan 2010: <br/><br/>[55] : behalve de BTW op intracommunautaire verwervingen, zal dit rooster voortaan ook de verschuldigde BTW moeten bevatten over de handelingen opgenomen in het nieuwe rooster [88]. + + + + VAT on Operations Grid [87] + 56 + 1 + 313 + + Rooster [56] : bedrag van de verschuldigde belasting op de handelingen vermeld in rooster [87], met uitzondering van de handelingen waarvoor de belasting wordt vermeld in rooster [57]. + + + + VAT on Imports + IV. B + 1 + 320 + u + darkblue + + BTW op invoeren met verlegging van heffing<br/><br/>Rooster [57] : bedrag van de verschuldigde belasting op invoeren uit niet Lidstaten van de Europese Unie, met verlegging van de heffing naar het binnenland (z. art. 5, §3, K.B. nr. 7). + + + + VAT on Imports + 57 + 1 + 321 + + BTW op invoeren met verlegging van heffing<br/><br/>Rooster [57] : bedrag van de verschuldigde belasting op invoeren uit niet Lidstaten van de Europese Unie, met verlegging van de heffing naar het binnenland (z. art. 5, §3, K.B. nr. 7). + + + + VAT adjustments in favor of the Tax Authority + IV. C + 1 + 330 + u + darkblue + + Diverse btw-regularisaties in het voordeel van de Staat<br/><br/>Rooster [61] : diverse btw-herzieningen in het voordeel van de Staat (ontoereikende heffingen vastgesteld door de aangever, herzieningen van de aftrek, regularisaties ingevolge administratieve beslissingen).<br/><br/>Het bedrag van het debetsaldo van de rekening-courant die de administratie voor de belastingplichtige bijhoudt, mag GEENSZINS in de aangifte worden vermeld. + + + + VAT adjustments in favor of the Tax Authority + 61 + 1 + 331 + + Diverse btw-regularisaties in het voordeel van de Staat<br/><br/>Rooster [61] : diverse btw-herzieningen in het voordeel van de Staat (ontoereikende heffingen vastgesteld door de aangever, herzieningen van de aftrek, regularisaties ingevolge administratieve beslissingen).<br/><br/>Het bedrag van het debetsaldo van de rekening-courant die de administratie voor de belastingplichtige bijhoudt, mag GEENSZINS in de aangifte worden vermeld. + + + + VAT Debt from Incoming Credit Notes + IV. D + 1 + 340 + u + darkblue + + Terug te storten btw vermeld op ontvangen creditnota’s<br/><br/>Rooster [63] : bedrag van de terug te storten belasting ingevolge ontvangen creditnota’s (t.t.z. de belasting die op de ontvangen creditnota’s is vermeld). + + + + VAT Debt from Incoming Credit Notes + 63 + 1 + 341 + + Terug te storten btw vermeld op ontvangen creditnota’s<br/><br/>Rooster [63] : bedrag van de terug te storten belasting ingevolge ontvangen creditnota’s (t.t.z. de belasting die op de ontvangen creditnota’s is vermeld). + + + + Deductible - Total + YY + -1 + 400 + bu + darkblue + + Totaal van de roosters 59, 62 en 64. + + + + Deductible VAT + V. A + 1 + 410 + u + darkblue + + Aftrekbare BTW<br/><br/>Rooster [59] : bedrag van de aftrekbare belasting met betrekking tot de inkomende handelingen (art. 45 van het btw-wetboek en het K.B. nr. 3). + + + + Deductible VAT + 59 + 1 + 411 + + + + + VAT adjustments in favor of the Declarant + V. B + 1 + 420 + u + darkblue + + Diverse btw-regularisaties in het voordeel van de aangever.<br/><br/>Rooster [62] : diverse btw-herzieningen in het voordeel van de aangever<br/>(belasting waarvan de aangever teruggave kan verkrijgen, herzieningen van de aftrek, regularisaties ingevolge administratieve beslissingen).<br/><br/>Het bedrag van het creditsaldo van de rekening-courant die de administratie voor de belastingplichtige bijhoudt, mag GEENSZINS in de aangifte worden vermeld. + + + + VAT adjustments in favor of the Declarant + 62 + 1 + 421 + + Diverse btw-regularisaties in het voordeel van de aangever.<br/><br/>Rooster [62] : diverse btw-herzieningen in het voordeel van de aangever<br/>(belasting waarvan de aangever teruggave kan verkrijgen, herzieningen van de aftrek, regularisaties ingevolge administratieve beslissingen).<br/><br/>Het bedrag van het creditsaldo van de rekening-courant die de administratie voor de belastingplichtige bijhoudt, mag GEENSZINS in de aangifte worden vermeld. + + + + Deductible VAT from Outgoing Credit Notes + V. C + 1 + 430 + u + darkblue + + Te recupereren btw vermeld op uitgereikte creditnota’s.<br/><br/>Rooster [64] : bedrag van de te recupereren belasting ingevolge uitgereikte creditnota’s (t.t.z. de belasting die op de uitgereikte creditnota’s is vermeld). + + + + Deductible VAT from Outgoing Credit Notes + 64 + 1 + 431 + + Te recupereren btw vermeld op uitgereikte creditnota’s<br/><br/>Rooster [64] : bedrag van de te recupereren belasting ingevolge uitgereikte creditnota’s (t.t.z. de belasting die op de uitgereikte creditnota’s is vermeld). + + + + Advance + VII + 0 + 500 + bu + darkblue + + Betreft uitsluitend de maandaandgifte van de december. + + + + Advance for Operations from December 1 to 20 + 91 + 1 + 501 + + Rooster [91] : bedrag van het uiterlijk op 24 december verschuldigd voorschot op de belasting voor de handelingen van de maand december, dat overeenstemt met het bedrag van de belasting dat effectief verschuldigd is voor de handelingen verricht van de 1e tot en met de 20e december (z. art. 19, §3, tweede lid, van het K.B. nr.1).<br/><br/>Opmerkingen :<br/><br/>1. Rooster [91] wordt enkel ingevuld wanneer de voorwaarden a) en b) tegelijkertijd vervuld zijn :<br/><br/>a) de betreffende aangifte is een maandaangifte met betrekking tot de maand december.<br/>-> De belastingplichtige die gehouden is tot het indienen van btw-kwartaalaangiften mag bijgevolg nooit een bedrag vermelden in rooster [91]. Het betreft immers in geen geval de door hem te betalen voorschotten die verschuldigd zijn tijdens de 2de en 3de maand van elk kwartaal;<br/><br/>b)de belastingplichtige heeft ervoor gekozen om zijn decembervoorschot te bepalen rekening houdend met de effectief verschuldigde belasting voor de handelingen verricht van 1 tot en met 20 december.<br/>-> De belastingplichtige die wil vermijden dat het bedrag van het decembervoorschot op bovengenoemde wijze wordt vastgesteld, mag het rooster [91] van de aangifte met betrekking tot de handelingen van de maand december niet invullen. Het te betalen decembervoorschot is in dat geval gelijk aan het bedrag van de verschuldigde belasting voor de handelingen van de maand november van het lopende kalenderjaar (rooster [71] van die aangifte).<br/>-> Daarenboven wordt de aandacht erop gevestigd dat de administratie slechts rekening kan houden met het bedrag vermeld in rooster [91] van de aangifte met betrekking tot de handelingen van de maand december wanneer die aangifte tijdig is ingediend, d.w.z. uiterlijk op 20 januari van het daaropvolgende jaar. Indien dit niet het geval is, is het bedrag van het te betalen decembervoorschot eveneens gelijk aan het bedrag van de verschuldigde belasting voor de handelingen van de maand november van het lopende kalenderjaar (rooster [71] van die aangifte).<br/><br/>2. Indien overeenkomstig de hierboven opgenomen regels rooster [91] wordt ingevuld, onderscheiden zich twee mogelijkheden :<br/><br/>a) ofwel is het bedrag van de opeisbare belasting voor de handelingen verricht tijdens de periode van 1 tot en met 20 december van het lopende kalenderjaar groter dan het bedrag van de belasting waarvoor de belastingplichtige zijn recht op aftrek kan uitoefenen voor diezelfde periode.<br/>-> Het verschil tussen deze twee bedragen wordt vermeld in rooster [91];<br/><br/>b) ofwel is het bedrag van de opeisbare belasting voor de handelingen verricht tijdens de periode van 1 tot en met 20 december van het lopende kalenderjaar kleiner of gelijk aan het bedrag van de belasting waarvoor de belastingplichtige zijn recht op aftrek kan uitoefenen voor diezelfde periode.<br/>-> In rooster [91] wordt het cijfer “0,00†vermeld. + + + + diff --git a/l10n_be_coa_multilang/data/account_tax_template.xml b/l10n_be_coa_multilang/data/account_tax_template.xml new file mode 100644 index 00000000..cda35ad9 --- /dev/null +++ b/l10n_be_coa_multilang/data/account_tax_template.xml @@ -0,0 +1,1895 @@ + + + + + + VAT-OUT-21-S + 10 + 21% + 21% Services + + + 21 + percent + sale + + + + + VAT-OUT-21-G + 11 + 21% + 21% Goods + + + 21 + percent + sale + + + + + VAT-OUT-21-CD2-S + 12 + 21% - Cash Discount 2% + 21% Services - Cash Discount 2% + + + 20.58 + percent + sale + + + + + VAT-OUT-21-CD2-G + 13 + 21% - Cash Discount 2% + 21% Goods - Cash Discount 2% + + + 20.58 + percent + sale + + + + + VAT-OUT-21-INC-S + 14 + 21% + 21% Services (Price Incl.) + + + + 21 + percent + sale + + + + + VAT-OUT-21-INC-G + 15 + 21% + 21% Goods (Price Incl.) + + + + 21 + percent + sale + + + + + VAT-OUT-12-S + 20 + 12% + 12% Services + + + 12 + percent + sale + + + + + VAT-OUT-12-G + 21 + 12% + 12% Goods + + + 12 + percent + sale + + + + + VAT-OUT-06-S + 30 + 6% + 6% Services + + + 6 + percent + sale + + + + + VAT-OUT-06-G + 31 + 6% + 6% Goods + + + 6 + percent + sale + + + + + VAT-OUT-00-S + 40 + 0% + 0% Services + 0 + percent + sale + + + + + VAT-OUT-00-G + 41 + 0% + 0% Goods + 0 + percent + sale + + + + + VAT-OUT-00-CC + 50 + 0% + 0% Cocontractant + 0 + percent + sale + + + + + VAT-OUT-00-EU-S + 60 + 0% + Services within EU + 0 + percent + sale + + + + + VAT-OUT-00-EU-G + 61 + 0% + Goods within EU (Code L) + 0 + percent + sale + + + + + VAT-OUT-00-EU-T + 62 + 0% + Goods within EU (Code T) + 0 + percent + sale + + + + + VAT-OUT-00-ROW + 70 + 0% + Export Outside EU + 0 + percent + sale + + + + + VAT-IN-V81-21-S + 110 + 21% + 21% - Services for resale + + + 21 + percent + purchase + + + + + VAT-IN-V81-21-G + 113 + 21% + 21% - Raw mat., consum. and goods for resale + + + 21 + percent + purchase + + + + + VAT-IN-V81-12 + 120 + 12% + 12% - Raw mat., consum. and goods for resale + + + 12 + percent + purchase + + + + + VAT-IN-V81-06 + 130 + 6% + 6% - Raw mat., consum. and goods for resale + + + 6 + percent + purchase + + + + + VAT-IN-V81-00 + 140 + 0% + 0% - Raw mat., consum. and goods for resale + 0 + percent + purchase + + + + + VAT-IN-V82-21-S + 210 + 21% + 21% - Services + + + 21 + percent + purchase + + + + + VAT-IN-V82-21-CD2-S + 213 + 21% - Cash Discount 2% + 21% - Services - Cash Discount 2% + + + 20.58 + percent + purchase + + + + + VAT-IN-V82-21-INC-S + 216 + 21% + 21% - Services (Price Incl.) + + + + 21 + percent + purchase + + + + + VAT-IN-V82-21-G + 220 + 21% + 21% - Other goods + + + 21 + percent + purchase + + + + + VAT-IN-V82-12-S + 230 + 12% + 12% - Services + + + 12 + percent + purchase + + + + + VAT-IN-V82-12-G + 240 + 12% + 12% - Other goods + + + 12 + percent + purchase + + + + + VAT-IN-V82-06-S + 250 + 6% + 6% - Services + + + 6 + percent + purchase + + + + + VAT-IN-V82-06-G + 260 + 6% + 6% - Other goods + + + 6 + percent + purchase + + + + + VAT-IN-V82-00-S + 270 + 0% + 0% - Services + 0 + percent + purchase + + + + + VAT-IN-V82-00-G + 280 + 0% + 0% - Other goods + 0 + percent + purchase + + + + + VAT-IN-V83-21 + 310 + 21% + 21% - Capital goods + + + 21 + percent + purchase + + + + + VAT-IN-V83-12 + 320 + 12% + 12% - Capital goods + + + 12 + percent + purchase + + + + + VAT-IN-V83-06 + 330 + 6% + 6% - Capital goods + + + 6 + percent + purchase + + + + + VAT-IN-V83-00 + 340 + 0% + 0% - Capital goods + 0 + percent + purchase + + + + + VAT-IN-V81-21-CC-C1 + 411 + VAT Deductible 21% - Cocontractant + VAT Deductible 21% Goods - Cocontractant + + + 21 + percent + none + + + + + VAT-IN-V81-21-CC-C2 + 412 + VAT Debt 21% - Cocontractant + VAT Debt 21% Goods - Cocontractant + + + -21 + percent + none + + + + + VAT-IN-V81-21-CC + 410 + 21% Cocontractant + 21% Cocontract. - Raw mat., consum. and goods for resale + 0 + group + purchase + + + + + + VAT-IN-V81-12-CC-C1 + 421 + VAT Deductible 12% - Cocontractant + VAT Deductible 12% Goods - Cocontractant + + + 12 + percent + none + + + + + VAT-IN-V81-12-CC-C2 + 422 + VAT Debt 12% - Cocontractant + VAT Debt 12% Goods - Cocontractant + + + -12 + percent + none + + + + + VAT-IN-V81-12-CC + 420 + 12% Cocontractant + 12% Cocontract. - Raw mat., consum. and goods for resale + 0 + group + purchase + + + + + + VAT-IN-V81-06-CC-C1 + 431 + VAT Deductible 6% - Cocontractant + VAT Deductible 6% Goods - Cocontractant + + + 6 + percent + none + + + + + VAT-IN-V81-06-CC-C2 + 432 + VAT Debt 6% - Cocontractant + VAT Debt 6% Goods - Cocontractant + + + -6 + percent + none + + + + + VAT-IN-V81-06-CC + 430 + 6% Cocontractant + 6% Cocontract. - Raw mat., consum. and goods for resale + 0 + group + purchase + + + + + + VAT-IN-V81-00-CC + 440 + 0% Cocontractant + 0% Cocontract. - Raw mat., consum. and goods for resale + 0 + percent + purchase + + + + + VAT-IN-V82-21-CC-C1 + 511 + VAT Deductible 21% - Cocontractant + VAT Deductible 21% Services - Cocontractant + + + 21 + percent + none + + + + + VAT-IN-V82-21-CC-C2 + 512 + VAT Debt 21% - Cocontractant + VAT Debt 21% Services - Cocontractant + + + -21 + percent + none + + + + + VAT-IN-V82-21-CC + 510 + 21% Cocontractant + 21% Cocontract. - Services and other goods + 0 + group + purchase + + + + + + VAT-IN-V82-12-CC-C1 + 521 + VAT Deductible 12% - Cocontractant + VAT Deductible 12% Services - Cocontractant + + + 12 + percent + none + + + + + VAT-IN-V82-12-CC-C2 + 522 + VAT Debt 12% - Cocontractant + VAT Debt 12% Services - Cocontractant + + + -12 + percent + none + + + + + VAT-IN-V82-12-CC + 520 + 12% Cocontractant + 12% Cocontract. - Services and other goods + 0 + group + purchase + + + + + + VAT-IN-V82-06-CC-C1 + 531 + VAT Deductible 6% - Cocontractant + VAT Deductible 6% Services - Cocontractant + + + 6 + percent + none + + + + + VAT-IN-V82-06-CC-C2 + 532 + VAT Debt 6% - Cocontractant + VAT Debt 6% Services - Cocontractant + + + -6 + percent + none + + + + + VAT-IN-V82-06-CC + 530 + 6% Cocontractant + 6% Cocontract. - Services and other goods + 0 + group + purchase + + + + + + VAT-IN-V82-00-CC + 540 + 0% Cocontractant + 0% Cocontract. - Services and other goods + 0 + percent + purchase + + + + + VAT-IN-V83-21-CC-C1 + 611 + VAT Deductible 21% - Cocontractant + VAT Deductible 21% Capital goods - Cocontractant + + + 21 + percent + none + + + + + VAT-IN-V83-21-CC-C2 + 612 + VAT Debt 21% - Cocontractant + VAT Debt 21% Capital goods - Cocontractant + + + -21 + percent + none + + + + + VAT-IN-V83-21-CC + 610 + 21% Cocontractant + 21% Cocontract. - Capital goods + 0 + group + purchase + + + + + + VAT-IN-V83-12-CC-C1 + 621 + VAT Deductible 12% - Cocontractant + VAT Deductible 12% Capital goods - Cocontractant + + + 12 + percent + none + + + + + VAT-IN-V83-12-CC-C2 + 622 + VAT Debt 12% - Cocontractant + VAT Debt 12% Capital goods - Cocontractant + + + -12 + percent + none + + + + + VAT-IN-V83-12-CC + 620 + 12% Cocontractant + 12% Cocontract. - Capital goods + 0 + group + purchase + + + + + + VAT-IN-V83-06-CC-C1 + 631 + VAT Deductible 6% - Cocontractant + VAT Deductible 6% Capital goods - Cocontractant + + + 6 + percent + none + + + + + VAT-IN-V83-06-CC-C2 + 632 + VAT Debt 6% - Cocontractant + VAT Debt 6% Capital goods - Cocontractant + + + -6 + percent + none + + + + + VAT-IN-V83-06-CC + 630 + 6% Cocontractant + 6% Cocontract. - Capital goods + 0 + group + purchase + + + + + + VAT-IN-V83-00-CC + 640 + 0% Cocontractant + 0% Cocontract. - Capital goods + 0 + percent + purchase + + + + + VAT-IN-V82-CAR50-INC + 710 + Car Expenses - VAT 50% Deductible + Car Expenses - VAT 50% Deductible (Price Incl.) + + + + 9.5 + percent + purchase + + + + + VAT-IN-V82-CAR35-INC + 713 + Car Expenses - VAT 35% Deductible + Car Expenses - VAT 35% Deductible (Price Incl.) + + + + 6.47 + percent + purchase + + + + + VAT-IN-V82-CAR50-EXC-C1 + 721 + CAR50-EXC - VAT Non Deductible + CAR50-EXC - VAT Non Deductible + 10.5 + percent + none + + + + + VAT-IN-V82-CAR50-EXC-C2 + 722 + CAR50-EXC - VAT Deductible + CAR50-EXC - VAT Deductible + + + 10.5 + percent + none + + + + + VAT-IN-V82-CAR50-EXC + 720 + Car Expenses - VAT 50% Deductible + Car Expenses - VAT 50% Deductible (Price Excl.) + 0 + group + purchase + + + + + + VAT-IN-V82-CAR35-EXC-C1 + 725 + CAR35-EXC - VAT Non Deductible + CAR35-EXC - VAT Non Deductible + 13.65 + percent + none + + + + + VAT-IN-V82-CAR35-EXC-C2 + 726 + CAR35-EXC - VAT Deductible + CAR35-EXC - VAT Deductible + + + 7.35 + percent + none + + + + + VAT-IN-V82-CAR35-EXC + 724 + Car Expenses - VAT 35% Deductible + Car Expenses - VAT 35% Deductible (Price Excl.) + 0 + group + purchase + + + + + + VAT-IN-V81-21-EU-S-C1 + 1111 + VAT Deductible 21% - Intracomm. + VAT Deductible 21% Services for resale - Intracomm. + + + 21 + percent + none + + + + + VAT-IN-V81-21-EU-S-C2 + 1112 + VAT Debt 21% - Intracomm. + VAT Debt 21% Services for resale - Intracomm. + + + -21 + percent + none + + + + + VAT-IN-V81-21-EU-S + 1110 + 21% Intracomm. + 21% Intracomm. - Services for resale + 0 + group + purchase + + + + + + VAT-IN-V81-21-EU-G-C1 + 1115 + VAT Deductible 21% - Intracomm. + VAT Deductible 21% Goods for resale - Intracomm. + + + 21 + percent + none + + + + + VAT-IN-V81-21-EU-G-C2 + 1116 + VAT Debt 21% - Intracomm. + VAT Debt 21% Goods for resale - Intracomm. + + + -21 + percent + none + + + + + VAT-IN-V81-21-EU-G + 1114 + 21% Intracomm. + 21% Intracomm. - Raw mat., consum. and goods for resale + 0 + group + purchase + + + + + + VAT-IN-V81-12-EU-C1 + 1121 + VAT Deductible 12% - Intracomm. + VAT Deductible 12% Goods for resale - Intracomm. + + + 12 + percent + none + + + + + VAT-IN-V81-12-EU-C2 + 1122 + VAT Debt 12% - Intracomm. + VAT Debt 12% Goods for resale - Intracomm. + + + -12 + percent + none + + + + + VAT-IN-V81-12-EU + 1120 + 12% Intracomm. + 12% Intracomm. - Raw mat., consum. and goods for resale + 0 + group + purchase + + + + + + VAT-IN-V81-06-EU-C1 + 1131 + VAT Deductible 6% - Intracomm. + VAT Deductible 6% Goods for resale - Intracomm. + + + 6 + percent + none + + + + + VAT-IN-V81-06-EU-C2 + 1132 + VAT Debt 6% - Intracomm. + VAT Debt 6% Goods for resale - Intracomm. + + + -6 + percent + none + + + + + VAT-IN-V81-06-EU + 1130 + 6% Intracomm. + 6% Intracomm. - Raw mat., consum. and goods for resale + 0 + group + purchase + + + + + + VAT-IN-V81-00-EU + 1140 + 0% Intracomm. + 0% Intracomm. - Raw mat., consum. and goods for resale + 0 + percent + purchase + + + + + VAT-IN-V82-21-EU-S-C1 + 1211 + VAT Deductible 21% - Intracomm. + VAT Deductible 21% Services - Intracomm. + + + 21 + percent + none + + + + + VAT-IN-V82-21-EU-S-C2 + 1212 + VAT Debt 21% - Intracomm. + VAT Debt 21% Services - Intracomm. + + + -21 + percent + none + + + + + VAT-IN-V82-21-EU-S + 1210 + 21% Intracomm. + 21% Intracomm. - Services + 0 + group + purchase + + + + + + VAT-IN-V82-21-EU-G-C1 + 1221 + VAT Deductible 21% - Intracomm. + VAT Deductible 21% Other goods - Intracomm. + + + 21 + percent + none + + + + + VAT-IN-V82-21-EU-G-C2 + 1222 + VAT Debt 21% - Intracomm. + VAT Debt 21% Other goods - Intracomm. + + + -21 + percent + none + + + + + VAT-IN-V82-21-EU-G + 1220 + 21% Intracomm. + 21% Intracomm. - Other goods + 0 + group + purchase + + + + + + VAT-IN-V82-12-EU-S-C1 + 1231 + VAT Deductible 12% - Intracomm. + VAT Deductible 12% Services - Intracomm. + + + 12 + percent + none + + + + + VAT-IN-V82-12-EU-S-C2 + 1232 + VAT Debt 12% - Intracomm. + VAT Debt 12% Services - Intracomm. + + + -12 + percent + none + + + + + VAT-IN-V82-12-EU-S + 1230 + 12% Intracomm. + 12% Intracomm. - Services + 0 + group + purchase + + + + + + VAT-IN-V82-12-EU-G-C1 + 1241 + VAT Deductible 12% - Intracomm. + VAT Deductible 12% Other goods - Intracomm. + + + 12 + percent + none + + + + + VAT-IN-V82-12-EU-G-C2 + 1242 + VAT Debt 12% - Intracomm. + VAT Debt 12% Other goods - Intracomm. + + + -12 + percent + none + + + + + VAT-IN-V82-12-EU-G + 1240 + 12% Intracomm. + 12% Intracomm. - Other goods + 0 + group + purchase + + + + + + VAT-IN-V82-06-EU-S-C1 + 1251 + VAT Deductible 6% - Intracomm. + VAT Deductible 6% Services - Intracomm. + + + 6 + percent + none + + + + + VAT-IN-V82-06-EU-S-C2 + 1252 + VAT Debt 6% - Intracomm. + VAT Debt 6% Services - Intracomm. + + + -6 + percent + none + + + + + VAT-IN-V82-06-EU-S + 1250 + 6% Intracomm. + 6% Intracomm. - Services + 0 + group + purchase + + + + + + VAT-IN-V82-06-EU-G-C1 + 1261 + VAT Deductible 6% - Intracomm. + VAT Deductible 6% Other goods - Intracomm. + + + 6 + percent + none + + + + + VAT-IN-V82-06-EU-G-C2 + 1262 + VAT Debt 6% - Intracomm. + VAT Debt 6% Other goods - Intracomm. + + + -6 + percent + none + + + + + VAT-IN-V82-06-EU-G + 1260 + 6% Intracomm. + 6% Intracomm. - Other goods + 0 + group + purchase + + + + + + VAT-IN-V82-00-EU-S + 1270 + 0% Intracomm. + 0% Intracomm. - Services + 0 + percent + purchase + + + + + VAT-IN-V82-00-EU-G + 1280 + 0% Intracomm. + 0% Intracomm. - Other goods + 0 + percent + purchase + + + + + VAT-IN-V83-21-EU-C1 + 1311 + VAT Deductible 21% - Intracomm. + VAT Deductible 21% Capital goods - Intracomm. + + + 21 + percent + none + + + + + VAT-IN-V83-21-EU-C2 + 1312 + VAT Debt 21% - Intracomm. + VAT Debt 21% Capital goods - Intracomm. + + + -21 + percent + none + + + + + VAT-IN-V83-21-EU + 1310 + 21% Intracomm. + 21% Intracomm. - Capital goods + 0 + group + purchase + + + + + + VAT-IN-V83-12-EU-C1 + 1321 + VAT Deductible 12% - Intracomm. + VAT Deductible 12% Capital goods - Intracomm. + + + 12 + percent + none + + + + + VAT-IN-V83-12-EU-C2 + 1322 + VAT Debt 12% - Intracomm. + VAT Debt 12% Capital goods - Intracomm. + + + -12 + percent + none + + + + + VAT-IN-V83-12-EU + 1320 + 12% Intracomm. + 12% Intracomm. - Capital goods + 0 + group + purchase + + + + + + VAT-IN-V83-06-EU-C1 + 1331 + VAT Deductible 6% - Intracomm. + VAT Deductible 6% Capital goods - Intracomm. + + + 6 + percent + none + + + + + VAT-IN-V83-06-EU-C2 + 1332 + VAT Debt 6% - Intracomm. + VAT Debt 6% Capital goods - Intracomm. + + + -6 + percent + none + + + + + VAT-IN-V83-06-EU + 1330 + 6% Intracomm. + 6% Intracomm. - Capital goods + 0 + group + purchase + + + + + + VAT-IN-V83-00-EU + 1340 + 0% Intracomm. + 0% Intracomm. - Capital goods + 0 + percent + purchase + + + + + VAT-IN-V81-21-ROW-CC-C1 + 2111 + VAT Deductible 21% - Outside EU + VAT Deductible 21% Goods for resale - Outside EU + + + 21 + percent + none + + + + + VAT-IN-V81-21-ROW-CC-C2 + 2112 + VAT Debt 21% - Outside EU + VAT Debt 21% Goods for resale - Outside EU + + + -21 + percent + none + + + + + VAT-IN-V81-21-ROW-CC + 2110 + 21% Outside EU + 21% Outside EU - Raw mat., consum. and goods for resale + 0 + group + purchase + + + + + + VAT-IN-V81-12-ROW-CC-C1 + 2121 + VAT Deductible 12% - Outside EU + VAT Deductible 12% Goods for resale - Outside EU + + + 12 + percent + none + + + + + VAT-IN-V81-12-ROW-CC-C2 + 2122 + VAT Debt 12% - Outside EU + VAT Debt 12% Goods for resale - Outside EU + + + -12 + percent + none + + + + + VAT-IN-V81-12-ROW-CC + 2120 + 12% Outside EU + 12% Outside EU - Raw mat., consum. and goods for resale + 0 + group + purchase + + + + + + VAT-IN-V81-06-ROW-CC-C1 + 2131 + VAT Deductible 6% - Outside EU + VAT Deductible 6% Goods for resale - Outside EU + + + 6 + percent + none + + + + + VAT-IN-V81-06-ROW-CC-C2 + 2132 + VAT Debt 6% - Outside EU + VAT Debt 6% Goods for resale - Outside EU + + + -6 + percent + none + + + + + VAT-IN-V81-06-ROW-CC + 2130 + 6% Outside EU + 6% Outside EU - Raw mat., consum. and goods for resale + 0 + group + purchase + + + + + + VAT-IN-V81-00-ROW-CC + 2140 + 0% Outside EU + 0% Outside EU - Raw mat., consum. and goods for resale + 0 + percent + purchase + + + + + VAT-IN-V82-21-ROW-CC-C1 + 2211 + VAT Deductible 21% - Outside EU + VAT Deductible 21% Services and other goods - Outside EU + + + 21 + percent + none + + + + + VAT-IN-V82-21-ROW-CC-C2 + 2212 + VAT Debt 21% - Outside EU + VAT Debt 21% Services and other goods - Outside EU + + + -21 + percent + none + + + + + VAT-IN-V82-21-ROW-CC + 2210 + 21% Outside EU + 21% Outside EU - Services and other goods + 0 + group + purchase + + + + + + VAT-IN-V82-12-ROW-CC-C1 + 2221 + VAT Deductible 12% - Outside EU + VAT Deductible 12% Services and other goods - Outside EU + + + 12 + percent + none + + + + + VAT-IN-V82-12-ROW-CC-C2 + 2222 + VAT Debt 12% - Outside EU + VAT Debt 12% Services and other goods - Outside EU + + + -12 + percent + none + + + + + VAT-IN-V82-12-ROW-CC + 2220 + 12% Outside EU + 12% Outside EU - Services and other goods + 0 + group + purchase + + + + + + VAT-IN-V82-06-ROW-CC-C1 + 2231 + VAT Deductible 6% - Outside EU + VAT Deductible 6% Services and other goods - Outside EU + + + 6 + percent + none + + + + + VAT-IN-V82-06-ROW-CC-C2 + 2232 + VAT Debt 6% - Outside EU + VAT Debt 6% Services and other goods - Outside EU + + + -6 + percent + none + + + + + VAT-IN-V82-06-ROW-CC + 2230 + 6% Outside EU + 6% Outside EU - Services and other goods + 0 + group + purchase + + + + + + VAT-IN-V82-00-ROW-CC + 2240 + 0% Outside EU + 0% Outside EU - Services and other goods + 0 + percent + purchase + + + + + VAT-IN-V83-21-ROW-CC-C1 + 2311 + VAT Deductible 21% - Outside EU + VAT Deductible 21% Capital goods - Outside EU + + + 21 + percent + none + + + + + VAT-IN-V83-21-ROW-CC-C2 + 2312 + VAT Debt 21% - Outside EU + VAT Debt 21% Capital goods - Outside EU + + + -21 + percent + none + + + + + VAT-IN-V83-21-ROW-CC + 2310 + 21% Outside EU + 21% Outside EU - Capital goods + 0 + group + purchase + + + + + + VAT-IN-V83-12-ROW-CC-C1 + 2321 + VAT Deductible 12% - Outside EU + VAT Deductible 12% Capital goods - Outside EU + + + 12 + percent + none + + + + + VAT-IN-V83-12-ROW-CC-C2 + 2322 + VAT Debt 12% - Outside EU + VAT Debt 12% Capital goods - Outside EU + + + -12 + percent + none + + + + + VAT-IN-V83-12-ROW-CC + 2320 + 12% Outside EU + 12% Outside EU - Capital goods + 0 + group + purchase + + + + + + VAT-IN-V83-06-ROW-CC-C1 + 2331 + VAT Deductible 6% - Outside EU + VAT Deductible 6% Capital goods - Outside EU + + + 6 + percent + none + + + + + VAT-IN-V83-06-ROW-CC-C2 + 2332 + VAT Debt 6% - Outside EU + VAT Debt 6% Capital goods - Outside EU + + + -6 + percent + none + + + + + VAT-IN-V83-06-ROW-CC + 2330 + 6% Outside EU + 6% Outside EU - Capital goods + 0 + group + purchase + + + + + + VAT-IN-V83-00-ROW-CC + 2340 + 0% Outside EU + 0% Outside EU - Capital goods + 0 + percent + purchase + + + + + VAT-V61 + 3000 + VAT adjustments in favor of the Tax Authority + VAT adjustments in favor of the Tax Authority + + 0 + none + + + + + VAT-V62 + 3010 + VAT adjustments in favor of the Declarant + VAT adjustments in favor of the Declarant + + 0 + none + + + + + VAT-V91 + 3020 + Advance for Operations from December 1 to 20 + Advance for Operations from December 1 to 20 + 0 + none + + + + + VAT-V59 + 4000 + VAT deductible case 59 + VAT deductible case 59 + 0 + purchase + + + + + VAT-V82 + 4500 + VAT base case 82 + VAT base case 82 + 0 + purchase + + + + + diff --git a/l10n_be_coa_multilang/data/be_legal_financial_reportscheme.xml b/l10n_be_coa_multilang/data/be_legal_financial_reportscheme.xml new file mode 100644 index 00000000..bf862e50 --- /dev/null +++ b/l10n_be_coa_multilang/data/be_legal_financial_reportscheme.xml @@ -0,0 +1,980 @@ + + + + + + 20 + + + + + 21 + + + + + 22 + + + + + 23 + + + + + 24 + + + + + 25 + + + + + 26 + + + + + 27 + + + + + 280 + + + + + 281 + + + + + 282 + + + + + 283 + + + + + 284 + + + + + 285 + + + + + 286 + + + + + 287 + + + + + 288 + + + + + 290 + + + + + 291 + + + + + 30 + + + + + 31 + + + + + 32 + + + + + 33 + + + + + 34 + + + + + 35 + + + + + 36 + + + + + 37 + + + + + 400 + + + + + 401 + + + + + 402 + + + + + 403 + + + + + 404 + + + + + 405 + + + + + 406 + + + + + 407 + + + + + 408 + + + + + 409 + + + + + 41 + + + + + 50 + + + + + 51 + + + + + 52 + + + + + 53 + + + + + 54 + + + + + 55 + + + + + 56 + + + + + 57 + + + + + 58 + + + + + 490 + + + + + 491 + + + + + 100 + + + + + 101 + + + + + 11 + + + + + 12 + + + + + 130 + + + + + 1310 + + + + + 1311 + + + + + 132 + + + + + 133 + + + + + 14 + + + + + 15 + + + + + 19 + + + + + 160 + + + + + 161 + + + + + 162 + + + + + 163 + + + + + 164 + + + + + 165 + + + + + 168 + + + + + 170 + + + + + 171 + + + + + 172 + + + + + 173 + + + + + 174 + + + + + 1750 + + + + + 1751 + + + + + 176 + + + + + 178 + + + + + 179 + + + + + 42 + + + + + 430 + + + + + 431 + + + + + 432 + + + + + 433 + + + + + 434 + + + + + 435 + + + + + 436 + + + + + 437 + + + + + 438 + + + + + 439 + + + + + 440 + + + + + 442 + + + + + 443 + + + + + 444 + + + + + 441 + + + + + 46 + + + + + 450 + + + + + 451 + + + + + 452 + + + + + 453 + + + + + 454 + + + + + 455 + + + + + 456 + + + + + 457 + + + + + 458 + + + + + 459 + + + + + 47 + + + + + 48 + + + + + 492 + + + + + 493 + + + + + 70 + + + + + 71 + + + + + 72 + + + + + 74 + + + + + 600 + + + + + 601 + + + + + 602 + + + + + 603 + + + + + 604 + + + + + 605 + + + + + 606 + + + + + 607 + + + + + 608 + + + + + 609 + + + + + 61 + + + + + 62 + + + + + 630 + + + + + 631 + + + + + 632 + + + + + 633 + + + + + 634 + + + + + 635 + + + + + 636 + + + + + 637 + + + + + 640 + + + + + 641 + + + + + 642 + + + + + 643 + + + + + 644 + + + + + 645 + + + + + 646 + + + + + 647 + + + + + 648 + + + + + 649 + + + + + 750 + + + + + 751 + + + + + 752 + + + + + 753 + + + + + 754 + + + + + 755 + + + + + 756 + + + + + 757 + + + + + 758 + + + + + 759 + + + + + 650 + + + + + 651 + + + + + 652 + + + + + 653 + + + + + 654 + + + + + 655 + + + + + 656 + + + + + 657 + + + + + 658 + + + + + 659 + + + + + 760 + + + + + 761 + + + + + 762 + + + + + 763 + + + + + 764 + + + + + 765 + + + + + 766 + + + + + 767 + + + + + 768 + + + + + 769 + + + + + 660 + + + + + 661 + + + + + 662 + + + + + 663 + + + + + 664 + + + + + 665 + + + + + 666 + + + + + 667 + + + + + 668 + + + + + 669 + + + + + 780 + + + + + 680 + + + + + 670 + + + + + 671 + + + + + 672 + + + + + 673 + + + + + 77 + + + + + 69 + + + + + 79 + + + + + 789 + + + + + 689 + + + + + 499 + + + + diff --git a/l10n_be_coa_multilang/data/ir_sequence.xml b/l10n_be_coa_multilang/data/ir_sequence.xml new file mode 100644 index 00000000..b5cb4a56 --- /dev/null +++ b/l10n_be_coa_multilang/data/ir_sequence.xml @@ -0,0 +1,11 @@ + + + + + + Declarantseq + declarantseq + 5 + + + diff --git a/l10n_be_coa_multilang/i18n/fr.po b/l10n_be_coa_multilang/i18n/fr.po new file mode 100644 index 00000000..e654b181 --- /dev/null +++ b/l10n_be_coa_multilang/i18n/fr.po @@ -0,0 +1,2813 @@ +# French translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_be_coa_multilang +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo 11.0\n" +"Report-Msgid-Bugs-To: support@noviat.com\n" +"POT-Creation-Date: 2018-12-23 20:24:44.428000\n" +"PO-Revision-Date: 2018-12-23 20:24:44.428000\n" +"Last-Translator: Luc De Meyer (Noviat nv/sa)\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: +""Language: French +""Plural-Forms: nplurals=2; plural=(n > 1); +" +#. module: l10n_be_coa_multilang +#: model:account.chart.template,name:l10n_be_coa_multilang.l10n_be_coa_multilang_template +msgid "Belgian Chart of Accounts (en/nl/fr)" +msgstr "Plan Comptable Minimum Normalisé Belge (en/nl/fr)" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/wizard/nov_print_fiscalyear.py:10 +msgid "No records found for your selection!" +msgstr "Aucun enregistrement trouvé pour votre sélection!" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/wizard/nov_print_fiscalyear.py:11 +msgid "No Data Available" +msgstr "Aucune donnée disponible" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/wizard/nov_print_journal.py:10 +msgid "No records found for your selection!" +msgstr "Aucun enregistrement trouvé pour votre sélection!" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/wizard/nov_print_journal.py:11 +msgid "No Data Available" +msgstr "Aucune donnée disponible" + +#. module: l10n_be_coa_multilang +#: model:ir.actions.act_window,name:l10n_be_coa_multilang.action_account_report_be_bs +msgid "Belgian Balance Sheet" +msgstr "Bilan Belge" + +#. module: l10n_be_coa_multilang +#: model:ir.actions.act_window,name:l10n_be_coa_multilang.action_account_report_be_pl +msgid "Belgian Profit And Loss" +msgstr "Compte de résultats Belge" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_finance_belgian_statement +msgid "Belgian Statements and Reports" +msgstr "Rapports et Déclarations Belges" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_account_report_be_bs +msgid "Belgian Balance Sheet" +msgstr "Bilan Belge" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_account_report_be_pl +msgid "Belgian Profit And Loss" +msgstr "Compte de résultats Belge" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_be_legal_financial_reportscheme +msgid "Belgian Legal Financial Report Scheme" +msgstr "Plan rapport légale belge" + +#. module: l10n_be_coa_multilang +#: model:ir.actions.act_window,name:l10n_be_coa_multilang.action_be_legal_financial_reportscheme +msgid "Belgian Legal Financial Report Scheme" +msgstr "Plan rapport légale belge" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.l10n_be_vat_declaration +msgid "Periodical VAT Declaration" +msgstr "Déclaration périodique à la TVA" + +#. module: l10n_be_coa_multilang +#: model:ir.actions.act_window,name:l10n_be_coa_multilang.action_vat_declaration +msgid "Periodical VAT Declaration" +msgstr "Déclaration périodique à la TVA" + +#. module: l10n_be_coa_multilang +#: view:l10n_be.vat.declaration:0 +msgid "Periodical VAT Declaration" +msgstr "Déclaration périodique à la TVA" + +#. module: l10n_be_coa_multilang +#: view:l10n_be.vat.declaration:0 +msgid "Options" +msgstr "Options" + +#. module: l10n_be_coa_multilang +#: view:l10n_be.vat.declaration:0 +msgid "Comments" +msgstr "Commentaires" + +#. module: l10n_be_coa_multilang +#: view:l10n_be.vat.declaration:0 +msgid "Last Declaration" +msgstr "Dernière déclaration" + +#. module: l10n_be_coa_multilang +#: field:l10n_be.vat.declaration,period_id:0 +msgid "Period" +msgstr "Période" + +#. module: l10n_be_coa_multilang +#: field:l10n_be.vat.declaration,ask_restitution:0 +msgid "Ask Restitution" +msgstr "Demande de restitution" + +#. module: l10n_be_coa_multilang +#: field:l10n_be.vat.declaration,ask_payment:0 +msgid "Ask Payment" +msgstr "Demande de formulaires de paiement" + +#. module: l10n_be_coa_multilang +#: field:l10n_be.vat.declaration,client_nihil:0 +msgid "Last Declaration" +msgstr "Dernière déclaration" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.l10n_be_vat_intra +msgid "Intracom VAT Declaration" +msgstr "Déclaration intracommunautaire à la TVA" + +#. module: l10n_be_coa_multilang +#: model:ir.actions.act_window,name:l10n_be_coa_multilang.action_vat_intra +msgid "Intracom VAT Declaration" +msgstr "Déclaration intracommunautaire à la TVA" + +#. module: l10n_be_coa_multilang +#: view:partner.vat.intra:0 +msgid "Intracom VAT Declaration" +msgstr "Déclaration intracommunautaire à la TVA" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.partner_vat_listing +msgid "Annual Listing of VAT subjected Customers" +msgstr "Listing annuel des clients assujettis à la TVA" + +#. module: l10n_be_coa_multilang +#: model:ir.actions.act_window,name:l10n_be_coa_multilang.action_partner_vat_listing +msgid "Partner VAT Listing" +msgstr "Liste de la TVA par partenaire" + +#. module: l10n_be_coa_multilang +#: field:partner.vat,year:0 +msgid "Year" +msgstr "Année" + +#. module: l10n_be_coa_multilang +#: field:partner.vat,limit_amount:0 +msgid "Limit Amount" +msgstr "Montant Limite" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_partner_open_arap_fy +msgid "Print Open Receivables/Payables by Fiscal Year" +msgstr "Rapport débiteurs/créditeurs par exercice fiscal" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_partner_open_arap_period +msgid "Print Open Receivables/Payables by Period" +msgstr "Rapport débiteurs/créditeurs par période" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_nov_print_journal +msgid "Print Journal by Period" +msgstr "Journal détaillé par période" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_nov_print_journal_fiscalyear +msgid "Print Journal by Fiscal Year" +msgstr "Journal détaillé par exercice fiscal" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Journal Overview" +msgstr "Journal détaillé" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Fiscal Year" +msgstr "Exercice fiscal" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Document" +msgstr "Document" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Date" +msgstr "Date" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Account" +msgstr "Compte" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Partner" +msgstr "Partenaire" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Description" +msgstr "Description" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "VAT" +msgstr "TVA" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Debit" +msgstr "Débit" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Credit" +msgstr "Crédit" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "VAT Declaration" +msgstr "Déclaration TVA" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Journal Overview" +msgstr "Journal détaillé" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Period" +msgstr "Période" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Document" +msgstr "Document" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Date" +msgstr "Date" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Account" +msgstr "Compte" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Partner" +msgstr "Partenaire" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Description" +msgstr "Description" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "VAT" +msgstr "TVA" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Debit" +msgstr "Débit" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Credit" +msgstr "Crédit" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "VAT Declaration" +msgstr "Déclaration TVA" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:10 +msgid "Document" +msgstr "Document" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:11 +msgid "Date" +msgstr "Date" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:12 +msgid "Due Date" +msgstr "Echéance" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:13 +msgid "Account" +msgstr "Compte" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:14 +msgid "Description" +msgstr "Description" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:14 +msgid "Debit" +msgstr "Débit" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:15 +msgid "Credit" +msgstr "Crédit" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:16 +msgid "Balance" +msgstr "Solde" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:17 +msgid "Totals" +msgstr "Totals" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:10 +msgid "Document" +msgstr "Document" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:11 +msgid "Date" +msgstr "Date" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:12 +msgid "Due Date" +msgstr "Echéance" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:13 +msgid "Account" +msgstr "Compte" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:14 +msgid "Description" +msgstr "Description" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:14 +msgid "Debit" +msgstr "Débit" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:15 +msgid "Credit" +msgstr "Crédit" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:16 +msgid "Balance" +msgstr "Solde" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:17 +msgid "Totals" +msgstr "Totals" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/report/account_partner_open_arap.py:10 +msgid "Open Receivables" +msgstr "Débiteurs" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/report/account_partner_open_arap.py:11 +msgid "Open Payables" +msgstr "Créditeurs" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/report/account_partner_open_arap.py:11 +msgid "Fiscal Year" +msgstr "Exercice fiscal" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/report/account_partner_open_arap.py:11 +msgid "Period" +msgstr "Période" + +#. module: l10n_be_coa_multilang +#: view:nov.print.journal.fiscalyear:0 +msgid "Print Journal by Fiscal Year" +msgstr "Journal détaillé par exercice fiscal" + +#. module: l10n_be_coa_multilang +#: view:nov.print.journal.fiscalyear:0 +msgid "Cancel" +msgstr "Annuler" + +#. module: l10n_be_coa_multilang +#: field:nov.print.journal.fiscalyear,fiscalyear_id:0 +msgid "Fiscal Year" +msgstr "Exercice fiscal" + +#. module: l10n_be_coa_multilang +#: field:nov.print.journal.fiscalyear,journal_id:0 +msgid "Journal" +msgstr "Journal" + +#. module: l10n_be_coa_multilang +#: view:nov.print.journal.fiscalyear:0 +msgid "Print" +msgstr "Imprimer" + +#. module: l10n_be_coa_multilang +#: field:nov.print.journal.fiscalyear,sort:0 +msgid "Entries Sorted By" +msgstr "Entrées triées par" + +#. module: l10n_be_coa_multilang +#: selection:nov.print.journal.fiscalyear,sort:0 +msgid "Date" +msgstr "Date" + +#. module: l10n_be_coa_multilang +#: selection:nov.print.journal.fiscalyear,sort:0 +msgid "Number" +msgstr "Numéro" + +#. module: l10n_be_coa_multilang +#: view:nov.print.journal:0 +msgid "Print Journal by Period" +msgstr "Journal détaillé par période" + +#. module: l10n_be_coa_multilang +#: view:nov.print.journal:0 +msgid "Cancel" +msgstr "Annuler" + +#. module: l10n_be_coa_multilang +#: field:nov.print.journal,journal_ids:0 +msgid "Journals" +msgstr "Journaux" + +#. module: l10n_be_coa_multilang +#: field:nov.print.journal,period_ids:0 +msgid "Periods" +msgstr "Périodes" + +#. module: l10n_be_coa_multilang +#: view:nov.print.journal:0 +msgid "Print" +msgstr "Imprimer" + +#. module: l10n_be_coa_multilang +#: field:nov.print.journal,sort:0 +msgid "Entries Sorted By" +msgstr "Entrées triées par" + +#. module: l10n_be_coa_multilang +#: selection:nov.print.journal,sort:0 +msgid "Date" +msgstr "Date" + +#. module: l10n_be_coa_multilang +#: selection:nov.print.journal,sort:0 +msgid "Number" +msgstr "Numéro" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.listing:0 +msgid "Nr" +msgstr "No" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.listing:0 +msgid "VAT Number" +msgstr "Numéro TVA" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.listing:0 +msgid "Partner" +msgstr "Partenaire" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.listing:0 +msgid "Base Amount" +msgstr "Base d'imposition" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.listing:0 +msgid "VAT Amount" +msgstr "Montant TVA" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.listing:0 +msgid "Company" +msgstr "Société" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.listing:0 +msgid "Year" +msgstr "Année" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.intracom:0 +msgid "Nr" +msgstr "No" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.intracom:0 +msgid "VAT Number" +msgstr "Numéro TVA" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.intracom:0 +msgid "Partner" +msgstr "Partenaire" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.intracom:0 +msgid "Code" +msgstr "Code" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.intracom:0 +msgid "Amount" +msgstr "Montant" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.intracom:0 +msgid "Company" +msgstr "Société" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.intracom:0 +msgid "Period" +msgstr "Période" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.declaration:0 +msgid "Case" +msgstr "Grille" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.declaration:0 +msgid "VAT Number" +msgstr "Numéro TVA" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.declaration:0 +msgid "Description" +msgstr "Description" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.declaration:0 +msgid "Amount" +msgstr "Montant" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.declaration:0 +msgid "Company" +msgstr "Société" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.declaration:0 +msgid "Period" +msgstr "Période" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_00 +msgid "Operations subject to a special arrangement" +msgstr "Opérations soumises à un régime particulier" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_01 +msgid "Operations subject to 6% VAT" +msgstr "Opérations avec TVA à 6%" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_02 +msgid "Operations subject to 12% VAT" +msgstr "Opérations avec TVA à 12%" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_03 +msgid "Operations subject to 21% VAT" +msgstr "Opérations avec TVA à 21%" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_44 +msgid "Intra Community Services" +msgstr "Services intra-communautaires" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_45 +msgid "VAT due by the Cocontractant" +msgstr "Opérations avec TVA due par le cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_46L +msgid "VAT exempt Intra Community Supplies of Goods" +msgstr "Livraisons biens intra-communautaire exemptées" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_46T +msgid "VAT exempt Intra Community ABC Supplies" +msgstr "ABC intra-communautaires" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_47 +msgid "Other VAT exempt Operations" +msgstr "Autres operations exemptées" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_48 +msgid "Issued Credit Notes Operations Grid [44] and [46]" +msgstr "Notes de crédit aux opérations grilles [44] et [46]" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_49 +msgid "Issued Credit Notes Other Operations Section II" +msgstr "Notes de crédit aux opérations du point II" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_81D +msgid "Purchases of Goods, Raw Materials and Consumables" +msgstr "Marchandises, matières premières et auxiliaires" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_81ND +msgid "Purchases of Goods, Raw Mater. and Consum. - VAT Non Deductible" +msgstr "Marchandises, matières premières et auxiliaires - TVA non déductible" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_82D +msgid "Purchases of various Goods and Services" +msgstr "Services et biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_82ND +msgid "Purchases of various Goods and Services - VAT Non Deductible" +msgstr "Services et biens divers - TVA non déductible" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_83D +msgid "Purchases of Assets" +msgstr "Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_83ND +msgid "Purchases of Assets - VAT Non Deductible" +msgstr "Biens d'investissement - TVA non déductible" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_84 +msgid "Incoming Credit Notes Operations Grid [86] and [88]" +msgstr "Notes de crédits sur opérations case [86] et [88]" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_85D +msgid "Incoming Credit Notes other Operations" +msgstr "Notes de crédits autres opérations" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_85ND +msgid "Incoming Credit Notes other Operations - VAT Non Deductible" +msgstr "Notes de crédits autres opérations - TVA non déductible" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_86 +msgid "Intra Community and ABC Acquisitions" +msgstr "Acquisition intra-communautaires et ventes ABC" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_87 +msgid "Other Incoming Operations" +msgstr "Autres opérations à l'entrée" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_88 +msgid "Intra Community Services" +msgstr "Acquisition services intra-communautaires" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_VI +msgid "Balance (71-72)" +msgstr "Solde (71-72)" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_XX +msgid "To Pay - Total" +msgstr "A payer - Total" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_54 +msgid "VAT on Operations Grids [01], [02], [03]" +msgstr "TVA sur opérations des grilles [01], [02], [03]" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_55 +msgid "VAT on Operations Grids [86] and [88]" +msgstr "TVA sur opérations des grilles [86] et [88]" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_56 +msgid "VAT on Operations Grid [87]" +msgstr "TVA sur opérations de la grille [87]" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_57 +msgid "VAT on Imports" +msgstr "TVA relatives aux importations" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_61 +msgid "VAT adjustments in favor of the Tax Authority" +msgstr "Diverses régularisations en faveur de l'Etat" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_63 +msgid "VAT Debt from Incoming Credit Notes" +msgstr "TVA à reverser sur notes de crédit reçues" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_59 +msgid "Deductible VAT" +msgstr "TVA déductible" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_62 +msgid "VAT adjustments in favor of the Declarant" +msgstr "Régularisations TVA en faveur du déclarant" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_64 +msgid "Deductible VAT from Outgoing Credit Notes" +msgstr "TVA à recuperer sur notes de crédit delivrées" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_91 +msgid "Advance for Operations from December 1 to 20" +msgstr "TVA due pour la période du 1er au 20 décembre" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_400000 +msgid "Customers" +msgstr "Clients" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_411000 +msgid "Input VAT - current account balance" +msgstr "TVA à récupérer - Compte courant" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_411059 +msgid "VAT Deductible" +msgstr "TVA à récupérer" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_411062 +msgid "VAT Deductible - Correction Case 62" +msgstr "TVA à récupérer - régularisation grille 62" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_440000 +msgid "Suppliers" +msgstr "Fournisseurs" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_451000 +msgid "Output VAT - current account balance" +msgstr "TVA à payer - Compte courant" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_451054 +msgid "VAT Debt" +msgstr "TVA à payer" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_451055 +msgid "VAT Debt - Intracommunity" +msgstr "TVA à payer - intracommunautaire" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_451056 +msgid "VAT Debt - Cocontractant" +msgstr "TVA à payer - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_451057 +msgid "VAT Debt - Import" +msgstr "TVA à payer - importations avec report de perceptions" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_451061 +msgid "VAT Debt - Correction Case 61" +msgstr "TVA à payer - régularisation grille 61" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_550001 +msgid "Bank" +msgstr "Banque" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_570001 +msgid "Cash" +msgstr "Caisse" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_580000 +msgid "Internal transfer account" +msgstr "Virements internes" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_600000 +msgid "Purchases of raw materials" +msgstr "Achats de matières premières" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_654000 +msgid "Exchange rate losses" +msgstr "Différences négatives de change" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_700000 +msgid "Sales" +msgstr "Ventes" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_754000 +msgid "Exchange rate gains" +msgstr "Différences positives de change" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_999999 +msgid "Undistributed Profits/Losses" +msgstr "Profits/pertes non distribués" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_BE_2_FULL +msgid "Belgium Balance Sheet (Full Model)" +msgstr "Bilan Belge (modèle complet)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_219000 +msgid "TOTAL ASSETS" +msgstr "TOTAL DE L'ACTIF" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211000 +msgid "FIXED ASSETS" +msgstr "ACTIFS IMMOBILISES" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211100 +msgid "Formation Expenses" +msgstr "Frais d'établissement" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211200 +msgid "Intangible Assets" +msgstr "Immobilisations incorporelles" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211300 +msgid "Tangible Assets" +msgstr "Immobilisations corporelles" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211310 +msgid "Land and Buildings" +msgstr "Terrains et constructions" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211320 +msgid "Plant, Machinery and Equipment" +msgstr "Installations, machines et outillage" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211330 +msgid "Furniture and Vehicles" +msgstr "Mobilier et matériel roulant" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211340 +msgid "Leasing and other similar Rights" +msgstr "Location-financement et droits similaires" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211350 +msgid "Other Tangible Assets" +msgstr "Autres immobilisations corporelles" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211360 +msgid "Assets under Construction and Advance Payment" +msgstr "Immobilisations en cours et acomptes versés" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211400 +msgid "Financial Assets" +msgstr "Immobilisations financières" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211410 +msgid "Affiliated Enterprises" +msgstr "Entreprises liées" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211411 +msgid "Participating Interests" +msgstr "Participations" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211412 +msgid "Amounts Receivable" +msgstr "Créances" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211420 +msgid "Enterprises Linked by Participating Interests" +msgstr "Autres entreprises avec lesquelles il existe un lien de participation" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211421 +msgid "Participating Interests" +msgstr "Participations" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211422 +msgid "Amounts Receivable" +msgstr "Créances" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211430 +msgid "Other Financial Assets" +msgstr "Autres immobilisations financières" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211431 +msgid "Shares" +msgstr "Actions et parts" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211432 +msgid "Amounts Receivable and Cash Guarantees" +msgstr "Créances et cautionnements en numéraire" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212000 +msgid "CURRENT ASSETS" +msgstr "ACTIFS CIRCULANTS" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212100 +msgid "Amounts Receivable after One Year" +msgstr "Créances à plus d'un an" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212110 +msgid "Trade Debtors" +msgstr "Créances commerciales" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212120 +msgid "Other Amounts Receivable" +msgstr "Autres créances" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212200 +msgid "Stocks and Contracts in Progress" +msgstr "Stocks et commandes en cours d'exécution" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212210 +msgid "Stocks" +msgstr "Stocks" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212211 +msgid "Raw Materials and Consumables" +msgstr "Approvisionnements" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212212 +msgid "Work in Progress" +msgstr "En-cours de fabrication" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212213 +msgid "Finished Goods" +msgstr "Produits finis" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212214 +msgid "Goods purchased for Resale" +msgstr "Marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212215 +msgid "Imovable Property acquired for Resale" +msgstr "Immeubles destinés à la vente" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212216 +msgid "Advance Payments" +msgstr "Acomptes versés" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212220 +msgid "Contracts in progress" +msgstr "Commandes en cours d'exécution" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212300 +msgid "Amounts Receivable within one Year" +msgstr "Créances à un an au plus" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212310 +msgid "Trade Debtors" +msgstr "Créances commerciales" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212320 +msgid "Other Amounts Receivable" +msgstr "Autres créances" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212400 +msgid "Investments" +msgstr "Placements de trésorerie" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212410 +msgid "Own Shares" +msgstr "Actions propres" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212420 +msgid "Other Investments and Deposits" +msgstr "Autres placements" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212500 +msgid "Cash at Bank and in Hand" +msgstr "Valeurs disponibles" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212600 +msgid "Deferred Charges and Accrued Income" +msgstr "Comptes de régularisation" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_229000 +msgid "TOTAL LIABILITIES" +msgstr "TOTAL DU PASSIF" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221000 +msgid "EQUITY CAPITAL" +msgstr "CAPITAUX PROPRES" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221100 +msgid "Capital" +msgstr "Capital" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221110 +msgid "Issued Capital" +msgstr "Capital souscrit" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221120 +msgid "Uncalled Capital" +msgstr "Capital non appelé" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221200 +msgid "Share Premium Account" +msgstr "Primes d'émission" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221300 +msgid "Revaluation Surpluses" +msgstr "Plus-values de réévaluation" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221400 +msgid "Reserves" +msgstr "Réserves" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221410 +msgid "Legal Reserve" +msgstr "Réserve légale" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221420 +msgid "Reserves not available for Distribution" +msgstr "Réserves indisponibles" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221421 +msgid "In respect of own Shares held" +msgstr "Pour actions propres" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221422 +msgid "Other" +msgstr "Autres" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221430 +msgid "Untaxed Reserves" +msgstr "Réserves immunisées" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221440 +msgid "Reserves available for Distribution" +msgstr "Réserves disponibles" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221500 +msgid "Accumulated Profits (Losses)" +msgstr "Bénéfice (Perte) reporté(e)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221600 +msgid "Investment Grants" +msgstr "Subsides en capital" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221700 +msgid "Advance to Partners on the distribution of the net assets" +msgstr "Avance aux associés sur répartition de l'actif net" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_222000 +msgid "PROVISIONS AND DEFERRED TAXES" +msgstr "PROVISIONS ET IMPOTS DIFFERES" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_222100 +msgid "Provisions for Liabilities and Charges" +msgstr "Provisions pour risques et charges" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_222110 +msgid "Pensions and similar Obligations" +msgstr "Pensions et obligations similaires" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_222120 +msgid "Taxation" +msgstr "Charges fiscales" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_222130 +msgid "Major Repairs and Maintenance" +msgstr "Grosses réparations et gros entretien" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_222140 +msgid "Other Liabilities and Charges" +msgstr "Autres risques et charges" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_222200 +msgid "Deferred Taxes" +msgstr "Impôts différés" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223000 +msgid "DEBTS" +msgstr "DETTES" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223100 +msgid "Amounts Payable after one Year" +msgstr "Dettes à plus d'un an" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223110 +msgid "Financial Debts" +msgstr "Dettes financières" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223111 +msgid "Subordinated Loans" +msgstr "Emprunts subordonnés" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223112 +msgid "Unsubordinated Debentures" +msgstr "Emprunts obligataires non subordonnés" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223113 +msgid "Leasing and other similar Obligations" +msgstr "Dettes de location-financement et assimilées" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223114 +msgid "Credit Institutions" +msgstr "Etablissements de crédit" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223115 +msgid "Other Loans" +msgstr "Autres emprunts" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223120 +msgid "Trade Debts" +msgstr "Dettes commerciales" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223121 +msgid "Suppliers" +msgstr "Fournisseurs" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223122 +msgid "Bills of Exchange Payable" +msgstr "Effets à payer" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223130 +msgid "Advances received on Contracts in Progress" +msgstr "Acomptes reçus sur commandes" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223140 +msgid "Other Amounts Payable" +msgstr "Autres dettes" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223200 +msgid "Amounts Payable within one Year" +msgstr "Dettes à un an au plus" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223210 +msgid "Portion of amounts Payable after one Year due within the year" +msgstr "Dettes à plus d'un an échéant dans l'année" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223220 +msgid "Financial Debts" +msgstr "Dettes financières" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223221 +msgid "Credit Institutions" +msgstr "Etablissements de crédit" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223222 +msgid "Other Loans" +msgstr "Autres emprunts" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223230 +msgid "Trade Debts" +msgstr "Dettes commerciales" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223231 +msgid "Suppliers" +msgstr "Fournisseurs" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223232 +msgid "Bills of Exchange Payable" +msgstr "Effets à payer" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223240 +msgid "Advances received on Contracts in Progress" +msgstr "Acomptes reçus sur commandes" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223250 +msgid "Taxes, Remuneration and Social Security" +msgstr "Dettes fiscales, salariales et sociales" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223251 +msgid "Taxes" +msgstr "Impôts" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223252 +msgid "Remuneration and Social Security" +msgstr "Rémunérations et charges sociales" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223260 +msgid "Other Amounts Payable" +msgstr "Autres dettes" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223300 +msgid "Accrued Charges and Deferred Income" +msgstr "Comptes de régularisation" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_BE_3_FULL +msgid "Belgium P&L (Full Model)" +msgstr "Compte de résultats Belge (modèle complet)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_35000 +msgid "Fiscal Year Profit (Loss) to be allocated" +msgstr "Bénéfice (Perte) de l'exercice à affecter" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_34000 +msgid "Fiscal Year Profit (Loss)" +msgstr "Bénéfice (Perte) de l'exercice" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_33000 +msgid "Fiscal Year Profit (Loss) before Taxation" +msgstr "Bénéfice (Perte) de l'exercice avant impôts" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32000 +msgid "Profit (Loss) from Normal Operations before Taxation" +msgstr "Bénéfice (Perte) courant(e) avant impôts" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31000 +msgid "Operating Profit (Loss)" +msgstr "Bénéfice (Perte) d'exploitation" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30100 +msgid "Operating Income" +msgstr "Ventes et prestations" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30110 +msgid "Turnover" +msgstr "Chiffre d'affaires" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30120 +msgid "Increase (Decrease) in Stocks, Final Goods, Etc." +msgstr "En-cours de fabrication, produits finis et commandes en cours d'exécution: augmentation (réduction)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30130 +msgid "Fixed Assets Own Construction" +msgstr "Production immobilisée" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30140 +msgid "Other Operating Income" +msgstr "Autres produits d'exploitation" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30200 +msgid "Operating Charges" +msgstr "Coût des ventes et des prestations" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30210 +msgid "Raw Materials, Consumables and Goods for Resale" +msgstr "Approvisionnements et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30211 +msgid "Purchases" +msgstr "Achats" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30212 +msgid "Decrease (Increase) in Stocks" +msgstr "Stocks: réduction (augmentation)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30220 +msgid "Services and Other Goods" +msgstr "Services et biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30230 +msgid "Remunerations, Social Security Costs and Pensions" +msgstr "Rémunérations, charges sociales et pensions" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30240 +msgid "Depreciation and Amounts Written Off on Formation Expenses, on Intangible and Tangible Assets" +msgstr "Amortissements et réductions de valeur sur frais d'établissement, sur immobilisations incorporelles et corporelles" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30250 +msgid "Amounts Written Off on Stocks, Orders in Progress and Trade Debts: Increase (Decrease)" +msgstr "Réductions de valeur sur stocks, sur commandes en cours d'exécution et sur créances commerciales: dotations (reprises)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30260 +msgid "Provisions for Liabilities and Charges: Increase (Decrease)" +msgstr "Provisions pour risques et charges: dotations (utilisations et reprises)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30270 +msgid "Other Operating Charges" +msgstr "Autres charges d'exploitation" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30280 +msgid "Restructuring Charges activated as Operating Charges" +msgstr "Charges d'exploitation portées à l'actif au titre de frais de restructuration" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31100 +msgid "Financial Income" +msgstr "Produits financiers" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31110 +msgid "Income from Financial Fixed Assets" +msgstr "Produits des immobilisations financières" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31120 +msgid "Income from Current Assets" +msgstr "Produits des actifs circulants" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31130 +msgid "Other Financial Income" +msgstr "Autres produits financiers" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31200 +msgid "Financial Charges" +msgstr "Charges financières" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31210 +msgid "Debt Charges" +msgstr "Charges des dettes" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31220 +msgid "Amounts Written Off on other than Stocks, Orders in Progress and Trade Debts: Increase (Decrease)" +msgstr "Réductions de valeur sur actifs circulants autres que stocks, commandes en cours et créances commerciales: dotations (reprises)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31230 +msgid "Other Financial Charges" +msgstr "Autres charges financières" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32100 +msgid "Extraordinary Income" +msgstr "Produits exceptionnels" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32110 +msgid "Adjustment to Depreciation and Write Off on Intangible and Tangible Assets" +msgstr "Reprises d'amortissements et de réductions de valeur sur immobilisations incorporelles et corporelles" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32120 +msgid "Adjustment to Amounts Written Off on Financial Fixed Assets" +msgstr "Reprises de réductions de valeur sur immobilisations financières" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32130 +msgid "Adjustment to Provisions for Extraordinary Liabilities and Charges" +msgstr "Reprises de provisions pour risques et charges exceptionnels" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32140 +msgid "Gain on Disposal of Fixed Assets" +msgstr "Plus-values sur réalisation d'actifs immobilisés" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32150 +msgid "Other Extraordinary Income" +msgstr "Plus-values sur réalisation d'actifs immobilisés" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32200 +msgid "Extraordinary Charges" +msgstr "Charges exceptionnels" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32210 +msgid "Extraordinary Depreciation and Amounts Written Off on Formation Expenses, Intangible and Tangible Assets" +msgstr "Amortissements et réductions de valeur exceptionnels sur frais d'établissement, sur immobilisations incorporelles et corporelles" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32220 +msgid "Amounts Written Off on Financial Fixed Assets" +msgstr "Réductions de valeur sur immobilisations financières" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32230 +msgid "Provisions for Extraordinary Liabilities and Charges" +msgstr "Provisions pour risques et charges exceptionnels: dotations (utilisations)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32240 +msgid "Loss on Disposal of Fixed Assets" +msgstr "Moins-values sur réalisation d'actifs immobilisés" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32250 +msgid "Other Extraordinary Charges" +msgstr "Autres charges exceptionnelles" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32260 +msgid "Restructuring Charges activated as Extraordinary Charges" +msgstr "Charges exceptionnelles portées à l'actif au titre de frais de restructuration" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_33100 +msgid "Transfer from Deferred Taxes" +msgstr "Prélèvements sur les impôts différés" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_33200 +msgid "Transfer to Deferred Taxes" +msgstr "Transfert aux impôts différés" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_33300 +msgid "Income Taxes" +msgstr "Impôts sur le résultat" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_33310 +msgid "Income Taxes" +msgstr "Impôts" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_33320 +msgid "Adjustment of Income Taxes and Provisions for Taxes" +msgstr "Régularisations d'impôts et reprises de provisions fiscales" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_34100 +msgid "Transfer from Untaxed Reserves" +msgstr "Prélèvements sur les réserves immunisées" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_34200 +msgid "Transfer to Untaxed Reserves" +msgstr "Transfert aux réserves immunisées" + +#. module: l10n_be_coa_multilang +#: model:account.fiscal.position.template,name:l10n_be_coa_multilang.afptn_national +msgid "National Regime" +msgstr "Régime national" + +#. module: l10n_be_coa_multilang +#: model:account.fiscal.position.template,name:l10n_be_coa_multilang.afptn_cocontractant +msgid "National Regime - Cocontractant" +msgstr "Régime national - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.fiscal.position.template,name:l10n_be_coa_multilang.afptn_intracom +msgid "Intra Community Regime" +msgstr "Régime intra-communautaire" + +#. module: l10n_be_coa_multilang +#: model:account.fiscal.position.template,name:l10n_be_coa_multilang.afptn_extracom +msgid "Extra Community Regime" +msgstr "Régime extra-communautarie" + +#. module: l10n_be_coa_multilang +#: model:account.fiscal.position.template,note:l10n_be_coa_multilang.afptn_cocontractant +msgid "VAT subject to reverse charge." +msgstr "Auto-liquidation de la TVA." + +#. module: l10n_be_coa_multilang +#: model:account.fiscal.position.template,note:l10n_be_coa_multilang.afptn_intracom +msgid "Tax-free intra-Community supply / VAT subject to reverse charge." +msgstr "Livraison intracommunautaire exemptée de TVA / Auto-liquidation." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-21-S +msgid "21% Services" +msgstr "21% Services" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-21-G +msgid "21% Goods" +msgstr "21% Marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-21-CD2-S +msgid "21% Services - Cash Discount 2%" +msgstr "21% Services - Escompte de caisse 2%" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-21-CD2-G +msgid "21% Goods - Cash Discount 2%" +msgstr "21% Marchandises - Escompte de caisse 2%" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-21-INC-S +msgid "21% Services (Price Incl.)" +msgstr "21% Services (Prix incl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-21-INC-G +msgid "21% Goods (Price Incl.)" +msgstr "21% Marchandises (Prix incl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-12-S +msgid "12% Services" +msgstr "12% Services" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-12-G +msgid "12% Goods" +msgstr "12% Marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-06-S +msgid "6% Services" +msgstr "6% Services" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-06-G +msgid "6% Goods" +msgstr "6% Marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-00-S +msgid "0% Services" +msgstr "0% Services" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-00-G +msgid "0% Goods" +msgstr "0% Marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-00-CC +msgid "0% Cocontractant" +msgstr "0% Cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-00-EU-S +msgid "Services within EU" +msgstr "Services UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-00-EU-G +msgid "Goods within EU (Code L)" +msgstr "Marchandises UE (Code L)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-00-EU-T +msgid "Goods within EU (Code T)" +msgstr "Marchandises UE (Code T)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-00-ROW +msgid "Export Outside EU" +msgstr "Export hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-S +msgid "21% - Services for resale" +msgstr "21% - Services pour revente" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-G +msgid "21% - Raw mat., consum. and goods for resale" +msgstr "21% - Approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12 +msgid "12% - Raw mat., consum. and goods for resale" +msgstr "12% - Approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06 +msgid "6% - Raw mat., consum. and goods for resale" +msgstr "6% - Approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-00 +msgid "0% - Raw mat., consum. and goods for resale" +msgstr "0% - Approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-S +msgid "21% - Services" +msgstr "21% - Services" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-CD2-S +msgid "21% - Services - Cash Discount 2%" +msgstr "21% - Services - Escompte de caisse 2%" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-INC-S +msgid "21% - Services (Price Incl.)" +msgstr "21% - Services (Prix incl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-G +msgid "21% - Other goods" +msgstr "21% - Biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-S +msgid "12% - Services" +msgstr "12% - Services" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-G +msgid "12% - Other goods" +msgstr "12% - Biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-S +msgid "6% - Services" +msgstr "6% - Services" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-G +msgid "6% - Other goods" +msgstr "6% - Biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-00-S +msgid "0% - Services" +msgstr "0% - Services" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-00-G +msgid "0% - Other goods" +msgstr "0% - Biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21 +msgid "21% - Capital goods" +msgstr "21% - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12 +msgid "12% - Capital goods" +msgstr "12% - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06 +msgid "6% - Capital goods" +msgstr "6% - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-00 +msgid "0% - Capital goods" +msgstr "0% - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-CC +msgid "21% Cocontract. - Raw mat., consum. and goods for resale" +msgstr "21% Cocontractant - Approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-CC-C1 +msgid "VAT Deductible 21% Goods - Cocontractant" +msgstr "TVA Déductible 21% marchandises - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-CC-C2 +msgid "VAT Debt 21% Goods - Cocontractant" +msgstr "TVA à payer 21% marchandises - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-CC +msgid "12% Cocontract. - Raw mat., consum. and goods for resale" +msgstr "12% Cocontractant - Approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-CC-C1 +msgid "VAT Deductible 12% Goods - Cocontractant" +msgstr "TVA Déductible 12% marchandises - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-CC-C2 +msgid "VAT Debt 12% Goods - Cocontractant" +msgstr "TVA à payer 12%marchandises - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-CC +msgid "6% Cocontract. - Raw mat., consum. and goods for resale" +msgstr "6% Cocontractant - Approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-CC-C1 +msgid "VAT Deductible 6% Goods - Cocontractant" +msgstr "TVA Déductible 6% marchandises - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-CC-C2 +msgid "VAT Debt 6% Goods - Cocontractant" +msgstr "TVA à payer 6% marchandises - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-00-CC +msgid "0% Cocontract. - Raw mat., consum. and goods for resale" +msgstr "TVA Déductible 0% Cocontractant - Approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-CC +msgid "21% Cocontract. - Services and other goods" +msgstr "21% Cocontractant - Services et biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-CC-C1 +msgid "VAT Deductible 21% Services - Cocontractant" +msgstr "TVA Déductible 21% services - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-CC-C2 +msgid "VAT Debt 21% Services - Cocontractant" +msgstr "TVA à payer 21% services - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-CC +msgid "12% Cocontract. - Services and other goods" +msgstr "12% Cocontractant - Services et biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-CC-C1 +msgid "VAT Deductible 12% Services - Cocontractant" +msgstr "TVA Déductible 12% services - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-CC-C2 +msgid "VAT Debt 12% Services - Cocontractant" +msgstr "TVA à payer 12% services - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-CC +msgid "6% Cocontract. - Services and other goods" +msgstr "6% Cocontractant - Services et biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-CC-C1 +msgid "VAT Deductible 6% Services - Cocontractant" +msgstr "TVA Déductible 6% services - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-CC-C2 +msgid "VAT Debt 6% Services - Cocontractant" +msgstr "TVA à payer 6% services - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-00-CC +msgid "0% Cocontract. - Services and other goods" +msgstr "0% Cocontractant - Services et biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-CC +msgid "21% Cocontract. - Capital goods" +msgstr "21% Cocontractant - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-CC-C1 +msgid "VAT Deductible 21% Capital goods - Cocontractant" +msgstr "TVA Déductible 21% biens d'investissement - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-CC-C2 +msgid "VAT Debt 21% Capital goods - Cocontractant" +msgstr "TVA à payer 21% biens d'investissement - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-CC +msgid "12% Cocontract. - Capital goods" +msgstr "12% Cocontractant - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-CC-C1 +msgid "VAT Deductible 12% Capital goods - Cocontractant" +msgstr "TVA Déductible 12% biens d'investissement - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-CC-C2 +msgid "VAT Debt 12% Capital goods - Cocontractant" +msgstr "TVA à payer 12% biens d'investissement - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-CC +msgid "6% Cocontract. - Capital goods" +msgstr "6% Cocontractant - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-CC-C1 +msgid "VAT Deductible 6% Capital goods - Cocontractant" +msgstr "TVA Déductible 6% biens d'investissement - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-CC-C2 +msgid "VAT Debt 6% Capital goods - Cocontractant" +msgstr "TVA à payer 6% biens d'investissement - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-00-CC +msgid "0% Cocontract. - Capital goods" +msgstr "0% Cocontractant - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-INC +msgid "Car Expenses - VAT 50% Deductible (Price Incl.)" +msgstr "Frais de voiture - TVA 50% déduct. (Prix incl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-INC +msgid "Car Expenses - VAT 35% Deductible (Price Incl.)" +msgstr "Frais de voiture - TVA 35% déduct. (Prix incl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-EXC +msgid "Car Expenses - VAT 50% Deductible (Price Excl.)" +msgstr "Frais de voiture - TVA 50% déduct. (Prix Excl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-EXC-C1 +msgid "CAR50-EXC - VAT Non Deductible" +msgstr "CAR50-EXC - TVA non déductible" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-EXC-C2 +msgid "CAR50-EXC - VAT Deductible" +msgstr "CAR50-EXC - TVA déductible" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-EXC +msgid "Car Expenses - VAT 35% Deductible (Price Excl.)" +msgstr "Frais de voiture - TVA 35% déduct. (Prix Excl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-EXC-C1 +msgid "CAR35-EXC - VAT Non Deductible" +msgstr "CAR35-EXC - TVA non déductible" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-EXC-C2 +msgid "CAR35-EXC - VAT Deductible" +msgstr "CAR35-EXC - TVA déductible" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-S +msgid "21% Intracomm. - Services for resale" +msgstr "21% Intracomm. - Services pour revente" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-S-C1 +msgid "VAT Deductible 21% Services for resale - Intracomm." +msgstr "TVA Déductible 21% services pour revente - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-S-C2 +msgid "VAT Debt 21% Services for resale - Intracomm." +msgstr "TVA à payer 21% services pour revente - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-G +msgid "21% Intracomm. - Raw mat., consum. and goods for resale" +msgstr "21% Intracomm. - Approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-G-C1 +msgid "VAT Deductible 21% Goods for resale - Intracomm." +msgstr "TVA Déductible 21% Approvisionn. et marchandises - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-G-C2 +msgid "VAT Debt 21% Goods for resale - Intracomm." +msgstr "TVA à payer 21% Approvisionn. et marchandises - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-EU +msgid "12% Intracomm. - Raw mat., consum. and goods for resale" +msgstr "12% Intracomm. - Approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-EU-C1 +msgid "VAT Deductible 12% Goods for resale - Intracomm." +msgstr "TVA Déductible 12% Approvisionn. et marchandises - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-EU-C2 +msgid "VAT Debt 12% Goods for resale - Intracomm." +msgstr "TVA à payer 12% Approvisionn. et marchandises - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-EU +msgid "6% Intracomm. - Raw mat., consum. and goods for resale" +msgstr "6% Intracomm. - Approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-EU-C1 +msgid "VAT Deductible 6% Goods for resale - Intracomm." +msgstr "TVA Déductible 6% Approvisionn. et marchandises - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-EU-C2 +msgid "VAT Debt 6% Goods for resale - Intracomm." +msgstr "TVA à payer 6% Approvisionn. et marchandises - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-00-EU +msgid "0% Intracomm. - Raw mat., consum. and goods for resale" +msgstr "0% Intracomm. - Approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-S +msgid "21% Intracomm. - Services" +msgstr "21% Intracomm. - Services" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-S-C1 +msgid "VAT Deductible 21% Services - Intracomm." +msgstr "TVA Déductible 21% services - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-S-C2 +msgid "VAT Debt 21% Services - Intracomm." +msgstr "TVA à payer 21% services - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-G +msgid "21% Intracomm. - Other goods" +msgstr "21% Intracomm. - Biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-G-C1 +msgid "VAT Deductible 21% Other goods - Intracomm." +msgstr "TVA Déductible 21% biens divers - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-G-C2 +msgid "VAT Debt 21% Other goods - Intracomm." +msgstr "TVA à payer 21% biens divers - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-S +msgid "12% Intracomm. - Services" +msgstr "12% Intracomm. - Services" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-S-C1 +msgid "VAT Deductible 12% Services - Intracomm." +msgstr "TVA Déductible 12% services - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-S-C2 +msgid "VAT Debt 12% Services - Intracomm." +msgstr "TVA à payer 12% services - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-G +msgid "12% Intracomm. - Other goods" +msgstr "12% Intracomm. - Biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-G-C1 +msgid "VAT Deductible 12% Other goods - Intracomm." +msgstr "TVA Déductible 12% biens divers - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-G-C2 +msgid "VAT Debt 12% Other goods - Intracomm." +msgstr "TVA à payer 12% biens divers - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-S +msgid "6% Intracomm. - Services" +msgstr "6% Intracomm. - Services" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-S-C1 +msgid "VAT Deductible 6% Services - Intracomm." +msgstr "TVA Déductible 6% services - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-S-C2 +msgid "VAT Debt 6% Services - Intracomm." +msgstr "TVA à payer 6% services - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-G +msgid "6% Intracomm. - Other goods" +msgstr "6% Intracomm. - Biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-G-C1 +msgid "VAT Deductible 6% Other goods - Intracomm." +msgstr "TVA Déductible 6% biens divers - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-G-C2 +msgid "VAT Debt 6% Other goods - Intracomm." +msgstr "TVA à payer 6% biens divers - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-00-EU-S +msgid "0% Intracomm. - Services" +msgstr "0% Intracomm. - Services" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-00-EU-G +msgid "0% Intracomm. - Other goods" +msgstr "0% Intracomm. - Biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-EU +msgid "21% Intracomm. - Capital goods" +msgstr "21% Intracomm. - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-EU-C1 +msgid "VAT Deductible 21% Capital goods - Intracomm." +msgstr "TVA Déductible 21% biens d'investissement - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-EU-C2 +msgid "VAT Debt 21% Capital goods - Intracomm." +msgstr "TVA à payer 21% biens d'investissement - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-EU +msgid "12% Intracomm. - Capital goods" +msgstr "12% Intracomm. - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-EU-C1 +msgid "VAT Deductible 12% Capital goods - Intracomm." +msgstr "TVA Déductible 12% biens d'investissement - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-EU-C2 +msgid "VAT Debt 12% Capital goods - Intracomm." +msgstr "TVA à payer 12% biens d'investissement - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-EU +msgid "6% Intracomm. - Capital goods" +msgstr "6% Intracomm. - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-EU-C1 +msgid "VAT Deductible 6% Capital goods - Intracomm." +msgstr "TVA Déductible 6% biens d'investissement - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-EU-C2 +msgid "VAT Debt 6% Capital goods - Intracomm." +msgstr "TVA à payer 6% biens d'investissement - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-00-EU +msgid "0% Intracomm. - Capital goods" +msgstr "0% Intracomm. - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-ROW-CC +msgid "21% Outside EU - Raw mat., consum. and goods for resale" +msgstr "21% Hors UE - Approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-ROW-CC-C1 +msgid "VAT Deductible 21% Goods for resale - Outside EU" +msgstr "TVA Déductible 21% approvisionn. et marchandises - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-ROW-CC-C2 +msgid "VAT Debt 21% Goods for resale - Outside EU" +msgstr "TVA à payer 21% approvisionn. et marchandises - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-ROW-CC +msgid "12% Outside EU - Raw mat., consum. and goods for resale" +msgstr "12% Hors UE - Approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-ROW-CC-C1 +msgid "VAT Deductible 12% Goods for resale - Outside EU" +msgstr "TVA Déductible 12% approvisionn. et marchandises - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-ROW-CC-C2 +msgid "VAT Debt 12% Goods for resale - Outside EU" +msgstr "TVA à payer 12% approvisionn. et marchandises - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-ROW-CC +msgid "6% Outside EU - Raw mat., consum. and goods for resale" +msgstr "6% Hors UE - Approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-ROW-CC-C1 +msgid "VAT Deductible 6% Goods for resale - Outside EU" +msgstr "TVA Déductible 6% approvisionn. et marchandises - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-ROW-CC-C2 +msgid "VAT Debt 6% Goods for resale - Outside EU" +msgstr "TVA à payer 6% approvisionn. et marchandises - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-00-ROW-CC +msgid "0% Outside EU - Raw mat., consum. and goods for resale" +msgstr "0% Hors UE - approvisionn. et marchandises" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-ROW-CC +msgid "21% Outside EU - Services and other goods" +msgstr "21% Hors UE - Services et biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-ROW-CC-C1 +msgid "VAT Deductible 21% Services and other goods - Outside EU" +msgstr "TVA Déductible 21% services et biens divers - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-ROW-CC-C2 +msgid "VAT Debt 21% Services and other goods - Outside EU" +msgstr "TVA à payer 21% services et biens divers - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-ROW-CC +msgid "12% Outside EU - Services and other goods" +msgstr "12% Hors UE - Services et biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-ROW-CC-C1 +msgid "VAT Deductible 12% Services and other goods - Outside EU" +msgstr "TVA Déductible 12% services et biens divers - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-ROW-CC-C2 +msgid "VAT Debt 12% Services and other goods - Outside EU" +msgstr "TVA à payer 12% services et biens divers - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-ROW-CC +msgid "6% Outside EU - Services and other goods" +msgstr "6% Hors UE - Services et biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-ROW-CC-C1 +msgid "VAT Deductible 6% Services and other goods - Outside EU" +msgstr "TVA Déductible 6% services et biens divers - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-ROW-CC-C2 +msgid "VAT Debt 6% Services and other goods - Outside EU" +msgstr "TVA à payer 6% services et biens divers - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-00-ROW-CC +msgid "0% Outside EU - Services and other goods" +msgstr "0% Hors UE - Services et biens divers" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-ROW-CC +msgid "21% Outside EU - Capital goods" +msgstr "21% Hors UE - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-ROW-CC-C1 +msgid "VAT Deductible 21% Capital goods - Outside EU" +msgstr "TVA Déductible 21% biens d'investissement - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-ROW-CC-C2 +msgid "VAT Debt 21% Capital goods - Outside EU" +msgstr "TVA à payer 21% biens d'investissement - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-ROW-CC +msgid "12% Outside EU - Capital goods" +msgstr "12% Hors UE - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-ROW-CC-C1 +msgid "VAT Deductible 12% Capital goods - Outside EU" +msgstr "TVA Déductible 12% biens d'investissement - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-ROW-CC-C2 +msgid "VAT Debt 12% Capital goods - Outside EU" +msgstr "TVA à payer 12% biens d'investissement - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-ROW-CC +msgid "6% Outside EU - Capital goods" +msgstr "6% Hors UE - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-ROW-CC-C1 +msgid "VAT Deductible 6% Capital goods - Outside EU" +msgstr "TVA Déductible 6% biens d'investissement - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-ROW-CC-C2 +msgid "VAT Debt 6% Capital goods - Outside EU" +msgstr "TVA à payer 6% biens d'investissement - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-00-ROW-CC +msgid "0% Outside EU - Capital goods" +msgstr "0% Hors UE - Biens d'investissement" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-V61 +msgid "VAT adjustments in favor of the Tax Authority" +msgstr "Diverses régularisations en faveur de l'Etat" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-V62 +msgid "VAT adjustments in favor of the Declarant" +msgstr "Régularisations TVA en faveur du déclarant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-V91 +msgid "Advance for Operations from December 1 to 20" +msgstr "TVA due pour la période du 1er au 20 décembre" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-V59 +msgid "VAT deductible case 59" +msgstr "TVA déductible grille 59" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-V82 +msgid "VAT base case 82" +msgstr "TVA base grille 82" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-OUT-21-CD2-S +msgid "21% - Cash Discount 2%" +msgstr "21% - Escompte de caisse 2%" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-OUT-21-CD2-G +msgid "21% - Cash Discount 2%" +msgstr "21% - Escompte de caisse 2%" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-CD2-S +msgid "21% - Cash Discount 2%" +msgstr "21% - Escompte de caisse 2%" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-CC-C1 +msgid "VAT Deductible 21% - Cocontractant" +msgstr "TVA Déductible 21% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-CC-C2 +msgid "VAT Debt 21% - Cocontractant" +msgstr "TVA à payer 21% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-12-CC-C1 +msgid "VAT Deductible 12% - Cocontractant" +msgstr "TVA Déductible 12% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-12-CC-C2 +msgid "VAT Debt 12% - Cocontractant" +msgstr "TVA à payer 12% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-06-CC-C1 +msgid "VAT Deductible 6% - Cocontractant" +msgstr "TVA Déductible 6% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-06-CC-C2 +msgid "VAT Debt 6% - Cocontractant" +msgstr "TVA à payer 6% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-CC-C1 +msgid "VAT Deductible 21% - Cocontractant" +msgstr "TVA Déductible 21% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-CC-C2 +msgid "VAT Debt 21% - Cocontractant" +msgstr "TVA à payer 21% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-CC-C1 +msgid "VAT Deductible 12% - Cocontractant" +msgstr "TVA Déductible 12% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-CC-C2 +msgid "VAT Debt 12% - Cocontractant" +msgstr "TVA à payer 12% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-CC-C1 +msgid "VAT Deductible 6% - Cocontractant" +msgstr "TVA Déductible 6% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-CC-C2 +msgid "VAT Debt 6% - Cocontractant" +msgstr "TVA à payer 6% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-21-CC-C1 +msgid "VAT Deductible 21% - Cocontractant" +msgstr "TVA Déductible 21% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-21-CC-C2 +msgid "VAT Debt 21% - Cocontractant" +msgstr "TVA à payer 21% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-12-CC-C1 +msgid "VAT Deductible 12% - Cocontractant" +msgstr "TVA Déductible 12% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-12-CC-C2 +msgid "VAT Debt 12% - Cocontractant" +msgstr "TVA à payer 12% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-06-CC-C1 +msgid "VAT Deductible 6% - Cocontractant" +msgstr "TVA Déductible 6% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-06-CC-C2 +msgid "VAT Debt 6% - Cocontractant" +msgstr "TVA à payer 6% - cocontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-INC +msgid "Car Expenses - VAT 50% Deductible" +msgstr "Frais de voiture - TVA 50% déduct. (Prix incl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-INC +msgid "Car Expenses - VAT 35% Deductible" +msgstr "Frais de voiture - TVA 35% déduct. (Prix Excl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-EXC-C1 +msgid "CAR50-EXC - VAT Non Deductible" +msgstr "TVA 50% non déductible" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-EXC-C2 +msgid "CAR50-EXC - VAT Deductible" +msgstr "TVA 50% déductible" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-EXC +msgid "Car Expenses - VAT 50% Deductible" +msgstr "Frais de voiture - TVA 50% déduct." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-EXC-C1 +msgid "CAR35-EXC - VAT Non Deductible" +msgstr "TVA 65% non déductible" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-EXC-C2 +msgid "CAR35-EXC - VAT Deductible" +msgstr "TVA 35% déductible" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-EXC +msgid "Car Expenses - VAT 35% Deductible" +msgstr "Frais de voiture - TVA 35% déduct." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-S-C1 +msgid "VAT Deductible 21% - Intracomm." +msgstr "TVA Déductible 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-S-C2 +msgid "VAT Debt 21% - Intracomm." +msgstr "TVA à payer 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-G-C1 +msgid "VAT Deductible 21% - Intracomm." +msgstr "TVA Déductible 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-G-C2 +msgid "VAT Debt 21% - Intracomm." +msgstr "TVA à payer 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-12-EU-C1 +msgid "VAT Deductible 12% - Intracomm." +msgstr "TVA Déductible 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-12-EU-C2 +msgid "VAT Debt 12% - Intracomm." +msgstr "TVA à payer 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-06-EU-C1 +msgid "VAT Deductible 6% - Intracomm." +msgstr "TVA Déductible 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-06-EU-C2 +msgid "VAT Debt 6% - Intracomm." +msgstr "TVA à payer 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-S-C1 +msgid "VAT Deductible 21% - Intracomm." +msgstr "TVA Déductible 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-S-C2 +msgid "VAT Debt 21% - Intracomm." +msgstr "TVA à payer 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-G-C1 +msgid "VAT Deductible 21% - Intracomm." +msgstr "TVA Déductible 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-G-C2 +msgid "VAT Debt 21% - Intracomm." +msgstr "TVA à payer 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-S-C1 +msgid "VAT Deductible 12% - Intracomm." +msgstr "TVA Déductible 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-S-C2 +msgid "VAT Debt 12% - Intracomm." +msgstr "TVA à payer 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-G-C1 +msgid "VAT Deductible 12% - Intracomm." +msgstr "TVA Déductible 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-G-C2 +msgid "VAT Debt 12% - Intracomm." +msgstr "TVA à payer 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-S-C1 +msgid "VAT Deductible 6% - Intracomm." +msgstr "TVA Déductible 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-S-C2 +msgid "VAT Debt 6% - Intracomm." +msgstr "TVA à payer 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-G-C1 +msgid "VAT Deductible 6% - Intracomm." +msgstr "TVA Déductible 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-G-C2 +msgid "VAT Debt 6% - Intracomm." +msgstr "TVA à payer 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-21-EU-C1 +msgid "VAT Deductible 21% - Intracomm." +msgstr "TVA Déductible 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-21-EU-C2 +msgid "VAT Debt 21% - Intracomm." +msgstr "TVA à payer 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-12-EU-C1 +msgid "VAT Deductible 12% - Intracomm." +msgstr "TVA Déductible 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-12-EU-C2 +msgid "VAT Debt 12% - Intracomm." +msgstr "TVA à payer 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-06-EU-C1 +msgid "VAT Deductible 6% - Intracomm." +msgstr "TVA Déductible 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-06-EU-C2 +msgid "VAT Debt 6% - Intracomm." +msgstr "TVA à payer 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-ROW-CC-C1 +msgid "VAT Deductible 21% - Outside EU" +msgstr "TVA Déductible 21% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-ROW-CC-C2 +msgid "VAT Debt 21% - Outside EU" +msgstr "TVA à payer 21% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-ROW-CC +msgid "21% Outside EU" +msgstr "21% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-12-ROW-CC-C1 +msgid "VAT Deductible 12% - Outside EU" +msgstr "TVA Déductible 12% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-12-ROW-CC-C2 +msgid "VAT Debt 12% - Outside EU" +msgstr "TVA à payer 12% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-12-ROW-CC +msgid "12% Outside EU" +msgstr "12% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-06-ROW-CC-C1 +msgid "VAT Deductible 6% - Outside EU" +msgstr "TVA Déductible 6% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-06-ROW-CC-C2 +msgid "VAT Debt 6% - Outside EU" +msgstr "TVA à payer 6% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-06-ROW-CC +msgid "6% Outside EU" +msgstr "6% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-00-ROW-CC +msgid "0% Outside EU" +msgstr "0% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-ROW-CC-C1 +msgid "VAT Deductible 21% - Outside EU" +msgstr "TVA Déductible 21% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-ROW-CC-C2 +msgid "VAT Debt 21% - Outside EU" +msgstr "TVA à payer 21% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-ROW-CC +msgid "21% Outside EU" +msgstr "21% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-ROW-CC-C1 +msgid "VAT Deductible 12% - Outside EU" +msgstr "TVA Déductible 12% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-ROW-CC-C2 +msgid "VAT Debt 12% - Outside EU" +msgstr "TVA à payer 12% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-ROW-CC +msgid "12% Outside EU" +msgstr "12% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-ROW-CC-C1 +msgid "VAT Deductible 6% - Outside EU" +msgstr "TVA Déductible 6% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-ROW-CC-C2 +msgid "VAT Debt 6% - Outside EU" +msgstr "TVA à payer 6% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-ROW-CC +msgid "6% Outside EU" +msgstr "6% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-00-ROW-CC +msgid "0% Outside EU" +msgstr "0% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-21-ROW-CC-C1 +msgid "VAT Deductible 21% - Outside EU" +msgstr "TVA Déductible 21% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-21-ROW-CC-C2 +msgid "VAT Debt 21% - Outside EU" +msgstr "TVA à payer 21% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-21-ROW-CC +msgid "21% Outside EU" +msgstr "21% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-12-ROW-CC-C1 +msgid "VAT Deductible 12% - Outside EU" +msgstr "TVA Déductible 12% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-12-ROW-CC-C2 +msgid "VAT Debt 12% - Outside EU" +msgstr "TVA à payer 12% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-12-ROW-CC +msgid "12% Outside EU" +msgstr "12% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-06-ROW-CC-C1 +msgid "VAT Deductible 6% - Outside EU" +msgstr "TVA Déductible 6% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-06-ROW-CC-C2 +msgid "VAT Debt 6% - Outside EU" +msgstr "TVA à payer 6% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-06-ROW-CC +msgid "6% Outside EU" +msgstr "6% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-00-ROW-CC +msgid "0% Outside EU" +msgstr "0% - Hors UE" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-V61 +msgid "VAT adjustments in favor of the Tax Authority" +msgstr "Diverses régularisations en faveur de l'Etat" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-V62 +msgid "VAT adjustments in favor of the Declarant" +msgstr "Régularisations TVA en faveur du déclarant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-V91 +msgid "Advance for Operations from December 1 to 20" +msgstr "TVA due pour la période du 1er au 20 décembre" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-V59 +msgid "VAT deductible case 59" +msgstr "TVA déductible grille 59" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-V82 +msgid "VAT base case 82" +msgstr "TVA base grille 82" + diff --git a/l10n_be_coa_multilang/i18n/nl.po b/l10n_be_coa_multilang/i18n/nl.po new file mode 100644 index 00000000..20e37551 --- /dev/null +++ b/l10n_be_coa_multilang/i18n/nl.po @@ -0,0 +1,2813 @@ +# Dutch translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_be_coa_multilang +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo 11.0\n" +"Report-Msgid-Bugs-To: support@noviat.com\n" +"POT-Creation-Date: 2018-12-23 20:24:44.387000\n" +"PO-Revision-Date: 2018-12-23 20:24:44.387000\n" +"Last-Translator: Luc De Meyer (Noviat nv/sa)\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: +""Language: Dutch +""Plural-Forms: nplurals=2; plural=(n > 1); +" +#. module: l10n_be_coa_multilang +#: model:account.chart.template,name:l10n_be_coa_multilang.l10n_be_coa_multilang_template +msgid "Belgian Chart of Accounts (en/nl/fr)" +msgstr "Belgisch Minimum Algemeen Rekeningstelsel (en/nl/fr)" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/wizard/nov_print_fiscalyear.py:10 +msgid "No records found for your selection!" +msgstr "Geen records gevonden voor uw keuze!" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/wizard/nov_print_fiscalyear.py:11 +msgid "No Data Available" +msgstr "Geen gegevens beschikbaar" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/wizard/nov_print_journal.py:10 +msgid "No records found for your selection!" +msgstr "Geen records gevonden voor uw keuze!" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/wizard/nov_print_journal.py:11 +msgid "No Data Available" +msgstr "Geen gegevens beschikbaar" + +#. module: l10n_be_coa_multilang +#: model:ir.actions.act_window,name:l10n_be_coa_multilang.action_account_report_be_bs +msgid "Belgian Balance Sheet" +msgstr "Belgische Balans" + +#. module: l10n_be_coa_multilang +#: model:ir.actions.act_window,name:l10n_be_coa_multilang.action_account_report_be_pl +msgid "Belgian Profit And Loss" +msgstr "Belgische Resultatenrekening" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_finance_belgian_statement +msgid "Belgian Statements and Reports" +msgstr "Belgische overzichten en aangiften" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_account_report_be_bs +msgid "Belgian Balance Sheet" +msgstr "Belgische Balans" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_account_report_be_pl +msgid "Belgian Profit And Loss" +msgstr "Belgische Resultatenrekening" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_be_legal_financial_reportscheme +msgid "Belgian Legal Financial Report Scheme" +msgstr "Schema Belgische Wettelijke Rapportage" + +#. module: l10n_be_coa_multilang +#: model:ir.actions.act_window,name:l10n_be_coa_multilang.action_be_legal_financial_reportscheme +msgid "Belgian Legal Financial Report Scheme" +msgstr "Schema Belgische Wettelijke Rapportage" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.l10n_be_vat_declaration +msgid "Periodical VAT Declaration" +msgstr "Periodieke BTW aangifte" + +#. module: l10n_be_coa_multilang +#: model:ir.actions.act_window,name:l10n_be_coa_multilang.action_vat_declaration +msgid "Periodical VAT Declaration" +msgstr "Periodieke BTW aangifte" + +#. module: l10n_be_coa_multilang +#: view:l10n_be.vat.declaration:0 +msgid "Periodical VAT Declaration" +msgstr "Periodieke BTW aangifte" + +#. module: l10n_be_coa_multilang +#: view:l10n_be.vat.declaration:0 +msgid "Options" +msgstr "Opties" + +#. module: l10n_be_coa_multilang +#: view:l10n_be.vat.declaration:0 +msgid "Comments" +msgstr "Commentaar" + +#. module: l10n_be_coa_multilang +#: view:l10n_be.vat.declaration:0 +msgid "Last Declaration" +msgstr "Laatste Aangifte" + +#. module: l10n_be_coa_multilang +#: field:l10n_be.vat.declaration,period_id:0 +msgid "Period" +msgstr "Periode" + +#. module: l10n_be_coa_multilang +#: field:l10n_be.vat.declaration,ask_restitution:0 +msgid "Ask Restitution" +msgstr "Aanvraag terugbetaling" + +#. module: l10n_be_coa_multilang +#: field:l10n_be.vat.declaration,ask_payment:0 +msgid "Ask Payment" +msgstr "Aanvraag betaalformulieren" + +#. module: l10n_be_coa_multilang +#: field:l10n_be.vat.declaration,client_nihil:0 +msgid "Last Declaration" +msgstr "Laatste Aangifte" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.l10n_be_vat_intra +msgid "Intracom VAT Declaration" +msgstr "Intracommunautaire BTW aangifte" + +#. module: l10n_be_coa_multilang +#: model:ir.actions.act_window,name:l10n_be_coa_multilang.action_vat_intra +msgid "Intracom VAT Declaration" +msgstr "Intracommunautaire BTW aangifte" + +#. module: l10n_be_coa_multilang +#: view:partner.vat.intra:0 +msgid "Intracom VAT Declaration" +msgstr "Intracommunautaire BTW aangifte" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.partner_vat_listing +msgid "Annual Listing of VAT subjected Customers" +msgstr "Jaarlijkse BTW-listing Klanten" + +#. module: l10n_be_coa_multilang +#: model:ir.actions.act_window,name:l10n_be_coa_multilang.action_partner_vat_listing +msgid "Partner VAT Listing" +msgstr "BTW-listing Klanten" + +#. module: l10n_be_coa_multilang +#: field:partner.vat,year:0 +msgid "Year" +msgstr "Jaar" + +#. module: l10n_be_coa_multilang +#: field:partner.vat,limit_amount:0 +msgid "Limit Amount" +msgstr "Bestedingslimiet" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_partner_open_arap_fy +msgid "Print Open Receivables/Payables by Fiscal Year" +msgstr "Debiteuren/Crediteuren overzicht per boekjaar" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_partner_open_arap_period +msgid "Print Open Receivables/Payables by Period" +msgstr "Debiteuren/Crediteuren overzicht per periode" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_nov_print_journal +msgid "Print Journal by Period" +msgstr "Dagboekoverzicht per periode" + +#. module: l10n_be_coa_multilang +#: model:ir.ui.menu,name:l10n_be_coa_multilang.menu_nov_print_journal_fiscalyear +msgid "Print Journal by Fiscal Year" +msgstr "Dagboekoverzicht per boekjaar" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Journal Overview" +msgstr "Dagboekoverzicht" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Fiscal Year" +msgstr "Boekjaar" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Document" +msgstr "Document" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Date" +msgstr "Datum" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Account" +msgstr "Rekening" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Partner" +msgstr "Partner" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Description" +msgstr "Omschrijving" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "VAT" +msgstr "BTW" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Debit" +msgstr "Debet" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "Credit" +msgstr "Credit" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.fiscalyear.print:0 +msgid "VAT Declaration" +msgstr "BTW aangifte" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Journal Overview" +msgstr "Dagboekoverzicht" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Period" +msgstr "Periode" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Document" +msgstr "Document" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Date" +msgstr "Datum" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Account" +msgstr "Rekening" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Partner" +msgstr "Partner" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Description" +msgstr "Omschrijving" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "VAT" +msgstr "BTW" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Debit" +msgstr "Debet" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "Credit" +msgstr "Credit" + +#. module: l10n_be_coa_multilang +#: report:nov.account.journal.period.print:0 +msgid "VAT Declaration" +msgstr "BTW aangifte" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:10 +msgid "Document" +msgstr "Document" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:11 +msgid "Date" +msgstr "Datum" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:12 +msgid "Due Date" +msgstr "Vervaldatum" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:13 +msgid "Account" +msgstr "Rekening" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:14 +msgid "Description" +msgstr "Omschrijving" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:14 +msgid "Debit" +msgstr "Debet" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:15 +msgid "Credit" +msgstr "Credit" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:16 +msgid "Balance" +msgstr "Saldo" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.fy.print:17 +msgid "Totals" +msgstr "Totalen" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:10 +msgid "Document" +msgstr "Document" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:11 +msgid "Date" +msgstr "Datum" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:12 +msgid "Due Date" +msgstr "Vervaldatum" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:13 +msgid "Account" +msgstr "Rekening" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:14 +msgid "Description" +msgstr "Omschrijving" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:14 +msgid "Debit" +msgstr "Debet" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:15 +msgid "Credit" +msgstr "Credit" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:16 +msgid "Balance" +msgstr "Saldo" + +#. module: l10n_be_coa_multilang +#: report:account.partner.open.arap.period.print:17 +msgid "Totals" +msgstr "Totalen" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/report/account_partner_open_arap.py:10 +msgid "Open Receivables" +msgstr "Debiteuren" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/report/account_partner_open_arap.py:11 +msgid "Open Payables" +msgstr "Crediteuren" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/report/account_partner_open_arap.py:11 +msgid "Fiscal Year" +msgstr "Boekjaar" + +#. module: l10n_be_coa_multilang +#: code:addons/l10n_be_coa_multilang/report/account_partner_open_arap.py:11 +msgid "Period" +msgstr "Periode" + +#. module: l10n_be_coa_multilang +#: view:nov.print.journal.fiscalyear:0 +msgid "Print Journal by Fiscal Year" +msgstr "Dagboekoverzicht per boekjaar" + +#. module: l10n_be_coa_multilang +#: view:nov.print.journal.fiscalyear:0 +msgid "Cancel" +msgstr "Annuleer" + +#. module: l10n_be_coa_multilang +#: field:nov.print.journal.fiscalyear,fiscalyear_id:0 +msgid "Fiscal Year" +msgstr "Boekjaar" + +#. module: l10n_be_coa_multilang +#: field:nov.print.journal.fiscalyear,journal_id:0 +msgid "Journal" +msgstr "Dagboek" + +#. module: l10n_be_coa_multilang +#: view:nov.print.journal.fiscalyear:0 +msgid "Print" +msgstr "Print" + +#. module: l10n_be_coa_multilang +#: field:nov.print.journal.fiscalyear,sort:0 +msgid "Entries Sorted By" +msgstr "Boekingen gesorteerd op" + +#. module: l10n_be_coa_multilang +#: selection:nov.print.journal.fiscalyear,sort:0 +msgid "Date" +msgstr "Datum" + +#. module: l10n_be_coa_multilang +#: selection:nov.print.journal.fiscalyear,sort:0 +msgid "Number" +msgstr "Nummer" + +#. module: l10n_be_coa_multilang +#: view:nov.print.journal:0 +msgid "Print Journal by Period" +msgstr "Dagboekoverzicht per periode" + +#. module: l10n_be_coa_multilang +#: view:nov.print.journal:0 +msgid "Cancel" +msgstr "Annuleer" + +#. module: l10n_be_coa_multilang +#: field:nov.print.journal,journal_ids:0 +msgid "Journals" +msgstr "Dagboeken" + +#. module: l10n_be_coa_multilang +#: field:nov.print.journal,period_ids:0 +msgid "Periods" +msgstr "Periodes" + +#. module: l10n_be_coa_multilang +#: view:nov.print.journal:0 +msgid "Print" +msgstr "Print" + +#. module: l10n_be_coa_multilang +#: field:nov.print.journal,sort:0 +msgid "Entries Sorted By" +msgstr "Boekingen gesorteerd op" + +#. module: l10n_be_coa_multilang +#: selection:nov.print.journal,sort:0 +msgid "Date" +msgstr "Datum" + +#. module: l10n_be_coa_multilang +#: selection:nov.print.journal,sort:0 +msgid "Number" +msgstr "Nummer" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.listing:0 +msgid "Nr" +msgstr "Nr" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.listing:0 +msgid "VAT Number" +msgstr "BTW Nummer" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.listing:0 +msgid "Partner" +msgstr "Partner" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.listing:0 +msgid "Base Amount" +msgstr "Maatstaf van Heffing" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.listing:0 +msgid "VAT Amount" +msgstr "Bedrag BTW" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.listing:0 +msgid "Company" +msgstr "Bedrijf" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.listing:0 +msgid "Year" +msgstr "Jaar" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.intracom:0 +msgid "Nr" +msgstr "Nr" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.intracom:0 +msgid "VAT Number" +msgstr "BTW Nummer" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.intracom:0 +msgid "Partner" +msgstr "Partner" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.intracom:0 +msgid "Code" +msgstr "Code" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.intracom:0 +msgid "Amount" +msgstr "Bedrag" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.intracom:0 +msgid "Company" +msgstr "Bedrijf" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.intracom:0 +msgid "Period" +msgstr "Periode" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.declaration:0 +msgid "Case" +msgstr "Vak" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.declaration:0 +msgid "VAT Number" +msgstr "BTW Nummer" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.declaration:0 +msgid "Description" +msgstr "Omschrijving" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.declaration:0 +msgid "Amount" +msgstr "Bedrag" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.declaration:0 +msgid "Company" +msgstr "Bedrijf" + +#. module: l10n_be_coa_multilang +#: report:l10n.be.vat.declaration:0 +msgid "Period" +msgstr "Periode" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_00 +msgid "Operations subject to a special arrangement" +msgstr "Handelingen onderworpen aan een bijzondere regeling" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_01 +msgid "Operations subject to 6% VAT" +msgstr "Uitgaande handelingen aan 6% BTW" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_02 +msgid "Operations subject to 12% VAT" +msgstr "Uitgaande handelingen aan 12% BTW" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_03 +msgid "Operations subject to 21% VAT" +msgstr "Uitgaande handelingen aan 21% BTW" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_44 +msgid "Intra Community Services" +msgstr "Vrijgestelde intracommunautaire leveringen van diensten" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_45 +msgid "VAT due by the Cocontractant" +msgstr "BTW verschuldigd door de medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_46L +msgid "VAT exempt Intra Community Supplies of Goods" +msgstr "Vrijgestelde intracommunautaire leveringen van goederen" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_46T +msgid "VAT exempt Intra Community ABC Supplies" +msgstr "ABC verkopen intracommunautair" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_47 +msgid "Other VAT exempt Operations" +msgstr "Andere vrijgestelde handelingen" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_48 +msgid "Issued Credit Notes Operations Grid [44] and [46]" +msgstr "Uitgereikte creditnota's handelingen roosters [44] en [46]" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_49 +msgid "Issued Credit Notes Other Operations Section II" +msgstr "Uitgereikte creditnota’s andere handelingen van kader II" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_81D +msgid "Purchases of Goods, Raw Materials and Consumables" +msgstr "Aankopen van handelsgoederen, grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_81ND +msgid "Purchases of Goods, Raw Mater. and Consum. - VAT Non Deductible" +msgstr "Aankopen van handelsgoederen, grond- en hulpstoffen - BTW niet aftrekbaar" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_82D +msgid "Purchases of various Goods and Services" +msgstr "Aankopen van diverse goederen en diensten" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_82ND +msgid "Purchases of various Goods and Services - VAT Non Deductible" +msgstr "Aankopen van diverse goederen en diensten - BTW niet aftrekbaar" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_83D +msgid "Purchases of Assets" +msgstr "Aankopen van bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_83ND +msgid "Purchases of Assets - VAT Non Deductible" +msgstr "Aankopen van bedrijfsmiddelen - BTW niet aftrekbaar" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_84 +msgid "Incoming Credit Notes Operations Grid [86] and [88]" +msgstr "Credit notas op de handelingen roosters [86] en [88]" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_85D +msgid "Incoming Credit Notes other Operations" +msgstr "Ontvangen creditnota’s andere handelingen" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_85ND +msgid "Incoming Credit Notes other Operations - VAT Non Deductible" +msgstr "Ontvangen creditnota’s andere handelingen - BTW niet aftrekbaar" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_86 +msgid "Intra Community and ABC Acquisitions" +msgstr "Intracommunautaire verwervingen en ABC-verkopen" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_87 +msgid "Other Incoming Operations" +msgstr "Andere inkomende handelingen" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_88 +msgid "Intra Community Services" +msgstr "Diensten ontvangen van intracom dienstverlener" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_VI +msgid "Balance (71-72)" +msgstr "Saldo (71-72)" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_XX +msgid "To Pay - Total" +msgstr "Te Betalen - Totaal" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_54 +msgid "VAT on Operations Grids [01], [02], [03]" +msgstr "BTW op handelingen roosters [01], [02], [03]" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_55 +msgid "VAT on Operations Grids [86] and [88]" +msgstr "BTW op handelingen in roosters [86] en [88]" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_56 +msgid "VAT on Operations Grid [87]" +msgstr "BTW op handelingen in rooster [87]" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_57 +msgid "VAT on Imports" +msgstr "BTW op invoeren met verlegging van heffing" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_61 +msgid "VAT adjustments in favor of the Tax Authority" +msgstr "Diverse BTW regularisaties in het voordeel van de Staat" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_63 +msgid "VAT Debt from Incoming Credit Notes" +msgstr "Terug te storten BTW vermeld op ontvangen creditnota’s" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_59 +msgid "Deductible VAT" +msgstr "Aftrekbare BTW" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_62 +msgid "VAT adjustments in favor of the Declarant" +msgstr "Diverse BTW regularisaties in het voordeel van de aangever" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_64 +msgid "Deductible VAT from Outgoing Credit Notes" +msgstr "Te recupereren BTW vermeld op uitgereikte creditnota’s" + +#. module: l10n_be_coa_multilang +#: model:account.account.tag,name:l10n_be_coa_multilang.tax_tag_91 +msgid "Advance for Operations from December 1 to 20" +msgstr "Voorschot voor handelingen van 1 tot 20 december" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_400000 +msgid "Customers" +msgstr "Klanten" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_411000 +msgid "Input VAT - current account balance" +msgstr "Terug te vorderen BTW - Rekening courant" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_411059 +msgid "VAT Deductible" +msgstr "BTW Aftrekbaar" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_411062 +msgid "VAT Deductible - Correction Case 62" +msgstr "BTW Aftrekbaar - herziening vak 62" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_440000 +msgid "Suppliers" +msgstr "Leveranciers" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_451000 +msgid "Output VAT - current account balance" +msgstr "Te betalen BTW - Rekening courant" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_451054 +msgid "VAT Debt" +msgstr "BTW schuld" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_451055 +msgid "VAT Debt - Intracommunity" +msgstr "BTW schuld - Intracommunautaire verwervingen" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_451056 +msgid "VAT Debt - Cocontractant" +msgstr "BTW schuld - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_451057 +msgid "VAT Debt - Import" +msgstr "BTW schuld - invoer met verlegging" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_451061 +msgid "VAT Debt - Correction Case 61" +msgstr "BTW schuld - herziening vak 61" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_550001 +msgid "Bank" +msgstr "Bank" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_570001 +msgid "Cash" +msgstr "Kas" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_580000 +msgid "Internal transfer account" +msgstr "Interne overboekingen" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_600000 +msgid "Purchases of raw materials" +msgstr "Aankopen van grondstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_654000 +msgid "Exchange rate losses" +msgstr "Nadelige wisselresultaten" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_700000 +msgid "Sales" +msgstr "Verkopen" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_754000 +msgid "Exchange rate gains" +msgstr "Voordelige wisselresultaten" + +#. module: l10n_be_coa_multilang +#: model:account.account.template,name:l10n_be_coa_multilang.aatn_999999 +msgid "Undistributed Profits/Losses" +msgstr "Niet uitgekeerde winsten/verliezen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_BE_2_FULL +msgid "Belgium Balance Sheet (Full Model)" +msgstr "Belgische Balans (volledig model)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_219000 +msgid "TOTAL ASSETS" +msgstr "TOTAAL VAN DE ACTIVA" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211000 +msgid "FIXED ASSETS" +msgstr "VASTE ACTIVA" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211100 +msgid "Formation Expenses" +msgstr "Oprichtingskosten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211200 +msgid "Intangible Assets" +msgstr "Immateriële vaste activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211300 +msgid "Tangible Assets" +msgstr "Materiële vaste activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211310 +msgid "Land and Buildings" +msgstr "Terreinen en gebouwen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211320 +msgid "Plant, Machinery and Equipment" +msgstr "Installaties, machines en uitrusting" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211330 +msgid "Furniture and Vehicles" +msgstr "Meubilair en rollend materieel" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211340 +msgid "Leasing and other similar Rights" +msgstr "Leasing en soortgelijke rechten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211350 +msgid "Other Tangible Assets" +msgstr "Overige materiële vaste activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211360 +msgid "Assets under Construction and Advance Payment" +msgstr "Activa in aanbouw en vooruitbetalingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211400 +msgid "Financial Assets" +msgstr "Financiële vaste activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211410 +msgid "Affiliated Enterprises" +msgstr "Verbonden ondernemingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211411 +msgid "Participating Interests" +msgstr "Deelnemingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211412 +msgid "Amounts Receivable" +msgstr "Vorderingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211420 +msgid "Enterprises Linked by Participating Interests" +msgstr "Ondernemingen waarmee een deelnemingsverhouding bestaat" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211421 +msgid "Participating Interests" +msgstr "Deelnemingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211422 +msgid "Amounts Receivable" +msgstr "Vorderingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211430 +msgid "Other Financial Assets" +msgstr "Andere financiële vaste activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211431 +msgid "Shares" +msgstr "Aandelen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_211432 +msgid "Amounts Receivable and Cash Guarantees" +msgstr "Vorderingen en borgtochten in contanten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212000 +msgid "CURRENT ASSETS" +msgstr "VLOTTENDE ACTIVA" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212100 +msgid "Amounts Receivable after One Year" +msgstr "Vorderingen op meer dan één jaar" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212110 +msgid "Trade Debtors" +msgstr "Handelsvorderingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212120 +msgid "Other Amounts Receivable" +msgstr "Overige vorderingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212200 +msgid "Stocks and Contracts in Progress" +msgstr "Voorraden en bestellingen in uitvoering" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212210 +msgid "Stocks" +msgstr "Voorraden" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212211 +msgid "Raw Materials and Consumables" +msgstr "Grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212212 +msgid "Work in Progress" +msgstr "Goederen in bewerking" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212213 +msgid "Finished Goods" +msgstr "Gereed product" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212214 +msgid "Goods purchased for Resale" +msgstr "Handelsgoederen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212215 +msgid "Imovable Property acquired for Resale" +msgstr "Onroerende goederen bestemd voor verkoop" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212216 +msgid "Advance Payments" +msgstr "Vooruitbetalingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212220 +msgid "Contracts in progress" +msgstr "Bestellingen in uitvoering" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212300 +msgid "Amounts Receivable within one Year" +msgstr "Vorderingen op ten hoogste één jaar" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212310 +msgid "Trade Debtors" +msgstr "Handelsvorderingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212320 +msgid "Other Amounts Receivable" +msgstr "Overige vorderingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212400 +msgid "Investments" +msgstr "Geldbeleggingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212410 +msgid "Own Shares" +msgstr "Eigen aandelen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212420 +msgid "Other Investments and Deposits" +msgstr "Overige beleggingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212500 +msgid "Cash at Bank and in Hand" +msgstr "Liquide middelen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_212600 +msgid "Deferred Charges and Accrued Income" +msgstr "Overlopende rekeningen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_229000 +msgid "TOTAL LIABILITIES" +msgstr "TOTAAL VAN DE PASSIVA" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221000 +msgid "EQUITY CAPITAL" +msgstr "EIGEN VERMOGEN" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221100 +msgid "Capital" +msgstr "Kapitaal" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221110 +msgid "Issued Capital" +msgstr "Geplaatst kapitaal" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221120 +msgid "Uncalled Capital" +msgstr "Niet-opgevraagd kapitaal" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221200 +msgid "Share Premium Account" +msgstr "Uitgiftepremies" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221300 +msgid "Revaluation Surpluses" +msgstr "Herwaarderingsmeerwaarden" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221400 +msgid "Reserves" +msgstr "Reserves" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221410 +msgid "Legal Reserve" +msgstr "Wettelijke reserve" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221420 +msgid "Reserves not available for Distribution" +msgstr "Onbeschikbare reserves" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221421 +msgid "In respect of own Shares held" +msgstr "Voor eigen aandelen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221422 +msgid "Other" +msgstr "Andere" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221430 +msgid "Untaxed Reserves" +msgstr "Belastingvrije reserves" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221440 +msgid "Reserves available for Distribution" +msgstr "Beschikbare reserves" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221500 +msgid "Accumulated Profits (Losses)" +msgstr "Overgedragen winst (verlies)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221600 +msgid "Investment Grants" +msgstr "Kapitaalsubsidies" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_221700 +msgid "Advance to Partners on the distribution of the net assets" +msgstr "Voorschot aan de vennoten op de verdeling van het netto-actief" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_222000 +msgid "PROVISIONS AND DEFERRED TAXES" +msgstr "VOORZIENINGEN EN UITGESTELDE BELASTINGEN" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_222100 +msgid "Provisions for Liabilities and Charges" +msgstr "Voorzieningen voor risico's en kosten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_222110 +msgid "Pensions and similar Obligations" +msgstr "Pensioenen en soortgelijke verplichtingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_222120 +msgid "Taxation" +msgstr "Belastingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_222130 +msgid "Major Repairs and Maintenance" +msgstr "Grote herstellings- en onderhoudswerken" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_222140 +msgid "Other Liabilities and Charges" +msgstr "Overige risico's en kosten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_222200 +msgid "Deferred Taxes" +msgstr "Uitgestelde belastingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223000 +msgid "DEBTS" +msgstr "SCHULDEN" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223100 +msgid "Amounts Payable after one Year" +msgstr "Schulden op meer dan één jaar" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223110 +msgid "Financial Debts" +msgstr "Financiële schulden" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223111 +msgid "Subordinated Loans" +msgstr "Achtergestelde leningen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223112 +msgid "Unsubordinated Debentures" +msgstr "Niet-achtergestelde obligatieleningen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223113 +msgid "Leasing and other similar Obligations" +msgstr "Leasingschulden en soortgelijke schulden" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223114 +msgid "Credit Institutions" +msgstr "Kredietinstellingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223115 +msgid "Other Loans" +msgstr "Overige leningen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223120 +msgid "Trade Debts" +msgstr "Handelsschulden" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223121 +msgid "Suppliers" +msgstr "Leveranciers" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223122 +msgid "Bills of Exchange Payable" +msgstr "Te betalen wissels" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223130 +msgid "Advances received on Contracts in Progress" +msgstr "Ontvangen vooruitbetalingen op bestellingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223140 +msgid "Other Amounts Payable" +msgstr "Overige schulden" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223200 +msgid "Amounts Payable within one Year" +msgstr "Schulden op ten hoogste één jaar" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223210 +msgid "Portion of amounts Payable after one Year due within the year" +msgstr "Schulden op meer dan één jaar die binnen het jaar vervallen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223220 +msgid "Financial Debts" +msgstr "Financiële schulden" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223221 +msgid "Credit Institutions" +msgstr "Kredietinstellingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223222 +msgid "Other Loans" +msgstr "Overige leningen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223230 +msgid "Trade Debts" +msgstr "Handelsschulden" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223231 +msgid "Suppliers" +msgstr "Leveranciers" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223232 +msgid "Bills of Exchange Payable" +msgstr "Te betalen wissels" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223240 +msgid "Advances received on Contracts in Progress" +msgstr "Ontvangen vooruitbetalingen op bestellingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223250 +msgid "Taxes, Remuneration and Social Security" +msgstr "Schulden met betrekking tot belastingen, bezoldigingen en sociale lasten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223251 +msgid "Taxes" +msgstr "Belastingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223252 +msgid "Remuneration and Social Security" +msgstr "Bezoldigingen en sociale lasten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223260 +msgid "Other Amounts Payable" +msgstr "Overige schulden" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_223300 +msgid "Accrued Charges and Deferred Income" +msgstr "Overlopende rekeningen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_BE_3_FULL +msgid "Belgium P&L (Full Model)" +msgstr "Belgische Resultatenrekening (volledig model)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_35000 +msgid "Fiscal Year Profit (Loss) to be allocated" +msgstr "Te bestemmen winst (verlies) van het boekjaar" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_34000 +msgid "Fiscal Year Profit (Loss)" +msgstr "Winst (Verlies) van het boekjaar" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_33000 +msgid "Fiscal Year Profit (Loss) before Taxation" +msgstr "Winst (Verlies) van het boekjaar vóór belasting" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32000 +msgid "Profit (Loss) from Normal Operations before Taxation" +msgstr "Winst (Verlies) uit de gewone bedrijfsuitoefening vóór belasting" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31000 +msgid "Operating Profit (Loss)" +msgstr "Bedrijfswinst (Bedrijfsverlies)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30100 +msgid "Operating Income" +msgstr "Bedrijfsopbrengsten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30110 +msgid "Turnover" +msgstr "Omzet" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30120 +msgid "Increase (Decrease) in Stocks, Final Goods, Etc." +msgstr "Voorraad goederen in bewerking en gereed product en bestellingen in uitvoering: toename (afname)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30130 +msgid "Fixed Assets Own Construction" +msgstr "Geproduceerde vaste activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30140 +msgid "Other Operating Income" +msgstr "Andere bedrijfsopbrengsten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30200 +msgid "Operating Charges" +msgstr "Bedrijfskosten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30210 +msgid "Raw Materials, Consumables and Goods for Resale" +msgstr "Handelsgoederen, grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30211 +msgid "Purchases" +msgstr "Aankopen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30212 +msgid "Decrease (Increase) in Stocks" +msgstr "Voorraad: afname (toename)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30220 +msgid "Services and Other Goods" +msgstr "Diensten en diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30230 +msgid "Remunerations, Social Security Costs and Pensions" +msgstr "Bezoldigingen, sociale lasten en pensioenen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30240 +msgid "Depreciation and Amounts Written Off on Formation Expenses, on Intangible and Tangible Assets" +msgstr "Afschrijvingen en waardeverminderingen op oprichtingskosten, op immateriële en materiële vaste activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30250 +msgid "Amounts Written Off on Stocks, Orders in Progress and Trade Debts: Increase (Decrease)" +msgstr "Waardeverminderingen op voorraden, op bestellingen in uitvoering en op handelsvorderingen: toevoegingen (terugnemingen)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30260 +msgid "Provisions for Liabilities and Charges: Increase (Decrease)" +msgstr "Voorzieningen voor risico's en kosten: toevoegingen (bestedingen en terugnemingen)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30270 +msgid "Other Operating Charges" +msgstr "Andere bedrijfskosten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_30280 +msgid "Restructuring Charges activated as Operating Charges" +msgstr "Als herstructureringskosten geactiveerde bedrijfskosten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31100 +msgid "Financial Income" +msgstr "Financiële opbrengsten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31110 +msgid "Income from Financial Fixed Assets" +msgstr "Opbrengsten uit financiële vaste activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31120 +msgid "Income from Current Assets" +msgstr "Opbrengsten uit vlottende activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31130 +msgid "Other Financial Income" +msgstr "Andere financiële opbrengsten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31200 +msgid "Financial Charges" +msgstr "Financiële kosten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31210 +msgid "Debt Charges" +msgstr "Kosten van schulden" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31220 +msgid "Amounts Written Off on other than Stocks, Orders in Progress and Trade Debts: Increase (Decrease)" +msgstr "Waardeverminderingen op vlottende activa andere dan voorraden, bestellingen in uitvoering en handelsvorderingen: toevoegingen (terugnemingen)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_31230 +msgid "Other Financial Charges" +msgstr "Andere financiële kosten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32100 +msgid "Extraordinary Income" +msgstr "Uitzonderlijke opbrengsten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32110 +msgid "Adjustment to Depreciation and Write Off on Intangible and Tangible Assets" +msgstr "Terugneming van afschrijvingen en van waardeverminderingen op immateriële en materiële vaste activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32120 +msgid "Adjustment to Amounts Written Off on Financial Fixed Assets" +msgstr "Terugneming van waardeverminderingen op financiële vaste activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32130 +msgid "Adjustment to Provisions for Extraordinary Liabilities and Charges" +msgstr "Terugneming van voorzieningen voor uitzonderlijke risico's en kosten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32140 +msgid "Gain on Disposal of Fixed Assets" +msgstr "Meerwaarden bij de realisatie van vaste activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32150 +msgid "Other Extraordinary Income" +msgstr "Meerwaarden bij de realisatie van vaste activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32200 +msgid "Extraordinary Charges" +msgstr "Uitzonderlijke kosten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32210 +msgid "Extraordinary Depreciation and Amounts Written Off on Formation Expenses, Intangible and Tangible Assets" +msgstr "Uitzonderlijke afschrijvingen en waardeverminderingen op oprichtingskosten, op immateriële en materiële vaste activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32220 +msgid "Amounts Written Off on Financial Fixed Assets" +msgstr "Waardeverminderingen op financiële vaste activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32230 +msgid "Provisions for Extraordinary Liabilities and Charges" +msgstr "Voorzieningen voor uitzonderlijke risico's en kosten: toevoegingen (bestedingen)" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32240 +msgid "Loss on Disposal of Fixed Assets" +msgstr "Minderwaarden bij de realisatie van vaste activa" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32250 +msgid "Other Extraordinary Charges" +msgstr "Andere uitzonderlijke kosten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_32260 +msgid "Restructuring Charges activated as Extraordinary Charges" +msgstr "Als herstructureringskosten geactiveerde uitzonderlijke kosten" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_33100 +msgid "Transfer from Deferred Taxes" +msgstr "Onttrekking aan de uitgestelde belastingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_33200 +msgid "Transfer to Deferred Taxes" +msgstr "Overboeking naar de uitgestelde belastingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_33300 +msgid "Income Taxes" +msgstr "Belastingen op het resultaat" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_33310 +msgid "Income Taxes" +msgstr "Belastingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_33320 +msgid "Adjustment of Income Taxes and Provisions for Taxes" +msgstr "Regularisering van belastingen en terugneming van voorzieningen voor belastingen" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_34100 +msgid "Transfer from Untaxed Reserves" +msgstr "Onttrekking aan de belastingvrije reserves" + +#. module: l10n_be_coa_multilang +#: model:account.financial.report,name:l10n_be_coa_multilang.account_financial_report_34200 +msgid "Transfer to Untaxed Reserves" +msgstr "Overboeking naar de belastingvrije reserves" + +#. module: l10n_be_coa_multilang +#: model:account.fiscal.position.template,name:l10n_be_coa_multilang.afptn_national +msgid "National Regime" +msgstr "Nationaal regime" + +#. module: l10n_be_coa_multilang +#: model:account.fiscal.position.template,name:l10n_be_coa_multilang.afptn_cocontractant +msgid "National Regime - Cocontractant" +msgstr "Nationaal regime - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.fiscal.position.template,name:l10n_be_coa_multilang.afptn_intracom +msgid "Intra Community Regime" +msgstr "Intra-communautair regime" + +#. module: l10n_be_coa_multilang +#: model:account.fiscal.position.template,name:l10n_be_coa_multilang.afptn_extracom +msgid "Extra Community Regime" +msgstr "Extra-communautair regime" + +#. module: l10n_be_coa_multilang +#: model:account.fiscal.position.template,note:l10n_be_coa_multilang.afptn_cocontractant +msgid "VAT subject to reverse charge." +msgstr "BTW verlegd." + +#. module: l10n_be_coa_multilang +#: model:account.fiscal.position.template,note:l10n_be_coa_multilang.afptn_intracom +msgid "Tax-free intra-Community supply / VAT subject to reverse charge." +msgstr "Vrij van btw wegens intracommunautaire levering / BTW verlegd." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-21-S +msgid "21% Services" +msgstr "21% Diensten" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-21-G +msgid "21% Goods" +msgstr "21% Goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-21-CD2-S +msgid "21% Services - Cash Discount 2%" +msgstr "21% Diensten - Korting contant 2%" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-21-CD2-G +msgid "21% Goods - Cash Discount 2%" +msgstr "21% Goederen - Korting contant 2%" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-21-INC-S +msgid "21% Services (Price Incl.)" +msgstr "21% Diensten (Prijs incl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-21-INC-G +msgid "21% Goods (Price Incl.)" +msgstr "21% Goederen (Prijs incl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-12-S +msgid "12% Services" +msgstr "12% Diensten" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-12-G +msgid "12% Goods" +msgstr "12% Goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-06-S +msgid "6% Services" +msgstr "6% Diensten" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-06-G +msgid "6% Goods" +msgstr "6% Goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-00-S +msgid "0% Services" +msgstr "0% Diensten" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-00-G +msgid "0% Goods" +msgstr "0% Goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-00-CC +msgid "0% Cocontractant" +msgstr "0% Medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-00-EU-S +msgid "Services within EU" +msgstr "Diensten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-00-EU-G +msgid "Goods within EU (Code L)" +msgstr "Goederen EU (Code L)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-00-EU-T +msgid "Goods within EU (Code T)" +msgstr "Goederen EU (Code T)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-OUT-00-ROW +msgid "Export Outside EU" +msgstr "Export buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-S +msgid "21% - Services for resale" +msgstr "21% - Diensten voor wederverkoop" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-G +msgid "21% - Raw mat., consum. and goods for resale" +msgstr "21% - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12 +msgid "12% - Raw mat., consum. and goods for resale" +msgstr "12% - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06 +msgid "6% - Raw mat., consum. and goods for resale" +msgstr "6% - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-00 +msgid "0% - Raw mat., consum. and goods for resale" +msgstr "0% - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-S +msgid "21% - Services" +msgstr "21% - Diensten" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-CD2-S +msgid "21% - Services - Cash Discount 2%" +msgstr "21% - Diensten - Korting contant 2%" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-INC-S +msgid "21% - Services (Price Incl.)" +msgstr "21% - Diensten (Prijs incl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-G +msgid "21% - Other goods" +msgstr "21% - Diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-S +msgid "12% - Services" +msgstr "12% - Diensten" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-G +msgid "12% - Other goods" +msgstr "12% - Diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-S +msgid "6% - Services" +msgstr "6% - Diensten" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-G +msgid "6% - Other goods" +msgstr "6% - Diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-00-S +msgid "0% - Services" +msgstr "0% - Diensten" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-00-G +msgid "0% - Other goods" +msgstr "0% - Diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21 +msgid "21% - Capital goods" +msgstr "21% - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12 +msgid "12% - Capital goods" +msgstr "12% - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06 +msgid "6% - Capital goods" +msgstr "6% - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-00 +msgid "0% - Capital goods" +msgstr "0% - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-CC +msgid "21% Cocontract. - Raw mat., consum. and goods for resale" +msgstr "21% Medecontract. - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-CC-C1 +msgid "VAT Deductible 21% Goods - Cocontractant" +msgstr "BTW aftrekbaar 21% goederen - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-CC-C2 +msgid "VAT Debt 21% Goods - Cocontractant" +msgstr "BTW schuld 21% goederen - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-CC +msgid "12% Cocontract. - Raw mat., consum. and goods for resale" +msgstr "12% Medecontract. - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-CC-C1 +msgid "VAT Deductible 12% Goods - Cocontractant" +msgstr "BTW aftrekbaar 12% goederen - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-CC-C2 +msgid "VAT Debt 12% Goods - Cocontractant" +msgstr "BTW schuld 12% goederen - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-CC +msgid "6% Cocontract. - Raw mat., consum. and goods for resale" +msgstr "6% Medecontract. - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-CC-C1 +msgid "VAT Deductible 6% Goods - Cocontractant" +msgstr "BTW aftrekbaar 6% goederen - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-CC-C2 +msgid "VAT Debt 6% Goods - Cocontractant" +msgstr "BTW schuld 6% goederen - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-00-CC +msgid "0% Cocontract. - Raw mat., consum. and goods for resale" +msgstr "BTW IN 0% Medecontract. - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-CC +msgid "21% Cocontract. - Services and other goods" +msgstr "21% Medecontract. - Diensten en diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-CC-C1 +msgid "VAT Deductible 21% Services - Cocontractant" +msgstr "BTW aftrekbaar 21% diensten - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-CC-C2 +msgid "VAT Debt 21% Services - Cocontractant" +msgstr "BTW schuld 21% diensten - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-CC +msgid "12% Cocontract. - Services and other goods" +msgstr "12% Medecontract. - Diensten en diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-CC-C1 +msgid "VAT Deductible 12% Services - Cocontractant" +msgstr "BTW aftrekbaar 12% diensten - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-CC-C2 +msgid "VAT Debt 12% Services - Cocontractant" +msgstr "BTW schuld 12% diensten - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-CC +msgid "6% Cocontract. - Services and other goods" +msgstr "6% Medecontract. - Diensten en diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-CC-C1 +msgid "VAT Deductible 6% Services - Cocontractant" +msgstr "BTW aftrekbaar 6% diensten - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-CC-C2 +msgid "VAT Debt 6% Services - Cocontractant" +msgstr "BTW schuld 6% diensten - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-00-CC +msgid "0% Cocontract. - Services and other goods" +msgstr "0% Medecontract. - Diensten en diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-CC +msgid "21% Cocontract. - Capital goods" +msgstr "21% Medecontract. - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-CC-C1 +msgid "VAT Deductible 21% Capital goods - Cocontractant" +msgstr "BTW aftrekbaar 21% bedrijfsmiddelen - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-CC-C2 +msgid "VAT Debt 21% Capital goods - Cocontractant" +msgstr "BTW schuld 21% bedrijfsmiddelen - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-CC +msgid "12% Cocontract. - Capital goods" +msgstr "12% Medecontract. - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-CC-C1 +msgid "VAT Deductible 12% Capital goods - Cocontractant" +msgstr "BTW aftrekbaar 12% bedrijfsmiddelen - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-CC-C2 +msgid "VAT Debt 12% Capital goods - Cocontractant" +msgstr "BTW schuld 12% bedrijfsmiddelen - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-CC +msgid "6% Cocontract. - Capital goods" +msgstr "6% Medecontract. - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-CC-C1 +msgid "VAT Deductible 6% Capital goods - Cocontractant" +msgstr "BTW aftrekbaar 6% bedrijfsmiddelen - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-CC-C2 +msgid "VAT Debt 6% Capital goods - Cocontractant" +msgstr "BTW schuld 6% bedrijfsmiddelen - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-00-CC +msgid "0% Cocontract. - Capital goods" +msgstr "0% Medecontract. - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-INC +msgid "Car Expenses - VAT 50% Deductible (Price Incl.)" +msgstr "Autokosten - BTW 50% aftrekbaar (Prijs incl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-INC +msgid "Car Expenses - VAT 35% Deductible (Price Incl.)" +msgstr "Autokosten - BTW 35% aftrekbaar (Prijs incl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-EXC +msgid "Car Expenses - VAT 50% Deductible (Price Excl.)" +msgstr "Autokosten - BTW 50% aftrekbaar (Prijs excl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-EXC-C1 +msgid "CAR50-EXC - VAT Non Deductible" +msgstr "CAR50-EXC - BTW niet aftrekbaar" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-EXC-C2 +msgid "CAR50-EXC - VAT Deductible" +msgstr "CAR50-EXC - BTW aftrekbaar" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-EXC +msgid "Car Expenses - VAT 35% Deductible (Price Excl.)" +msgstr "Autokosten - BTW 35% aftrekbaar (Prijs excl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-EXC-C1 +msgid "CAR35-EXC - VAT Non Deductible" +msgstr "CAR35-EXC - BTW niet aftrekbaar" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-EXC-C2 +msgid "CAR35-EXC - VAT Deductible" +msgstr "CAR35-EXC - BTW aftrekbaar" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-S +msgid "21% Intracomm. - Services for resale" +msgstr "21% Intracomm. - Diensten voor wederverkoop" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-S-C1 +msgid "VAT Deductible 21% Services for resale - Intracomm." +msgstr "BTW aftrekbaar 21% diensten voor wederverkoop - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-S-C2 +msgid "VAT Debt 21% Services for resale - Intracomm." +msgstr "BTW schuld 21% diensten voor wederverkoop - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-G +msgid "21% Intracomm. - Raw mat., consum. and goods for resale" +msgstr "21% Intracomm. - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-G-C1 +msgid "VAT Deductible 21% Goods for resale - Intracomm." +msgstr "BTW aftrekbaar 21% handelsgoederen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-G-C2 +msgid "VAT Debt 21% Goods for resale - Intracomm." +msgstr "BTW schuld 21% handelsgoederen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-EU +msgid "12% Intracomm. - Raw mat., consum. and goods for resale" +msgstr "12% Intracomm. - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-EU-C1 +msgid "VAT Deductible 12% Goods for resale - Intracomm." +msgstr "BTW aftrekbaar 12% handelsgoederen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-EU-C2 +msgid "VAT Debt 12% Goods for resale - Intracomm." +msgstr "BTW schuld 12% handelsgoederen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-EU +msgid "6% Intracomm. - Raw mat., consum. and goods for resale" +msgstr "6% Intracomm. - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-EU-C1 +msgid "VAT Deductible 6% Goods for resale - Intracomm." +msgstr "BTW aftrekbaar 6% handelsgoederen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-EU-C2 +msgid "VAT Debt 6% Goods for resale - Intracomm." +msgstr "BTW schuld 6% handelsgoederen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-00-EU +msgid "0% Intracomm. - Raw mat., consum. and goods for resale" +msgstr "0% Intracomm. - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-S +msgid "21% Intracomm. - Services" +msgstr "21% Intracomm. - Diensten" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-S-C1 +msgid "VAT Deductible 21% Services - Intracomm." +msgstr "BTW aftrekbaar 21% diensten - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-S-C2 +msgid "VAT Debt 21% Services - Intracomm." +msgstr "BTW schuld 21% diensten - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-G +msgid "21% Intracomm. - Other goods" +msgstr "21% Intracomm. - Diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-G-C1 +msgid "VAT Deductible 21% Other goods - Intracomm." +msgstr "BTW aftrekbaar 21% diverse goederen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-G-C2 +msgid "VAT Debt 21% Other goods - Intracomm." +msgstr "BTW schuld 21% diverse goederen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-S +msgid "12% Intracomm. - Services" +msgstr "12% Intracomm. - Diensten" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-S-C1 +msgid "VAT Deductible 12% Services - Intracomm." +msgstr "BTW aftrekbaar 12% diensten - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-S-C2 +msgid "VAT Debt 12% Services - Intracomm." +msgstr "BTW schuld 12% diensten - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-G +msgid "12% Intracomm. - Other goods" +msgstr "12% Intracomm. - Diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-G-C1 +msgid "VAT Deductible 12% Other goods - Intracomm." +msgstr "BTW aftrekbaar 12% diverse goederen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-G-C2 +msgid "VAT Debt 12% Other goods - Intracomm." +msgstr "BTW schuld 12% diverse goederen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-S +msgid "6% Intracomm. - Services" +msgstr "6% Intracomm. - Diensten" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-S-C1 +msgid "VAT Deductible 6% Services - Intracomm." +msgstr "BTW aftrekbaar 6% diensten - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-S-C2 +msgid "VAT Debt 6% Services - Intracomm." +msgstr "BTW schuld 6% diensten - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-G +msgid "6% Intracomm. - Other goods" +msgstr "6% Intracomm. - Diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-G-C1 +msgid "VAT Deductible 6% Other goods - Intracomm." +msgstr "BTW aftrekbaar 6% diverse goederen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-G-C2 +msgid "VAT Debt 6% Other goods - Intracomm." +msgstr "BTW schuld 6% diverse goederen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-00-EU-S +msgid "0% Intracomm. - Services" +msgstr "0% Intracomm. - Diensten" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-00-EU-G +msgid "0% Intracomm. - Other goods" +msgstr "0% Intracomm. - Diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-EU +msgid "21% Intracomm. - Capital goods" +msgstr "21% Intracomm. - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-EU-C1 +msgid "VAT Deductible 21% Capital goods - Intracomm." +msgstr "BTW aftrekbaar 21% bedrijfsmiddelen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-EU-C2 +msgid "VAT Debt 21% Capital goods - Intracomm." +msgstr "BTW schuld 21% bedrijfsmiddelen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-EU +msgid "12% Intracomm. - Capital goods" +msgstr "12% Intracomm. - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-EU-C1 +msgid "VAT Deductible 12% Capital goods - Intracomm." +msgstr "BTW aftrekbaar 12% bedrijfsmiddelen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-EU-C2 +msgid "VAT Debt 12% Capital goods - Intracomm." +msgstr "BTW schuld 12% bedrijfsmiddelen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-EU +msgid "6% Intracomm. - Capital goods" +msgstr "6% Intracomm. - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-EU-C1 +msgid "VAT Deductible 6% Capital goods - Intracomm." +msgstr "BTW aftrekbaar 6% bedrijfsmiddelen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-EU-C2 +msgid "VAT Debt 6% Capital goods - Intracomm." +msgstr "BTW schuld 6% bedrijfsmiddelen - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-00-EU +msgid "0% Intracomm. - Capital goods" +msgstr "0% Intracomm. - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-ROW-CC +msgid "21% Outside EU - Raw mat., consum. and goods for resale" +msgstr "21% Buiten EU - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-ROW-CC-C1 +msgid "VAT Deductible 21% Goods for resale - Outside EU" +msgstr "BTW aftrekbaar 21% handelsgoederen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-21-ROW-CC-C2 +msgid "VAT Debt 21% Goods for resale - Outside EU" +msgstr "BTW schuld 21% handelsgoederen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-ROW-CC +msgid "12% Outside EU - Raw mat., consum. and goods for resale" +msgstr "12% Buiten EU - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-ROW-CC-C1 +msgid "VAT Deductible 12% Goods for resale - Outside EU" +msgstr "BTW aftrekbaar 12% handelsgoederen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-12-ROW-CC-C2 +msgid "VAT Debt 12% Goods for resale - Outside EU" +msgstr "BTW schuld 12% handelsgoederen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-ROW-CC +msgid "6% Outside EU - Raw mat., consum. and goods for resale" +msgstr "6% Buiten EU - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-ROW-CC-C1 +msgid "VAT Deductible 6% Goods for resale - Outside EU" +msgstr "BTW aftrekbaar 6% handelsgoederen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-06-ROW-CC-C2 +msgid "VAT Debt 6% Goods for resale - Outside EU" +msgstr "BTW schuld 6% handelsgoederen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V81-00-ROW-CC +msgid "0% Outside EU - Raw mat., consum. and goods for resale" +msgstr "0% Buiten EU - Handelsgoed., grond- en hulpstoffen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-ROW-CC +msgid "21% Outside EU - Services and other goods" +msgstr "21% Buiten EU - Diensten en diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-ROW-CC-C1 +msgid "VAT Deductible 21% Services and other goods - Outside EU" +msgstr "BTW aftrekbaar 21% diensten en diverse goederen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-21-ROW-CC-C2 +msgid "VAT Debt 21% Services and other goods - Outside EU" +msgstr "BTW schuld 21% diensten en diverse goederen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-ROW-CC +msgid "12% Outside EU - Services and other goods" +msgstr "12% Buiten EU - Diensten en diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-ROW-CC-C1 +msgid "VAT Deductible 12% Services and other goods - Outside EU" +msgstr "BTW aftrekbaar 12% diensten en diverse goederen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-12-ROW-CC-C2 +msgid "VAT Debt 12% Services and other goods - Outside EU" +msgstr "BTW schuld 12% diensten en diverse goederen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-ROW-CC +msgid "6% Outside EU - Services and other goods" +msgstr "6% Buiten EU - Diensten en diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-ROW-CC-C1 +msgid "VAT Deductible 6% Services and other goods - Outside EU" +msgstr "BTW aftrekbaar 6% diensten en diverse goederen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-06-ROW-CC-C2 +msgid "VAT Debt 6% Services and other goods - Outside EU" +msgstr "BTW schuld 6% diensten en diverse goederen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V82-00-ROW-CC +msgid "0% Outside EU - Services and other goods" +msgstr "0% Buiten EU - Diensten en diverse goederen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-ROW-CC +msgid "21% Outside EU - Capital goods" +msgstr "21% Buiten EU - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-ROW-CC-C1 +msgid "VAT Deductible 21% Capital goods - Outside EU" +msgstr "BTW aftrekbaar 21% bedrijfsmiddelen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-21-ROW-CC-C2 +msgid "VAT Debt 21% Capital goods - Outside EU" +msgstr "BTW schuld 21% bedrijfsmiddelen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-ROW-CC +msgid "12% Outside EU - Capital goods" +msgstr "12% Buiten EU - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-ROW-CC-C1 +msgid "VAT Deductible 12% Capital goods - Outside EU" +msgstr "BTW aftrekbaar 12% bedrijfsmiddelen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-12-ROW-CC-C2 +msgid "VAT Debt 12% Capital goods - Outside EU" +msgstr "BTW schuld 12% bedrijfsmiddelen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-ROW-CC +msgid "6% Outside EU - Capital goods" +msgstr "6% Buiten EU - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-ROW-CC-C1 +msgid "VAT Deductible 6% Capital goods - Outside EU" +msgstr "BTW aftrekbaar 6% bedrijfsmiddelen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-06-ROW-CC-C2 +msgid "VAT Debt 6% Capital goods - Outside EU" +msgstr "BTW schuld 6% bedrijfsmiddelen - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-IN-V83-00-ROW-CC +msgid "0% Outside EU - Capital goods" +msgstr "0% Buiten EU - Bedrijfsmiddelen" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-V61 +msgid "VAT adjustments in favor of the Tax Authority" +msgstr "Diverse BTW regularisaties in het voordeel van de Staat" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-V62 +msgid "VAT adjustments in favor of the Declarant" +msgstr "Diverse BTW regularisaties in het voordeel van de aangever" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-V91 +msgid "Advance for Operations from December 1 to 20" +msgstr "Voorschot voor handelingen van 1 tot 20 december" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-V59 +msgid "VAT deductible case 59" +msgstr "BTW aftrekbaar vak 59" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,name:l10n_be_coa_multilang.attn_VAT-V82 +msgid "VAT base case 82" +msgstr "BTW MvH vak 59" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-OUT-21-CD2-S +msgid "21% - Cash Discount 2%" +msgstr "21% - Korting contant 2%" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-OUT-21-CD2-G +msgid "21% - Cash Discount 2%" +msgstr "21% - Korting contant 2%" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-CD2-S +msgid "21% - Cash Discount 2%" +msgstr "21% - Korting contant 2%" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-CC-C1 +msgid "VAT Deductible 21% - Cocontractant" +msgstr "BTW aftrekbaar 21% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-CC-C2 +msgid "VAT Debt 21% - Cocontractant" +msgstr "BTW schuld 21% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-12-CC-C1 +msgid "VAT Deductible 12% - Cocontractant" +msgstr "BTW aftrekbaar 12% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-12-CC-C2 +msgid "VAT Debt 12% - Cocontractant" +msgstr "BTW schuld 12% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-06-CC-C1 +msgid "VAT Deductible 6% - Cocontractant" +msgstr "BTW aftrekbaar 6% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-06-CC-C2 +msgid "VAT Debt 6% - Cocontractant" +msgstr "BTW schuld 6% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-CC-C1 +msgid "VAT Deductible 21% - Cocontractant" +msgstr "BTW aftrekbaar 21% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-CC-C2 +msgid "VAT Debt 21% - Cocontractant" +msgstr "BTW schuld 21% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-CC-C1 +msgid "VAT Deductible 12% - Cocontractant" +msgstr "BTW aftrekbaar 12% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-CC-C2 +msgid "VAT Debt 12% - Cocontractant" +msgstr "BTW schuld 12% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-CC-C1 +msgid "VAT Deductible 6% - Cocontractant" +msgstr "BTW aftrekbaar 6% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-CC-C2 +msgid "VAT Debt 6% - Cocontractant" +msgstr "BTW schuld 6% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-21-CC-C1 +msgid "VAT Deductible 21% - Cocontractant" +msgstr "BTW aftrekbaar 21% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-21-CC-C2 +msgid "VAT Debt 21% - Cocontractant" +msgstr "BTW schuld 21% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-12-CC-C1 +msgid "VAT Deductible 12% - Cocontractant" +msgstr "BTW aftrekbaar 12% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-12-CC-C2 +msgid "VAT Debt 12% - Cocontractant" +msgstr "BTW schuld 12% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-06-CC-C1 +msgid "VAT Deductible 6% - Cocontractant" +msgstr "BTW aftrekbaar 6% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-06-CC-C2 +msgid "VAT Debt 6% - Cocontractant" +msgstr "BTW schuld 6% - medecontractant" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-INC +msgid "Car Expenses - VAT 50% Deductible" +msgstr "Autokosten - BTW 50% aftrekbaar (Prijs excl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-INC +msgid "Car Expenses - VAT 35% Deductible" +msgstr "Autokosten - BTW 35% aftrekbaar (Prijs excl.)" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-EXC-C1 +msgid "CAR50-EXC - VAT Non Deductible" +msgstr "BTW 50% niet aftrekbaar" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-EXC-C2 +msgid "CAR50-EXC - VAT Deductible" +msgstr "BTW 50% aftrekbaar" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR50-EXC +msgid "Car Expenses - VAT 50% Deductible" +msgstr "Autokosten - BTW 50% aftrekbaar" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-EXC-C1 +msgid "CAR35-EXC - VAT Non Deductible" +msgstr "BTW 65% niet aftrekbaar" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-EXC-C2 +msgid "CAR35-EXC - VAT Deductible" +msgstr "BTW 35% aftrekbaar" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-CAR35-EXC +msgid "Car Expenses - VAT 35% Deductible" +msgstr "Autokosten - BTW 35% aftrekbaar" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-S-C1 +msgid "VAT Deductible 21% - Intracomm." +msgstr "BTW aftrekbaar 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-S-C2 +msgid "VAT Debt 21% - Intracomm." +msgstr "BTW schuld 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-G-C1 +msgid "VAT Deductible 21% - Intracomm." +msgstr "BTW aftrekbaar 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-EU-G-C2 +msgid "VAT Debt 21% - Intracomm." +msgstr "BTW schuld 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-12-EU-C1 +msgid "VAT Deductible 12% - Intracomm." +msgstr "BTW aftrekbaar 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-12-EU-C2 +msgid "VAT Debt 12% - Intracomm." +msgstr "BTW schuld 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-06-EU-C1 +msgid "VAT Deductible 6% - Intracomm." +msgstr "BTW aftrekbaar 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-06-EU-C2 +msgid "VAT Debt 6% - Intracomm." +msgstr "BTW schuld 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-S-C1 +msgid "VAT Deductible 21% - Intracomm." +msgstr "BTW aftrekbaar 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-S-C2 +msgid "VAT Debt 21% - Intracomm." +msgstr "BTW schuld 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-G-C1 +msgid "VAT Deductible 21% - Intracomm." +msgstr "BTW aftrekbaar 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-EU-G-C2 +msgid "VAT Debt 21% - Intracomm." +msgstr "BTW schuld 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-S-C1 +msgid "VAT Deductible 12% - Intracomm." +msgstr "BTW aftrekbaar 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-S-C2 +msgid "VAT Debt 12% - Intracomm." +msgstr "BTW schuld 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-G-C1 +msgid "VAT Deductible 12% - Intracomm." +msgstr "BTW aftrekbaar 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-EU-G-C2 +msgid "VAT Debt 12% - Intracomm." +msgstr "BTW schuld 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-S-C1 +msgid "VAT Deductible 6% - Intracomm." +msgstr "BTW aftrekbaar 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-S-C2 +msgid "VAT Debt 6% - Intracomm." +msgstr "BTW schuld 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-G-C1 +msgid "VAT Deductible 6% - Intracomm." +msgstr "BTW aftrekbaar 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-EU-G-C2 +msgid "VAT Debt 6% - Intracomm." +msgstr "BTW schuld 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-21-EU-C1 +msgid "VAT Deductible 21% - Intracomm." +msgstr "BTW aftrekbaar 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-21-EU-C2 +msgid "VAT Debt 21% - Intracomm." +msgstr "BTW schuld 21% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-12-EU-C1 +msgid "VAT Deductible 12% - Intracomm." +msgstr "BTW aftrekbaar 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-12-EU-C2 +msgid "VAT Debt 12% - Intracomm." +msgstr "BTW schuld 12% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-06-EU-C1 +msgid "VAT Deductible 6% - Intracomm." +msgstr "BTW aftrekbaar 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-06-EU-C2 +msgid "VAT Debt 6% - Intracomm." +msgstr "BTW schuld 6% - Intracomm." + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-ROW-CC-C1 +msgid "VAT Deductible 21% - Outside EU" +msgstr "BTW aftrekbaar 21% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-ROW-CC-C2 +msgid "VAT Debt 21% - Outside EU" +msgstr "BTW schuld 21% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-21-ROW-CC +msgid "21% Outside EU" +msgstr "21% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-12-ROW-CC-C1 +msgid "VAT Deductible 12% - Outside EU" +msgstr "BTW aftrekbaar 12% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-12-ROW-CC-C2 +msgid "VAT Debt 12% - Outside EU" +msgstr "BTW schuld 12% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-12-ROW-CC +msgid "12% Outside EU" +msgstr "12% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-06-ROW-CC-C1 +msgid "VAT Deductible 6% - Outside EU" +msgstr "BTW aftrekbaar 6% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-06-ROW-CC-C2 +msgid "VAT Debt 6% - Outside EU" +msgstr "BTW schuld 6% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-06-ROW-CC +msgid "6% Outside EU" +msgstr "6% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V81-00-ROW-CC +msgid "0% Outside EU" +msgstr "0% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-ROW-CC-C1 +msgid "VAT Deductible 21% - Outside EU" +msgstr "BTW aftrekbaar 21% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-ROW-CC-C2 +msgid "VAT Debt 21% - Outside EU" +msgstr "BTW schuld 21% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-21-ROW-CC +msgid "21% Outside EU" +msgstr "21% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-ROW-CC-C1 +msgid "VAT Deductible 12% - Outside EU" +msgstr "BTW aftrekbaar 12% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-ROW-CC-C2 +msgid "VAT Debt 12% - Outside EU" +msgstr "BTW schuld 12% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-12-ROW-CC +msgid "12% Outside EU" +msgstr "12% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-ROW-CC-C1 +msgid "VAT Deductible 6% - Outside EU" +msgstr "BTW aftrekbaar 6% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-ROW-CC-C2 +msgid "VAT Debt 6% - Outside EU" +msgstr "BTW schuld 6% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-06-ROW-CC +msgid "6% Outside EU" +msgstr "6% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V82-00-ROW-CC +msgid "0% Outside EU" +msgstr "0% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-21-ROW-CC-C1 +msgid "VAT Deductible 21% - Outside EU" +msgstr "BTW aftrekbaar 21% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-21-ROW-CC-C2 +msgid "VAT Debt 21% - Outside EU" +msgstr "BTW schuld 21% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-21-ROW-CC +msgid "21% Outside EU" +msgstr "21% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-12-ROW-CC-C1 +msgid "VAT Deductible 12% - Outside EU" +msgstr "BTW aftrekbaar 12% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-12-ROW-CC-C2 +msgid "VAT Debt 12% - Outside EU" +msgstr "BTW schuld 12% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-12-ROW-CC +msgid "12% Outside EU" +msgstr "12% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-06-ROW-CC-C1 +msgid "VAT Deductible 6% - Outside EU" +msgstr "BTW aftrekbaar 6% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-06-ROW-CC-C2 +msgid "VAT Debt 6% - Outside EU" +msgstr "BTW schuld 6% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-06-ROW-CC +msgid "6% Outside EU" +msgstr "6% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-IN-V83-00-ROW-CC +msgid "0% Outside EU" +msgstr "0% - Buiten EU" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-V61 +msgid "VAT adjustments in favor of the Tax Authority" +msgstr "Diverse BTW regularisaties in het voordeel van de Staat" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-V62 +msgid "VAT adjustments in favor of the Declarant" +msgstr "Diverse BTW regularisaties in het voordeel van de aangever" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-V91 +msgid "Advance for Operations from December 1 to 20" +msgstr "Voorschot voor handelingen van 1 tot 20 december" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-V59 +msgid "VAT deductible case 59" +msgstr "BTW aftrekbaar vak 59" + +#. module: l10n_be_coa_multilang +#: model:account.tax.template,description:l10n_be_coa_multilang.attn_VAT-V82 +msgid "VAT base case 82" +msgstr "BTW MvH vak 59" + diff --git a/l10n_be_coa_multilang/migrations/10.0.0.9/post-migration.py b/l10n_be_coa_multilang/migrations/10.0.0.9/post-migration.py new file mode 100644 index 00000000..523567ad --- /dev/null +++ b/l10n_be_coa_multilang/migrations/10.0.0.9/post-migration.py @@ -0,0 +1,49 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import logging + +_logger = logging.getLogger(__name__) +_logger.setLevel(logging.DEBUG) + + +def migrate(cr, version): + """ + Update account_tax_names. + """ + cr.execute( + "SELECT id, description, name FROM account_tax " + "WHERE description LIKE 'VAT-%' " + "ORDER BY sequence DESC") + at_codes = cr.fetchall() + for at_id, at_code, at_name in at_codes: + imd_name = 'attn_%s' % at_code + imd_name = imd_name.replace('-L', '-G') + cr.execute( + "SELECT res_id FROM ir_model_data " + "WHERE module = 'l10n_be_coa_multilang' " + "AND model = 'account.tax.template' " + "AND name = %s", + (imd_name,)) + res_id = cr.fetchone() + if res_id: + cr.execute( + "SELECT att.name FROM account_tax_template att " + "WHERE id = %s", + (res_id[0],)) + att_name = cr.fetchone()[0] + else: + continue + if att_name != at_name: + _logger.warn( + "updating account.tax,%s with name '%s'", + at_id, att_name) + try: + with cr.savepoint(): + cr.execute( + "UPDATE account_tax SET name = %s " + "WHERE id = %s", (att_name, at_id)) + except Exception: + _logger.error( + "Update of account.tax,%s with name '%s' failed.", + at_id, att_name) diff --git a/l10n_be_coa_multilang/migrations/10.0.0.9/pre-migration.py b/l10n_be_coa_multilang/migrations/10.0.0.9/pre-migration.py new file mode 100644 index 00000000..004ba5cd --- /dev/null +++ b/l10n_be_coa_multilang/migrations/10.0.0.9/pre-migration.py @@ -0,0 +1,145 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import logging + +from odoo.exceptions import UserError + +_logger = logging.getLogger(__name__) +_logger.setLevel(logging.DEBUG) + + +def remove_data(cr, module, model): + """ + remove trailing 'l10n_be' templates and xml ids. + """ + cr.execute( + "SELECT id, res_id FROM ir_model_data " + "WHERE module=%s AND model=%s", + (module, model)) + res = cr.fetchall() + if res: + res_ids = tuple([x[1] for x in res]) + table = model.replace('.', '_') + query = "DELETE FROM %s WHERE id IN %%s" % table + cr.execute(query, (res_ids,)) + imd_ids = tuple([x[0] for x in res]) + cr.execute( + "DELETE from ir_model_data " + "WHERE id IN %s", (imd_ids,)) + + +def update_ir_model_data(cr, module, model): + """ + Ensure that templates will be updated by module upgrade. + """ + cr.execute( + "SELECT id FROM ir_model_data " + "WHERE module=%s AND model=%s AND noupdate=True", + (module, model)) + res = cr.fetchall() + if res: + res_ids = tuple([x[0] for x in res]) + cr.execute( + "UPDATE ir_model_data SET noupdate = False " + "WHERE id IN %s", (res_ids,)) + + +def migrate(cr, version): + """ + l10n_be_coa_multilang installation fails if there are still + some trailing account templates from l10n_be. + We therefor need to remove those first. + """ + module = 'l10n_be' + # check l10n_be status + # (V6 version of l10n_be_coa_multilang had l10n_be dependenct) + cr.execute( + "SELECT state FROM ir_module_module " + "WHERE name = %s and state = 'installed'", + (module,)) + res = cr.fetchone() + if res: + raise UserError( + "Installation of module 'l10n_be_coa_multilang failed.\n" + "You need uninstall '%s' first" % module) + + # check if there are still some trailing account templates + # from l10n_be and delete them. + models = [ + 'account.tax.code.template', + 'account.fiscal.position.tax.template', + 'account.fiscal.position.account.template', + 'account.fiscal.position.template', + 'account.tax.template', + 'account.account.template', + 'account.chart.template', + ] + for model in models: + remove_data(cr, module, model) + + module = 'l10n_be_coa_multilang' + for model in models: + update_ir_model_data(cr, module, model) + + # make old account_tax_template names unique + model = 'account.tax.template' + cr.execute( + "SELECT res_id FROM ir_model_data " + "WHERE module=%s AND model=%s", + (module, model)) + res = cr.fetchall() + att_ids = [x[0] for x in res] + cr.execute( + "UPDATE account_tax_template " + "SET name = to_char(id, 'FM999') " + "WHERE id IN %s", + (tuple(att_ids),)) + + # add transfer_account_id to account_chart_template + name = 'aatn_580000' + cr.execute( + "SELECT res_id FROM ir_model_data " + "WHERE module=%s AND name=%s", + (module, name)) + res = cr.fetchone() + aatn_580000_id = res and res[0] + name = 'l10n_be_coa_multilang_template' + cr.execute( + "SELECT res_id FROM ir_model_data " + "WHERE module = %s AND name = %s", + (module, name)) + res = cr.fetchone() + chart_id = res and res[0] + cr.execute( + "UPDATE account_chart_template " + "SET transfer_account_id=%s " + "WHERE id=%s", + (aatn_580000_id, chart_id)) + + # remove old be_legal_financial_reportscheme entries + model = 'be.legal.financial.reportscheme' + cr.execute( + "SELECT res_id FROM ir_model_data " + "WHERE module=%s AND model=%s", + (module, model)) + res = cr.fetchall() + scheme_ids = [x[0] for x in res] + cr.execute( + "DELETE FROM be_legal_financial_reportscheme " + "WHERE id IN %s", + (tuple(scheme_ids),)) + + # remove old setup wizard view + model = 'ir.ui.view' + name = 'view_wizard_multi_chart_belgian_coa' + cr.execute( + "SELECT res_id FROM ir_model_data " + "WHERE module=%s AND model=%s AND name=%s", + (module, model, name)) + res = cr.fetchone() + view_id = res and res[0] + cr.execute( + "DELETE FROM ir_ui_view " + "WHERE id = %s", + (view_id,)) diff --git a/l10n_be_coa_multilang/models/__init__.py b/l10n_be_coa_multilang/models/__init__.py new file mode 100644 index 00000000..dd90420f --- /dev/null +++ b/l10n_be_coa_multilang/models/__init__.py @@ -0,0 +1,8 @@ +from . import account_account +from . import account_chart_template +from . import account_financial_report +from . import account_tax_code_chart +from . import be_legal_financial_reportscheme +from . import res_config_settings +from . import res_config +from . import res_partner diff --git a/l10n_be_coa_multilang/models/account_account.py b/l10n_be_coa_multilang/models/account_account.py new file mode 100644 index 00000000..ea035872 --- /dev/null +++ b/l10n_be_coa_multilang/models/account_account.py @@ -0,0 +1,103 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models, _ +from openerp.exceptions import UserError + + +class AccountAccount(models.Model): + _inherit = 'account.account' + + financial_report_ids = fields.Many2many( + comodel_name='account.financial.report', + relation='account_account_financial_report', + column1='account_id', + column2='report_line_id', + string='Financial Reports') + + @api.onchange('code') + def _onchange_code(self): + countries = self._get_be_scheme_countries() + if self.code and \ + self.company_id.country_id.code in countries: + update = [] + if self._origin.code: + old = self._get_be_reportscheme_tag(self._origin.code) + if old.report_id: + update.append((3, old.report_id.id)) + new = self._get_be_reportscheme_tag(self.code) + if new.report_id: + update.append((4, new.report_id.id)) + if update: + self.financial_report_ids = update + self.user_type_id = new.account_type_id + if hasattr(super(AccountAccount, self), '_onchange_code'): + super(AccountAccount, self)._onchange_code() + + @api.model + def search(self, args, offset=0, limit=None, order=None, count=False): + """ improve performance of _update_be_reportscheme method """ + if self.env.context.get('update_be_reportscheme'): + be_companies = self.env['res.company'].search([]).filtered( + lambda r: r.country_id.code in self._get_be_scheme_countries() + ) + args += [('company_id', 'in', [x.id for x in be_companies])] + return super(AccountAccount, self).search( + args, offset=offset, limit=limit, order=order, count=count) + + @api.model + def create(self, vals): + company_id = vals.get('company_id') + if company_id: + company = self.env['res.company'].browse(vals['company_id']) + else: + company = self.env[ + 'res.company']._company_default_get('account.account') + if company.country_id.code in self._get_be_scheme_countries(): + scheme_tag = self._get_be_reportscheme_tag(vals.get('code', '')) + if scheme_tag: + if scheme_tag.report_id: + vals['financial_report_ids'] = [ + (4, scheme_tag.report_id.id)] + if not vals.get('user_type_id'): + vals['user_type_id'] = scheme_tag.account_type_id.id + return super(AccountAccount, self).create(vals) + + @api.multi + def write(self, vals): + if 'code' in vals: + if len(self) == 1 and vals.get('code') != self.code: + company = vals.get('company_id') \ + and self.env['res.company'].browse(vals['company_id']) \ + or self.company_id + if company.country_id.code in self._get_be_scheme_countries(): + update = [] + old = self._get_be_reportscheme_tag(self.code) + if old.report_id: + update.append((3, old.report_id.id)) + new = self._get_be_reportscheme_tag(vals.get('code', '')) + if new.report_id: + update.append((4, new.report_id.id)) + if update: + vals['financial_report_ids'] = vals.get( + 'financial_report_ids', []) + vals['financial_report_ids'].append(update) + return super(AccountAccount, self).write(vals) + + def _get_be_scheme_countries(self): + """ + Use this method to extend the list of countries for which you want to + use the Belgian BNB scheme for financial reporting purposes. + """ + return ['BE'] + + def _get_be_reportscheme_tag(self, code): + scheme_tags = self.env[ + 'be.legal.financial.reportscheme'].search([]) + scheme_tag = scheme_tags.filtered( + lambda r: r.account_group == code[0:len(r.account_group)]) + if len(scheme_tag) > 1: + raise UserError( + _("Configuration Error in the " + "Belgian Legal Financial Report Scheme.")) + return scheme_tag diff --git a/l10n_be_coa_multilang/models/account_chart_template.py b/l10n_be_coa_multilang/models/account_chart_template.py new file mode 100644 index 00000000..8a152290 --- /dev/null +++ b/l10n_be_coa_multilang/models/account_chart_template.py @@ -0,0 +1,12 @@ +# Copyright 2009-2017 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from openerp import fields, models + + +class account_chart_template(models.Model): + _inherit = 'account.chart.template' + _order = 'name' + + name = fields.Char(translate=True) + l10n_be_coa_multilang = fields.Boolean(string='Multilang Belgian CoA') diff --git a/l10n_be_coa_multilang/models/account_financial_report.py b/l10n_be_coa_multilang/models/account_financial_report.py new file mode 100644 index 00000000..e081be73 --- /dev/null +++ b/l10n_be_coa_multilang/models/account_financial_report.py @@ -0,0 +1,42 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class AccountFinancialReport(models.Model): + _inherit = 'account.financial.report' + + code = fields.Char(size=16) + invisible = fields.Boolean( + help="Hide this entry from the printed report.") + + def _convert_to_cache(self, values, update=False, validate=True): + """ + The 'report.account.report_financial, get_account_lines' method + does not allow to include extra fields in list of returned + value dicts. + We bypass this limitation by adding the 'code' to the 'name' + field for the belgian reports. + + TODO: + make PR to add an '_update_account_lines' method into the + get_account_lines method so that this code can be replaced + by a cleaner solution. + """ + res = super(AccountFinancialReport, self)._convert_to_cache( + values, update=update, validate=validate) + if self.env.context.get('add_code_to_name') \ + and res.get('code') and res.get('name'): + res['name'] += ' - (' + res['code'] + ')' + return res + + def _get_children_by_order(self): + if self.env.context.get('get_children_by_sequence'): + res = self.search( + [('id', 'child_of', self.ids[0]), ('invisible', '=', 0)], + order='sequence ASC') + else: + res = super( + AccountFinancialReport, self)._get_children_by_order() + return res diff --git a/l10n_be_coa_multilang/models/account_tax_code_chart.py b/l10n_be_coa_multilang/models/account_tax_code_chart.py new file mode 100644 index 00000000..4da9eef4 --- /dev/null +++ b/l10n_be_coa_multilang/models/account_tax_code_chart.py @@ -0,0 +1,67 @@ +# Copyright 2009-2017 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models + + +class AccountTaxCodeChart(models.Model): + """ + TODO: move to separate module. + """ + _name = 'account.tax.code.chart' + _description = 'Tax Tag Code Chart' + _order = 'sequence, code' + + name = fields.Char( + required=True, translate=True) + code = fields.Char() + info = fields.Text() + parent_id = fields.Many2one( + comodel_name='account.tax.code.chart', + string='Parent Code', index=True) + child_ids = fields.One2many( + comodel_name='account.tax.code.chart', + inverse_name='parent_id', + string='Child Codes') + country_id = fields.Many2one( + string='Country', + comodel_name='res.country', + help="Country for which this Chart is used") + factor = fields.Float( + string='Parent Coefficient', + required=True, + help='You can specify here the coefficient ' + 'that will be used when consolidating ' + 'the amount of this case into its parent. ' + 'For example, set 1/-1 if you want to add/substract it.') + invisible = fields.Boolean( + help="Hide this entry from the report.") + color = fields.Char( + help="CSS color unit") + font = fields.Selection( + selection=lambda self: self._selection_fonts()) + sequence = fields.Integer(default=0) + + @api.model + def _selection_fonts(self): + return [ + ('b', 'bold'), + ('i', 'italic'), + ('u', 'underline'), + ('bi', 'bold-italic'), + ('bu', 'bold-underline'), + ('iu', 'italic-underline'), + ('biu', 'bold-italic-underline'), + ] + + @api.multi + @api.depends('name', 'code') + def name_get(self): + result = [] + for case in self: + if case.code: + name = ' - '.join([case.code, case.name]) + else: + name = case.name + result.append((case.id, name)) + return result diff --git a/l10n_be_coa_multilang/models/be_legal_financial_reportscheme.py b/l10n_be_coa_multilang/models/be_legal_financial_reportscheme.py new file mode 100644 index 00000000..2ba8b9b7 --- /dev/null +++ b/l10n_be_coa_multilang/models/be_legal_financial_reportscheme.py @@ -0,0 +1,30 @@ +# Copyright 2009-2017 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class BeLegalFinancialReportscheme(models.Model): + _name = 'be.legal.financial.reportscheme' + _description = 'Belgian Legal Financial Report Scheme (Full)' + _rec_name = 'account_group' + _order = 'account_group' + + account_group = fields.Char( + string='Group', size=4, + help='General Account Starting Digits') + account_type_id = fields.Many2one( + comodel_name='account.account.type', + string='Account Type', + required=True) + report_id = fields.Many2one( + comodel_name='account.financial.report', + string='Report Entry', + ondelete='cascade') + account_ids = fields.Many2many( + related='report_id.account_ids', + string='Accounts', readonly=True) + + _sql_constraints = [ + ('group_uniq', 'unique (account_group)', + 'The General Account Group must be unique !')] diff --git a/l10n_be_coa_multilang/models/be_tax_reportscheme.py b/l10n_be_coa_multilang/models/be_tax_reportscheme.py new file mode 100644 index 00000000..2ba8b9b7 --- /dev/null +++ b/l10n_be_coa_multilang/models/be_tax_reportscheme.py @@ -0,0 +1,30 @@ +# Copyright 2009-2017 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class BeLegalFinancialReportscheme(models.Model): + _name = 'be.legal.financial.reportscheme' + _description = 'Belgian Legal Financial Report Scheme (Full)' + _rec_name = 'account_group' + _order = 'account_group' + + account_group = fields.Char( + string='Group', size=4, + help='General Account Starting Digits') + account_type_id = fields.Many2one( + comodel_name='account.account.type', + string='Account Type', + required=True) + report_id = fields.Many2one( + comodel_name='account.financial.report', + string='Report Entry', + ondelete='cascade') + account_ids = fields.Many2many( + related='report_id.account_ids', + string='Accounts', readonly=True) + + _sql_constraints = [ + ('group_uniq', 'unique (account_group)', + 'The General Account Group must be unique !')] diff --git a/l10n_be_coa_multilang/models/res_config.py b/l10n_be_coa_multilang/models/res_config.py new file mode 100644 index 00000000..85016118 --- /dev/null +++ b/l10n_be_coa_multilang/models/res_config.py @@ -0,0 +1,24 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models + + +class ResConfig(models.TransientModel): + _inherit = 'res.config' + + def _next(self): + """ + pass context values received from res.config.settings + wizard to the todo action. + """ + res = super(ResConfig, self)._next() + if (self.env.context.get('chart_next_action') + == 'account.action_wizard_multi_chart') \ + and self.env.context.get('chart_template_id'): + ctx = res.get('context', {}) + ctx['chart_template_id'] = self.env.context['chart_template_id'] + ctx['chart_company_id'] = self.env.context['chart_company_id'] + ctx['default_charts'] = self.env.context['default_charts'], + res['context'] = ctx + return res diff --git a/l10n_be_coa_multilang/models/res_config_settings.py b/l10n_be_coa_multilang/models/res_config_settings.py new file mode 100644 index 00000000..2a773625 --- /dev/null +++ b/l10n_be_coa_multilang/models/res_config_settings.py @@ -0,0 +1,36 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, models, _ +from odoo.exceptions import UserError + + +class ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + @api.multi + def execute(self): + """ + Relaunch the account chart setup wizard for multi-company setups + """ + ctx = self.env.context.copy() + if self.chart_template_id \ + and self.chart_template_id.l10n_be_coa_multilang: + module = 'l10n_be_coa_multilang' + todo = 'l10n_be_coa_multilang_config_action_todo' + todo = self.env.ref('%s.%s' % (module, todo)) + if todo.state == 'done': + todo.state = 'open' + ctx.update({ + 'default_charts': 'l10n_be_coa_multilang', + }) + # The default_get of the standard accounting setup wizard assumes that + # the user's default company is equal to the company selected in the + # settings but doesn't check which may give wrong results. + # We therefor have added this check here. + # TODO: make PR on https://github.com/odoo/odoo + if self.company_id != self.env.user.company_id: + raise UserError(_( + "Your 'Current Company' must be set to '%s' !") + % self.company_id.name) + return super(ResConfigSettings, self.with_context(ctx)).execute() diff --git a/l10n_be_coa_multilang/models/res_partner.py b/l10n_be_coa_multilang/models/res_partner.py new file mode 100644 index 00000000..b72755bd --- /dev/null +++ b/l10n_be_coa_multilang/models/res_partner.py @@ -0,0 +1,33 @@ +# Copyright 2009-2017 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models + + +class ResPartner(models.Model): + """ + FODFIN Notice 725: + All customers with Belgian VAT number must be included in the annual + VAT Listing, except those with only operations according article 44 + of the VAT lawbook (reported via tax code 00). + You should uncheck the 'vat_subjected' flag for those customers. + """ + _inherit = 'res.partner' + + vat_subjected = fields.Boolean( + string='VAT Subjected', + default=lambda self: self._default_vat_subjected(), + help="Uncheck this flag to exclude this partner from certain " + "VAT declarations (e.g. the Belgian Annual Listing of " + "VAT subjected Customers).") + + @api.model + def _default_vat_subjected(self): + if self.company_type == 'company': + self.vat_subjected == self.vat and True or False + + @api.onchange('vat') + def _onchange_vat(self): + self.vat_subjected = self.vat and True or False + if hasattr(super(ResPartner, self), '_onchange_vat'): + super(ResPartner, self)._onchange_vat() diff --git a/l10n_be_coa_multilang/report/__init__.py b/l10n_be_coa_multilang/report/__init__.py new file mode 100644 index 00000000..d8f6dbe6 --- /dev/null +++ b/l10n_be_coa_multilang/report/__init__.py @@ -0,0 +1 @@ +from . import report_account_report_financial diff --git a/l10n_be_coa_multilang/report/report_account_report_financial.py b/l10n_be_coa_multilang/report/report_account_report_financial.py new file mode 100644 index 00000000..9731a75a --- /dev/null +++ b/l10n_be_coa_multilang/report/report_account_report_financial.py @@ -0,0 +1,21 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models + + +class ReportAccountReportFinancial(models.AbstractModel): + _inherit = 'report.account.report_financial' + + def get_account_lines(self, data): + ctx = self.env.context.copy() + if 'used_context' in data \ + and data['used_context'].get('get_children_by_sequence'): + ctx.update({ + 'get_children_by_sequence': True, + 'add_code_to_name': True, + }) + lines = super( + ReportAccountReportFinancial, self.with_context(ctx) + ).get_account_lines(data) + return lines diff --git a/l10n_be_coa_multilang/schemas/IntervatInputCommon_v0_9.xsd b/l10n_be_coa_multilang/schemas/IntervatInputCommon_v0_9.xsd new file mode 100644 index 00000000..dbf9ec28 --- /dev/null +++ b/l10n_be_coa_multilang/schemas/IntervatInputCommon_v0_9.xsd @@ -0,0 +1,843 @@ + + + + + + + import commonTypes_v1.xsd and add the phoneNumber to the Representative_Type + 1.2 => Import definition ProRataPercentage_Type, SpecialProRataPercentage_Type and SpecialProRataGridNumberCode]]> + + + + + + Mandataire d'un envoi de type TVA, listing clients, relevé intracommunautaire, déclaration spéciale 629 ou MTN. + + + + + Identifiant du mandataire + Identificatie van de gevolmachtigde + Kennung des Bevollmächtigten + + + + + Nom + Naam + Name + + + + + Rue et numéro + Straat en nummer + Straße + + + + + Code postal + Postcode + Postleitzahl + + + + + Localité + Gemeente + Ortschaft + + + + + Pays de l'adresse + Land van het adres + Land + + + + + Adresse e-mail + E-mail adres + E-Mail-Adresse + + + + + Numéro de téléphone + Telefoon nummer + Telefoon nummer + + + + + + + + + + Etat membre qui a attribué l'identifiant + Lidstaat die de identificatie heeft toegekend + Mitgliedstaat, der die Kennung zuerkannt hat + + + + + Type d'identifiant (NVAT, TIN, other) + Identificatietype (NVAT, TIN, other) + Kennungstyp (NVAT, TIN, other) + + + + + Description d'un type d'identifiant 'other' + Omschrijving van een identificatie van het type 'other' + Beschreibung eines Kennungstyps 'other' + + + + + + + + Déclarant d'un envoi de type TVA, listing clients, relevé intracommunautaire. + + + + + Numéro de TVA de l'assujetti (numéro de TVA belge sans "BE") + Btw-nummer van de belastingplichtige + MwSt.-Nr. des Steuerpflichtigen + + + + + Nom + Naam + Name + + + + + Rue et numéro + Straat en nummer + Straße + + + + + Code postal + Postcode + Postleitzahl + + + + + Localité + Gemeente + Ortschaft + + + + + Pays de l'adresse + Land van het adres + Land + + + + + Adresse e-mail + E-mail adres + E-Mail-Adresse + + + + + Numéro de téléphone + Telefoon nummer + Telefoon nummer + + + + + + + Déclarant d'un envoi de type MTN. + + + + + Numéro de TVA de l'assujetti (numéro de TVA belge sans "BE") + Btw-nummer van de belastingplichtige + MwSt.-Nr. des Steuerpflichtigen + + + + + Nom + Naam + Name + + + + + Rue et numéro + Straat en nummer + Straße + + + + + Code postal + Postcode + Postleitzahl + + + + + Localité + Gemeente + Ortschaft + + + + + Pays de l'adresse + Land van het adres + Land + + + + + Adresse e-mail + E-mail adres + E-Mail-Adresse + + + + + Numéro de téléphone + Telefoon nummer + Telefoon nummer + + + + + + + Déclarant d'un envoi de type déclaration spéciale 629, VATRefund ou modification du prorata VATRefund (pays de l'adresse en Belgique). + + + + + Numéro de TVA de l'assujetti (numéro de TVA belge sans "BE") + Btw-nummer van de belastingplichtige + MwSt.-Nr. des Steuerpflichtigen + + + + + Nom + Naam + Name + + + + + Rue et numéro + Straat en nummer + Straße + + + + + Code postal + Postcode + Postleitzahl + + + + + Localité + Gemeente + Ortschaft + + + + + Pays de l'adresse (BE) + Land van het adres (BE) + Land (BE) + + + + + Adresse email + E-mail adres + E-Mail-Adresse + + + + + Numéro de téléphone + Telefoon nummer + Telefoon nummer + + + + + + + + + Type de l'annexe + Type van de bijlage + Typ der Anlage + + + + + Nom du fichier (=nom du fichier dans le fichier zip qui inclut ce message et ses annexes) + Naam van het bestand (= naam van het bestand in het zip-bestand dat dit bericht en zijn bijlagen bevat) + Name der Datei (= Name der Datei in der Zip-Datei, die diese Mitteilung und ihre Anlagen enthält) + + + + + Information supplémentaire sur le fichier + Aanvullende informatie over het bestand + Zusätzliche Information über die Datei + + + + + + + Information contenant UNE justification + Aanvullende justificatie + Zusätzliche Information + + + + + Le commentaire justificatif + a faire + a faire + + + + + + + + + + + + + + + + Période à laquelle se rapporte le prorata (année complète, format YYYY) + Periode waarop het verhoudingsgetal slaat (volledig jaar, formaat YYYY) + Zeitraum Pro-rata + + + + + + Prorata définitif pour cette période (entier entre 1 et 100) + Definitieve prorata voor deze periode (geheel getal tussen 1 en 100) + Endgültiger Pro-rata-Satz für diesen Zeitraum (ganze Zahl zwischen 1 und 100) + + + + + Bijzondere verhoudingsgetal + ProRata Particulier + + + + + + + + + + Aangeven van een eventueel bijzonder verhoudingsgetal (uitgedrukt in percentage zonder komma) + déclarer eventuellement un prorata particulier (pourcentage sans virgule) + + + + + + + Rooster met daarin een bijzonder verhoudingsgetal (uitgedrukt in percentage zonder komma) + La case qui contient un prorata particulier (pourcentage sans virgule) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + An email address + + + + + A regular expression for email addresses. + Matches something@someserver.com, firstname.lastname@mailserver.domain.com, + username-something@some-server.tld + + + + + + + + + + + + + + + + + + + Le prorata particulier déclaré en grille B1 + Bijzonder verhoudingsgetal in rooster B1 + + + + + Le prorata particulier déclaré en grille B2 + Bijzonder verhoudingsgetal in rooster B2 + + + + + Le prorata particulier déclaré en grille B3 + Bijzonder verhoudingsgetal in rooster B3 + + + + + Le prorata particulier déclaré en grille B4 + Bijzonder verhoudingsgetal in rooster B4 + + + + + Le prorata particulier déclaré en grille B5 + Bijzonder verhoudingsgetal in rooster B5 + + + + + + + + Mandataire d'un envoi de type VATRefund ou modification du prorata VATRefund (pays de l'adresse limité aux Etats Membres) + + + + + Identifiant du mandataire + Identificatie van de gevolmachtigde + Kennung des Bevollmächtigten + + + + + Nom + Naam + Name + + + + + Rue et numéro + Straat en nummer + Straße + + + + + Code postal + Postcode + Postleitzahl + + + + + Localité + Gemeente + Ortschaft + + + + + Pays de l'adresse + Land van het adres + Land + + + + + Adresse e-mail + E-mail adres + E-Mail-Adresse + + + + + Numéro de téléphone + Telefoon nummer + Telefoon nummer + + + + + + + + + Numéro de TVA de l'assujetti + Btw-nummer van de belastingplichtige + MwSt.-Nr. des Steuerpflichtigen + + + + + Nom + Naam + Name + + + + + Rue et numéro + Straat en nummer + Straße + + + + + Code postal + Postcode + Postleitzahl + + + + + Localité + Gemeente + Ortschaft + + + + + Pays de l'adresse + Land van het adres + Land + + + + + Adresse e-mail + E-mail adres + E-Mail-Adresse + + + + + Numéro de téléphone + Telefoon nummer + Telefoon nummer + + + + + + + + + + + Identifiant du mandataire + Identificatie van de gevolmachtigde + Kennung des Bevollmächtigten + + + + + Nom + Naam + Name + + + + + Rue et numéro + Straat en nummer + Straße + + + + + Code postal + Postcode + Postleitzahl + + + + + Localité + Gemeente + Ortschaft + + + + + Pays de l'adresse + Land van het adres + Land + + + + + Adresse e-mail + E-mail adres + E-Mail-Adresse + + + + + Numéro de téléphone + Telefoon nummer + Telefoon nummer + + + + + + + + + N° TVA de l'assujetti + Btw-numer van de belastingplichtige + MwSt.-Nr. des Steuerpflichtigen + + + + + Nom + Naam + Name + + + + + Rue et numéro + Straat en nummer + Straße + + + + + Code postal + Postcode + Postleitzahl + + + + + Localité + Gemeente + Ortschaft + + + + + Pays de l'adresse + Land van het adres + Land + + + + + Adresse e-mail + E-mail adres + E-Mail-Adresse + + + + + Numéro de téléphone + Telefoon nummer + Telefoon nummer + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/l10n_be_coa_multilang/schemas/IntervatIsoTypes_v0_9.xsd b/l10n_be_coa_multilang/schemas/IntervatIsoTypes_v0_9.xsd new file mode 100644 index 00000000..ab336307 --- /dev/null +++ b/l10n_be_coa_multilang/schemas/IntervatIsoTypes_v0_9.xsd @@ -0,0 +1,1039 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The appropriate country code from the ISO 3166 two-byte alpha version for the state in which the party concerned is a resident. Omit this only if no data is available. + This list excludes Member States of the European Union +Valid entries are: + - AF -- AFGHANISTAN + - AX -- Ã…LAND ISLANDS + - AL -- ALBANIA + - DZ -- ALGERIA + - AS -- AMERICAN SAMOA + - AD -- ANDORRA + - AO -- ANGOLA + - AI -- ANGUILLA + - AQ -- ANTARCTICA + - AG -- ANTIGUA AND BARBUDA + - AR -- ARGENTINA + - AM -- ARMENIA + - AW -- ARUBA + - AU -- AUSTRALIA + - AT -- AUSTRIA + - AZ -- AZERBAIJAN + - BS -- BAHAMAS + - BH -- BAHRAIN + - BD -- BANGLADESH + - BB -- BARBADOS + - BY -- BELARUS + - BE -- BELGIUM + - BZ -- BELIZE + - BJ -- BENIN + - BM -- BERMUDA + - BT -- BHUTAN + - BO -- BOLIVIA + - BA -- BOSNIA AND HERZEGOVINA + - BW -- BOTSWANA + - BV -- BOUVET ISLAND + - BR -- BRAZIL + - IO -- BRITISH INDIAN OCEAN TERRITORY + - BN -- BRUNEI DARUSSALAM + - BG -- BULGARIA + - BF -- BURKINA FASO + - BI -- BURUNDI + - KH -- CAMBODIA + - CM -- CAMEROON + - CA -- CANADA + - CV -- CAPE VERDE + - KY -- CAYMAN ISLANDS + - CF -- CENTRAL AFRICAN REPUBLIC + - TD -- CHAD + - CL -- CHILE + - CN -- CHINA + - CX -- CHRISTMAS ISLAND + - CC -- COCOS (KEELING) ISLANDS + - CO -- COLOMBIA + - KM -- COMOROS + - CG -- CONGO + - CD -- CONGO, THE DEMOCRATIC REPUBLIC OF THE + - CK -- COOK ISLANDS + - CR -- COSTA RICA + - CI -- COTE D'IVOIRE + - HR -- CROATIA + - CU -- CUBA + - CY -- CYPRUS + - CZ -- CZECH REPUBLIC + - DK -- DENMARK + - DJ -- DJIBOUTI + - DM -- DOMINICA + - DO -- DOMINICAN REPUBLIC + - EC -- ECUADOR + - EG -- EGYPT + - SV -- EL SALVADOR + - GQ -- EQUATORIAL GUINEA + - ER -- ERITREA + - EE -- ESTONIA + - ET -- ETHIOPIA + - FK -- FALKLAND ISLANDS (MALVINAS) + - FO -- FAROE ISLANDS + - FJ -- FIJI + - FI -- FINLAND + - FR -- FRANCE + - GF -- FRENCH GUIANA + - PF -- FRENCH POLYNESIA + - TF -- FRENCH SOUTHERN TERRITORIES + - GA -- GABON + - GM -- GAMBIA + - GE -- GEORGIA + - DE -- GERMANY + - GH -- GHANA + - GI -- GIBRALTAR + - GR -- GREECE + - GL -- GREENLAND + - GD -- GRENADA + - GP -- GUADELOUPE + - GU -- GUAM + - GT -- GUATEMALA + - GG -- GUERNSEY + - GN -- GUINEA + - GW -- GUINEA-BISSAU + - GY -- GUYANA + - HT -- HAITI + - HM -- HEARD ISLAND AND MCDONALD ISLANDS + - VA -- HOLY SEE (VATICAN CITY STATE) + - HN -- HONDURAS + - HK -- HONG KONG + - HU -- HUNGARY + - IS -- ICELAND + - IN -- INDIA + - ID -- INDONESIA + - IR -- IRAN, ISLAMIC REPUBLIC OF + - IQ -- IRAQ + - IE -- IRELAND + - IM -- ISLE OF MAN + - IL -- ISRAEL + - IT -- ITALY + - JM -- JAMAICA + - JP -- JAPAN + - JE -- JERSEY + - JO -- JORDAN + - KZ -- KAZAKHSTAN + - KE -- KENYA + - KI -- KIRIBATI + - KP -- KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF + - KR -- KOREA, REPUBLIC OF + - KW -- KUWAIT + - KG -- KYRGYZSTAN + - LA -- LAO PEOPLE'S DEMOCRATIC REPUBLIC + - LV -- LATVIA + - LB -- LEBANON + - LS -- LESOTHO + - LR -- LIBERIA + - LY -- LIBYAN ARAB JAMAHIRIYA + - LI -- LIECHTENSTEIN + - LT -- LITHUANIA + - LU -- LUXEMBOURG + - MO -- MACAO + - MK -- MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF + - MG -- MADAGASCAR + - MW -- MALAWI + - MY -- MALAYSIA + - MV -- MALDIVES + - ML -- MALI + - MT -- MALTA + - MH -- MARSHALL ISLANDS + - MQ -- MARTINIQUE + - MR -- MAURITANIA + - MU -- MAURITIUS + - YT -- MAYOTTE + - MX -- MEXICO + - FM -- MICRONESIA, FEDERATED STATES OF + - MD -- MOLDOVA, REPUBLIC OF + - MC -- MONACO + - MN -- MONGOLIA + - ME -- MONTENEGRO + - MS -- MONTSERRAT + - MA -- MOROCCO + - MZ -- MOZAMBIQUE + - MM -- MYANMAR + - NA -- NAMIBIA + - NR -- NAURU + - NP -- NEPAL + - NL -- NETHERLANDS + - AN -- NETHERLANDS ANTILLES + - NC -- NEW CALEDONIA + - NZ -- NEW ZEALAND + - NI -- NICARAGUA + - NE -- NIGER + - NG -- NIGERIA + - NU -- NIUE + - NF -- NORFOLK ISLAND + - MP -- NORTHERN MARIANA ISLANDS + - NO -- NORWAY + - OM -- OMAN + - PK -- PAKISTAN + - PW -- PALAU + - PS -- PALESTINIAN TERRITORY, OCCUPIED + - PA -- PANAMA + - PG -- PAPUA NEW GUINEA + - PY -- PARAGUAY + - PE -- PERU + - PH -- PHILIPPINES + - PN -- PITCAIRN + - PL -- POLAND + - PT -- PORTUGAL + - PR -- PUERTO RICO + - QA -- QATAR + - RE -- REUNION + - RO -- ROMANIA + - RU -- RUSSIAN FEDERATION + - RW -- RWANDA + - BL -- SAINT BARTHÉLEMY + - SH -- SAINT HELENA + - KN -- SAINT KITTS AND NEVIS + - LC -- SAINT LUCIA + - MF -- SAINT MARTIN + - PM -- SAINT PIERRE AND MIQUELON + - VC -- SAINT VINCENT AND THE GRENADINES + - WS -- SAMOA + - SM -- SAN MARINO + - ST -- SAO TOME AND PRINCIPE + - SA -- SAUDI ARABIA + - SN -- SENEGAL + - RS -- SERBIA + - SC -- SEYCHELLES + - SL -- SIERRA LEONE + - SG -- SINGAPORE + - SK -- SLOVAKIA + - SI -- SLOVENIA + - SB -- SOLOMON ISLANDS + - SO -- SOMALIA + - ZA -- SOUTH AFRICA + - GS -- SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS + - ES -- SPAIN + - LK -- SRI LANKA + - SD -- SUDAN + - SR -- SURINAME + - SJ -- SVALBARD AND JAN MAYEN + - SZ -- SWAZILAND + - SE -- SWEDEN + - CH -- SWITZERLAND + - SY -- SYRIAN ARAB REPUBLIC + - TW -- TAIWAN, PROVINCE OF CHINA + - TJ -- TAJIKISTAN + - TZ -- TANZANIA, UNITED REPUBLIC OF + - TH -- THAILAND + - TL -- TIMOR-LESTE + - TG -- TOGO + - TK -- TOKELAU + - TO -- TONGA + - TT -- TRINIDAD AND TOBAGO + - TN -- TUNISIA + - TR -- TURKEY + - TM -- TURKMENISTAN + - TC -- TURKS AND CAICOS ISLANDS + - TV -- TUVALU + - UG -- UGANDA + - UA -- UKRAINE + - AE -- UNITED ARAB EMIRATES + - GB -- UNITED KINGDOM + - US -- UNITED STATES + - UM -- UNITED STATES MINOR OUTLYING ISLANDS + - UY -- URUGUAY + - UZ -- UZBEKISTAN + - VU -- VANUATU + - VE -- VENEZUELA, BOLIVARIAN REPUBLIC OF + - VN -- VIET NAM + - VG -- VIRGIN ISLANDS, BRITISH + - VI -- VIRGIN ISLANDS, U.S. + - WF -- WALLIS AND FUTUNA + - EH -- WESTERN SAHARA + - YE -- YEMEN + - ZM -- ZAMBIA + - ZW -- ZIMBABWE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The appropriate currency code from the ISO 4217 three-byte alpha version for the currency in which a monetary amount is expressed. Currency codes are limited to those of Member States. +Valid entries are: +BGN Bulgaria, Leva +CZK Czech Republic, Koruny +DKK Denmark, Kroner +EEK Estonia, Krooni +EUR Euro Member Countries, Euro +GBP United Kingdom, Pounds +HUF Hungary, Forint +LTL Lithuania, Litai +LVL Latvia, Lati +PLN Poland, Zlotych +RON Romania, New Lei +SEK Sweden, Kronor +HRK Croatia, Kuna + + + + + + + + + + + + + + + + + + + + + + The appropriate currency code from the ISO 4217 three-byte alpha version for the currency in which a monetary amount is expressed. +Valid entries are: +AED United Arab Emirates, Dirhams +AFN Afghanistan, Afghanis +ALL Albania, Leke +AMD Armenia, Drams +ANG Netherlands Antilles, Guilders +AOA Angola, Kwanza +ARS Argentina, Pesos +AUD Australia, Dollars +AWG Aruba, Guilders +AZN Azerbaijan, Manats +BAM Bosnia and Herzegovina, Convertible Marka +BBD Barbados, Dollars +BDT Bangladesh, Taka +BGN Bulgaria, Leva +BHD Bahrain, Dinars +BIF Burundi, Francs +BMD Bermuda, Dollars +BND Brunei Darussalam, Dollars +BOB Bolivia, Bolivianos +BOV Bolivia, Mvdol +BRL Brazil, Brazil Real +BSD Bahamas, Dollars +BTN Bhutan, Ngultrum +BWP Botswana, Pulas +BYR Belarus, Rubles +BZD Belize, Dollars +CAD Canada, Dollars +CDF Congo/Kinshasa, Congolese Francs +CHF Switzerland, Francs +CLF Chile, Unidades de fomento +CLP Chile, Pesos +CNY China, Yuan Renminbi +COP Colombia, Pesos +COU Colombia, Unidad de Valor Real +CRC Costa Rica, Colones +CUC Cuba, Convertible Pesos +CUP Cuba, Pesos +CVE Cape Verde, Escudos +CZK Czech Republic, Koruny +DJF Djibouti, Francs +DKK Denmark, Kroner +DOP Dominican Republic, Pesos +DZD Algeria, Algeria Dinars +EEK Estonia, Krooni +EGP Egypt, Pounds +ERN Eritrea, Nakfa +ETB Ethiopia, Birr +EUR Euro Member Countries, Euro +FJD Fiji, Dollars +FKP Falkland Islands (Malvinas), Pounds +GBP United Kingdom, Pounds +GEL Georgia, Lari +GHS Ghana, Cedis +GIP Gibraltar, Pounds +GMD Gambia, Dalasi +GNF Guinea, Francs +GTQ Guatemala, Quetzales +GWP Guinea-Bissau Peso +GYD Guyana, Dollars +HKD Hong Kong, Dollars +HNL Honduras, Lempiras +HTG Haiti, Gourdes +HUF Hungary, Forint +IDR Indonesia, Rupiahs +ILS Israel, New Shekels +INR India, Rupees +IQD Iraq, Dinars +IRR Iran, Rials +ISK Iceland, Kronur +JMD Jamaica, Dollars +JOD Jordan, Dinars +JPY Japan, Yen +KES Kenya, Shillings +KGS Kyrgyzstan, Soms +KHR Cambodia, Riels +KMF Comoros, Francs +KPW Korea (North), Won +KRW Korea (South), Won +KWD Kuwait, Dinars +KYD Cayman Islands, Dollars +KZT Kazakstan, Tenge +LAK Laos, Kips +LBP Lebanon, Pounds +LKR Sri Lanka, Rupees +LRD Liberia, Dollars +LSL Lesotho, Maloti +LTL Lithuania, Litai +LVL Latvia, Lati +LYD Libya, Dinars +MAD Morocco, Dirhams +MDL Moldova, Lei +MGA Madagascar, Malagasy Ariary +MKD Macedonia, Denars +MMK Myanmar (Burma), Kyats +MNT Mongolia, Tugriks +MOP Macau, Patacas +MRO Mauritania, Ouguiyas +MTL Malta, Liri +MUR Mauritius, Rupees +MVR Maldives (Maldive Islands), Rufiyaa +MWK Malawi, Kwachas +MXN Mexico, Pesos +MXV Mexico, Mexican Unidad de Inversion +MYR Malaysia, Ringgits +MZN Mozambique, Meticais +NAD Namibia, Dollars +NGN Nigeria, Nairas +NIO Nicaragua, Gold Cordobas +NOK Norway, Krone +NPR Nepal, Nepal Rupees +NZD New Zealand, Dollars +OMR Oman, Rials +PAB Panama, Balboa +PEN Peru, Nuevos Soles +PGK Papua New Guinea, Kina +PHP Philippines, Pesos +PKR Pakistan, Rupees +PLN Poland, Zlotych +PYG Paraguay, Guarani +QAR Qatar, Rials +RON Romania, New Lei +RSD Serbian Dinar +RUB Russia, Rubles +RWF Rwanda, Rwanda Francs +SAR Saudi Arabia, Riyals +SBD Solomon Islands, Dollars +SCR Seychelles, Rupees +SDG Sudan, Dinars +SEK Sweden, Kronor +SGD Singapore, Dollars +SHP Saint Helena, Pounds +SLL Sierra Leone, Leones +SOS Somalia, Shillings +SRD Suriname, Dollar +STD São Tome and Principe, Dobras +SVC El Salvador, Colones +SYP Syria, Pounds +SZL Swaziland, Emalangeni +THB Thailand, Baht +TJS Tajikistan, Somoni +TMT Turkmenistan, Manats +TND Tunisia, Dinars +TOP Tonga, Pa'anga +TRY Turkey, Liras +TTD Trinidad and Tobago, Dollars +TWD Taiwan, New Dollars +TZS Tanzania, Shillings +UAH Ukraine, Hryvnia +UGX Uganda, Shillings +USD United States of America, Dollars +UYU Uruguay, Pesos +UZS Uzbekistan, Sums +VEF Venezuela, Bolivares +VND Viet Nam, Dong +VUV Vanuatu, Vatu +WST Samoa, Tala +XAF Communauté Financière Africaine BEAC, Francs +XCD East Caribbean Dollars +XOF Communauté Financière Africaine BCEAO, Francs +XPD Palladium Ounces +XPF Comptoirs Français du Pacifique Francs +YER Yemen, Rials +ZAR South Africa, Rand +ZMK Zambia, Kwacha +ZWL Zimbabwe, Zimbabwe Dollars + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The list of official languages of the EU. + + + + + Bulgarian + + + + + Czech + + + + + Danish + + + + + German + + + + + Greek + + + + + English + + + + + Spanish + + + + + Estonian + + + + + Finnish + + + + + French + + + + + Irish + + + + + Hungarian + + + + + Italian + + + + + Lithuanian + + + + + Latvian + + + + + Maltese + + + + + Dutch + + + + + Polish + + + + + Portuguese + + + + + Romanian + + + + + Slovak + + + + + Slovenian + + + + + Swedish + + + + + Turkish + + + + + diff --git a/l10n_be_coa_multilang/schemas/NewICO-in_v0_9.xsd b/l10n_be_coa_multilang/schemas/NewICO-in_v0_9.xsd new file mode 100644 index 00000000..8b70100e --- /dev/null +++ b/l10n_be_coa_multilang/schemas/NewICO-in_v0_9.xsd @@ -0,0 +1,189 @@ + + + + + + + + + Envoi regroupé de relevés intracommunautaires, déposé par un mandataire + Gegroepeerde verzending van klantenlistings, voorgelegd door een gevolmachtigde + + + + + + Mandataire + Gevolmachtigde + Bevollmächtigter + + + + + Référence attribuée à l'envoi par le mandataire + Toegekende referentie aan de zending door de gevolmachtigde + + + + + Relevé intracommunautaire, pour un déclarant et une période + Intracommunautaire opgave, voor een belastingplichtige en een periode + + + + + + Nombre de relevés intracommunautaires dans l'envoi + Aantal intracommunautaire opgave in de zending + + + + + + + + Listing clients, pour un déclarant et une année + Listing klanten, voor een belastingplichtige en voor een jaar + + + + + Identifiant/Référence Intervat d'un relevé intracommunautaire précédent qui est remplacé par ce relevé (référence donnée dans l'accusé de réception du relevé original) + Identificatie/Referentie Intervat van een vorige intracommunautaire opgave welke wordt vervangen door deze opgave(referentie terug te vinden in de ontvangstbevestiging van de originele opgave) + + + + + Déclarant (assujetti belge) + Aangever (Belgische belastingplichtige) + + + + + Période couverte par le relevé + Periode waarop de opgave betrekking heeft + + + + + Informations concernant un client du relevé intracommunautaire + Informatie in verband met een klant in de intracommunautaire opgave + + + + + Informations concernant une annexe + Informatie betreffende een bijlage + Informationen zu einer Anlage + + + + + Commentaire libre + Vrije commentaar + Freier Kommentar + + + + + + Numéro de séquence du relevé dans l'envoi + Volgnummer van de opgave in de zending + + + + + Nombre de clients dans le relevé + Aantal klanten in de opgave + + + + + Référence attribuée à ce relevé intracommunautaire par le déclarant ou mandataire. + Toegekende referentie de intracommunautaire opgave door de belastingplichtige of de mandataris. + + + + + Somme des montants pour tous les clients. Montant signé exprimé en EUR à l'eurocent près. + De som van de bedragen voor alle klanten. Bedrag uitgedrukt in EUR tot op de eurocent na. + + + + + + + + + Mois de la période + Maand van de periode + + + + + Trimestre de la periode + Kwartaal van de periode + + + + + + Année de la période (format YYYY) + Jaar van de periode (formaat YYYY) + + + + + + + + + N° de TVA du client (n° de TVA étranger) + + + + + L, S ou T (si CorrectingPeriod ou période du relevé avant 2010, uniquement L ou T) + L, S of T (wanneer de periode van verbetering of de periode van de opgave voor 2010 is, dan enkel L of T) + + + + + Montant signé exprimé en EUR à l'eurocent près. + Bedrag uitgedrukt in EUR tot op de eurocent na + + + + + Si correction par rapport à un client mentionné dans un relevé précédent, période de ce relevé. + Indien verbetering met betrekking tot de vermelde klant in een voorgaande opgave, periode van deze opgave. + + + + + + N° de séquence du client dans le relevé + Volgnummer van de klant in de opgave + + + + + + + + + Etat membre qui a attribué le n° de TVA (autre que "BE") + Lidstaat die de btw-nummer heeft toegekend (autre que "BE") + + + + + + + + + + + + + diff --git a/l10n_be_coa_multilang/schemas/NewLK-in_v0_9.xsd b/l10n_be_coa_multilang/schemas/NewLK-in_v0_9.xsd new file mode 100644 index 00000000..eb783f43 --- /dev/null +++ b/l10n_be_coa_multilang/schemas/NewLK-in_v0_9.xsd @@ -0,0 +1,171 @@ + + + + + + + + + Envoi regroupé de listings clients, déposé par un mandataire + Gegroepeerde verzending van klantenlistings, voorgelegd door een gevolmachtigde + + + + + + Mandataire + Gevolmachtigde + Bevollmächtigter + + + + + Référence attribuée à l'envoi par le mandataire + Toegekende referentie aan de zending door de mandataris + + + + + Listing clients, pour un déclarant et une année + klantenlijst, voor een belastingplichtige en een jaar + + + + + + Nombre de listings clients dans l'envoi + Aantal klanten in de zending + + + + + + + + Lisintg clients, pour un déclarant et une année + klantenlijst, voor een belastingplichtige en een jaar + + + + + Identifiant/Référence Intervat d'un listing clients précédent qui est remplacé par ce listing (référence donnée dans l'accusé de réception du listing original) + Identificatie/Referentie Intervat van een vorige klantenlijst welke wordt vervangen door deze klantenlijst(referentie terug te vinden in de ontvangstbevestiging van de originele klantenlijst) + + + + + Déclarant (assujetti belge) + Aangever (Belgische belastingplichtige) + + + + + Période couverte par le listing (année au format YYYY) + Periode waarop de klantenlijst betrekking heeft (jaar in het formaat YYYY) + + + + + Pour les petites entreprises: chiffre d'affaires. Montant signé exprimé en EUR à l'eurocent près. + Voor de kleine ondernemingen: omzetcijfer. Bedrag uitgedrukt in EUR tot op de eurocent na. + + + + + Pour un exploitant agricole: "YES" s'il déclare être tenu au dépôt du relevé intracommunautaire annuel, "NO" s'il n'y est pas tenu. Tag absent pour les non-exploitants agricoles. + Voor een landbouwer:"YES" wanneer hij ertoe gehouden is een jaarlijkse intracommunautaire opgave in te dienenn "NO" wanneer hij hier niet is toe gehouden. Tag is afwezig voor de niet-landbouwers. + + + + + Informations concernant un client du listing + Informatie betreffende een klant in de listing + + + + + Informations concernant une annexe + Informatie betreffende een bijlage + Informationen zu einer Anlage + + + + + Commentaire libre + Vrije commentaar + Freier Kommentar + + + + + + Numéro de séquence du listing dans l'envoi + Volgnummer van de listing in de zending + + + + + Nombre de clients dans le listing + Aantal klanten in de listing + + + + + Référence attribuée à ce listing clients par le déclarant ou mandataire. + Toegekende referentie aan de klantenlijst door de belastingplichtige of de mandataris. + + + + + Somme des chiffres d'affaires (hors TVA) pour tous les clients. Montant signé exprimé en EUR à l'eurocent près. + Som omzetcijfer(zonder BTW) voor alle klanten. Bedrag uitgedrukt in EUR tot op de eurocent na. + + + + + Somme des montants TVA pour tous les clients. Montant signé exprimé en EUR à l'eurocent près. + Som van het bedrag aan BTW voor alle klanten. Bedrag uitgedrukt in EUR tot op de eurocent na. + + + + + + + + N° de TVA du client (assujetti belge). + BTW n° van de klant (Belgisch belastingplichtige. + + + + + Chiffre d'affaires (hors TVA). Montant signé exprimé en EUR à l'eurocent près. + Omzetcijfer (zonder BTW) Bedrag uitgedrukt in EUR tot op de eurocent na. + + + + + Montant TVA. Montant signé exprimé en EUR à l'eurocent près. + Bedrag BTW. Bedrag uitgedrukt in EUR tot op de eurocent na. + + + + + + N° de séquence du client dans le listing + Volgnummer van de klant in de listing + + + + + + + + + Etat membre qui a attribué le n° de TVA (toujours "BE") + Lidstaat die de btw-nummer heeft toegekend (altijd "BE") + + + + + + diff --git a/l10n_be_coa_multilang/schemas/NewTVA-in_v0_9.xsd b/l10n_be_coa_multilang/schemas/NewTVA-in_v0_9.xsd new file mode 100644 index 00000000..7517c3b7 --- /dev/null +++ b/l10n_be_coa_multilang/schemas/NewTVA-in_v0_9.xsd @@ -0,0 +1,367 @@ + + + + + + + + Envoi regroupé de déclarations TVA périodiques, déposé par un mandataire + Gegroepeerde verzending van periodische btw aangiften, voorgelegd door een gevolmachtigde + + + + + + Mandataire + Gevolmachtigde + Bevollmächtigter + + + + + Référence attribuée à l'envoi par le mandataire + Toegekende referentie aan de zending door de gevolmachtigde + + + + + Déclaration périodique à la TVA, pour un déclarant et une période + Periodieke aangifte, voor een belastingplichtige en een periode + + + + + + Nombre de déclarations TVA périodiques dans l'envoi + Aantal periodieke aangiften in de zending + + + + + + + + Déclaration TVA périodique, pour un déclarant et une période + Periodieke aangifte, voor een aangever en een periode + + + + + Identifiant/Référence Intervat d'une déclaraton TVA périodique précédente qui est remplacée par cette déclaration (référence donnée dans l'accusé de réception de la déclaration originale) + Identificatie/Referentie Intervat van een vorige aangifte welke wordt vervangen door deze aangifte(referentie terug te vinden in de ontvangstbevestiging van de originele aangifte) + + + + + Déclarant (assujetti belge) + Aangever (Belgische belastingplichtige) + + + + + Période couverte par la déclaration TVA périodique (un mois ou un trimestre d'une année) + + + + + % de déduction de TVA par année + % recht op aftrek voor een welbepaald jaar + + + + + Montants déclarés. Tous les montants sont exprimés en EUR à l'eurocent près. (grille 71 ou 72 obligatoire) + Aangegeven bedragen. Alle bedragen zijn in Euro uitgedrukt. + + + + + Concerne uniquement la dernière déclaration civile ou celle relative à la cessation d'activité: pas de clients à reprendre sur le listing des clients. + Betreft uitsluitend de laatste aangifte van het kalenderjaar of de aangifte met betrekking tot de stopzetting van activiteit: geen klanten op te nemen in de klantenlisting. + + + + + Demandes liées à la déclaration (remboursement et formulaires de paiement) + Aanvragen verbonden aan de aangifte (terugbetaling en betaalformulieren) + + + + + Demande de restitution + Aanvraag om terugbetaling + + + + + Demande de formulaires de paiement + Aanvraag van betaalformulieren + + + + + + + Informations concernant une annexe + Informatie betreffende een bijlage + Informationen zu einer Anlage + + + + + Commentaire libre + Vrije commentaar + Freier Kommentar + + + + + Information contenant une justification + a faire + a faire + + + + + + Numéro de séquence de la déclaration TVA périodique dans l'envoi + Volgnummer van de aangifte in de zending + + + + + Référence attribuée à cette déclaration TVA périodique par le déclarant ou mandataire + Toegekende referentie aan de aangifte door de aangever of de mandataris + + + + + + + + + Mois de la période + Maand van de periode + + + + + Trimestre de la periode + Kwartaal van de periode + + + + + + Année de la période (format YYYY) + Jaar van de periode (formaat YYYY) + + + + + + + + + Montant en EUR + + + + + + + Numéro de la case + + + + + + + + + + + + + Montant déclaré en grille 00: opérations soumises à un régime particulier + Bedrag aangegeven in rooster 00: handelingen onderworpen aan een bijzondere regeling + + + + + Montant déclaré en grille 01: opérations pour lesquelles la T.V.A. est due par le déclarant au taux de 6% + Bedrag aangegeven in rooster 01: Handelingen waarvoor de btw verschuldigd is door de aangever aan het tarief van 6% + + + + + Montant déclaré en grille 02: opérations pour lesquelles la T.V.A. est due par le déclarant au taux de 12% + Bedrag aangegeven in rooster 02: Handelingen waarvoor de btw verschuldigd is door de aangever aan het tarief van 12%. + + + + + Montant déclaré en grille 03: opérations pour lesquelles la T.V.A. est due par le déclarant au taux de 21% + Bedrag aangegeven in rooster 03: handelingen waarvoor de btw verschuldigd is door de aangever aan het tarief van 21%. + + + + + Montant déclaré en grille 44: services pour lesquels la T.V.A. étrangère est due par le cocontractant + Bedrag aangegeven in rooster 44: diensten waarvoor de buitenlandse btw verschuldigd is door de medecontractant + + + + + Montant déclaré en grille 45: opérations pour lesquelles la T.V.A. est due par le cocontractant + Bedrag aangegeven in rooster 45: handelingen waarvoor de btw verschuldigd is door de medecontractant + + + + + Montant déclaré en grille 46: livraisons intracommunautaires exemptées effectuées en Belgique et ventes ABC + Bedrag aangegeven in rooster 46: vrijgestelde intracommunautaire leveringen in België en ABC-verkopen + + + + + Montant déclaré en grille 47: autres opérations exemptées et autres opérations effectuées à l'étranger + Bedrag aangegeven in rooster 47: andere vrijgestelde handelingen en andere handelingen verricht in het buitenland + + + + + Montant déclaré en grille 48: Montant des notes de crédit délivrées et des corrections négatives relatif aux opérations inscrites en grilles 44 et 46 + Bedrag aangegeven in rooster 48: bedrag van de uitgereikte creditnota's en de negatieve verbeteringen met betrekking tot de handelingen ingeschreven in roosters 44 en 46 + + + + + Montant déclaré en grille 49: Montant des notes de crédit délivrées et des corrections négatives relatif aux autres opérations du cadre II + Bedrag aangegeven in rooster 49: bedrag van de uitgereikte creditnota's en de negatieve verbeteringen met betrekking tot andere handelingen van kader II + + + + + Montant déclaré en grille 54: T.V.A. relative aux opérations déclarées en grilles 01, 02 et 03 + Bedrag aangegeven in rooster 54: btw op handelingen aangegeven in de roosters 01, 02 et 03 + + + + + Montant déclaré en grille 55: T.V.A. relative aux opérations déclarées en grilles 86 et 88 + Bedrag aangegeven in rooster 55: btw op handelingen aangegeven in roosters 86 en 88 + + + + + Montant déclaré en grille 56: T.V.A. relative aux opérations déclarées en grille 87, à l'exception des importations avec report de perception + Bedrag aangegeven in rooster 56: btw op handelingen aangegeven in rooster 87, met uitzondering van invoeren met verlegging van heffing + + + + + Montant déclaré en grille 57: T.V.A. relative aux importations avec report de perception + Bedrag aangegeven in rooster 57: btw op invoeren met verlegging van heffing + + + + + Montant déclaré en grille 59: T.V.A. déductible + Bedrag aangegeven in rooster 59: Aftrekbare btw + + + + + Montant déclaré en grille 61: diverses régularisations T.V.A. en faveur de l'Etat + Bedrag aangegeven in rooster 61: diverse btw-regularisaties in het voordeel van de Staat + + + + + Montant déclaré en grille 62: diverses régularisations T.V.A. en faveur du déclarant + Bedrag aangegeven in rooster 62: diverse btw-regularisaties in het voordeel van de aangever + + + + + Montant déclaré en grille 63: T.V.A. à reverser mentionnée sur les notes de crédit reçues + Bedrag aangegeven in rooster 63: terug te storten btw vermeld op ontvangen creditnota's + + + + + Montant déclaré en grille 64: T.V.A. à récupérer mentionnée sur les notes de crédit délivrées + Bedrag aangegeven in rooster 64: te recupereren btw vermeld op uitgereikte creditnota's + + + + + Montant déclaré en grille 71: taxe due à l'Etat + Bedrag aangegeven in rooster 71: aan de Staat verschuldigde belasting + + + + + Montant déclaré en grille 72: sommes dues par l'Etat + Bedrag aangegeven in rooster 72: sommen verschuldigd door de Staat + + + + + Montant déclaré en grille 81: Montant des opérations à l'entrée compte tenu des notes de crédit reçues et autres corrections : marchandises, matières premières et matières auxiliaires + Bedrag aangegeven in rooster 81: bedrag van de inkomende handelingen rekening houdend met de ontvangen creditnota's en andere verbeteringen: handelsgoederen, grond- en hulpstoffen + + + + + Montant déclaré en grille 82: Montant des opérations à l'entrée compte tenu des notes de crédit reçues et autres corrections :services et biens divers + Bedrag aangegeven in rooster 82: bedrag van de inkomende handelingen rekening houdend met de ontvangen creditnota's en andere verbeteringen: diensten en diverse goederen + + + + + Montant déclaré en grille 83: Montant des opérations à l'entrée compte tenu des notes de crédit reçues et autres corrections : biens d'investissement + Bedrag aangegeven in rooster 83: bedrag van de inkomende handelingen rekening houdend met de ontvangen creditnota's en andere verbeteringen: bedrijfsmiddelen + + + + + Montant déclaré en grille 84: Montant des notes de crédit reçues et des corrections négatives relatif aux opérations inscrites en grilles 86 et 88 + Bedrag aangegeven in rooster 84: bedrag van de ontvangen creditnota's en de negatieve verbeteringen met betrekking tot de handelingen ingeschreven in roosters 86 en 88 + + + + + Montant déclaré en grille 85: Montant des notes de crédit reçues et des corrections négatives : relatif aux autres opérations du cadre III + Bedrag aangegeven in rooster 85: bedrag van de ontvangen creditnota's en de negatieve verbeteringen met betrekking tot de andere handelingen van kader III + + + + + Montant déclaré en grille 86: acquisitions intracommunautaires effectuées en Belgique et vente ABC + Bedrag aangegeven in rooster 86: intracommunautaire verwervingen verricht in België en ABC-verkopen + + + + + Montant déclaré en grille 87: autres opérations à l'entrée pour lesquelles la T.V.A. est due par le déclarant + Bedrag aangegeven in rooster 87: andere inkomende handelingen waarvoor de btw verschuldigd is +door de aangever + + + + + Montant déclaré en grille 88: services intracommunautaires avec report de perception + Bedrag aangegeven in rooster 88: intracommunautaire diensten met verlegging van heffing + + + + + Concerne uniquement la déclaration mensuelle de décembre: Montant déclaré en grille 91: T.V.A. réellement due pour la période du 1er au 20 décembre + Betreft uitsluitend de maandaangifte van december: bedrag aangegeven in rooster 91: werkelijk verschuldigde btw voor de periode van 1 tot 20 december + + + + + diff --git a/l10n_be_coa_multilang/schemas/commontypes_v1.xsd b/l10n_be_coa_multilang/schemas/commontypes_v1.xsd new file mode 100644 index 00000000..b6e98696 --- /dev/null +++ b/l10n_be_coa_multilang/schemas/commontypes_v1.xsd @@ -0,0 +1,849 @@ + + + + + + + + + + + + + + + + Bank Identifer Code + + + + + + + + ISO 3166 alpha 2 country code + + + + + + + + ISO 3166 numeric country code + + + + + + + + ISO 4217 currency code + + + + + + + + The set of ISO 3166 alpha 2 country code values for the + EU member states, with the exception of the Hellenic Republic which is represented + by a non-standard code. + + + + + + List of EU country codes + + + + + + The set of ISO 3166 numeric country code values for the + EU member states + + + + + Austria + + + + + Belgium + + + + + Bulgaria + + + + + Cyprus + + + + + Czech Republic + + + + + Denmark + + + + + Estonia + + + + + Finland + + + + + France + + + + + Germany + + + + + Greece + + + + + Hungary + + + + + Ireland + + + + + Italy + + + + + Latvia + + + + + Lithuania + + + + + Luxembourg + + + + + Malta + + + + + Netherlands + + + + + Poland + + + + + Portugal + + + + + Romania + + + + + Slovakia + + + + + Slovenia + + + + + Spain + + + + + Sweden + + + + + United Kingdom + + + + + + + List of EU country code numbers + + + + + + The set of currency code values for the EU member + states.Currencies that have been legal in recent years are included, even if + replaced by the Euro. + + + + + Leva (Bulgaria) + + + + + Pound (Cyprus) + + + + + Koruny (Czech Republic) + + + + + Krone (Denmark) + + + + + Krooni (Estonia) + + + + + Euro (Euro Zone) + + + + + Pounds sterling (United + Kingdom) + + + + + Forint (Hungary) + + + + + Litai (Lithuania) + + + + + Lati (Latvia) + + + + + Liri (Malta) + + + + + Zlotych (Poland) + + + + + Lei (Romania) + + + + + Krona (Sweden) + + + + + Koruny (Slovakia) + + + + + Tolars (Slovenia) + + + + + + + The list of official languages of the EU. + + + + + Bulgarian + + + + + Czech + + + + + Danish + + + + + German + + + + + Greek + + + + + English + + + + + Spanish + + + + + Estonian + + + + + Finnish + + + + + French + + + + + Irish + + + + + Hungarian + + + + + Italian + + + + + Lithuanian + + + + + Latvian + + + + + Maltese + + + + + Dutch + + + + + Polish + + + + + Portuguese + + + + + Romanian + + + + + Slovak + + + + + Slovenian + + + + + Swedish + + + + + Turkish + + + + + + + + List of EU Languages + + + + + + An unstructured address + + + + + + + + + + + + A decimal amount, resticted to two decimal + places + + + + + + + + Application Identifier + + + + + The VAT on e-services application (Council + Directive 2002/38/EC) + + + + + + + An email address + + + + + A regular expression for email addresses. + Matches something@someserver.com, firstname.lastname@mailserver.domain.com, + username-something@some-server.tld + + + + + + + + This element can be used to indicate Gender for + individuals. + + + + + + + + + The International Bank Account Number has to be given + here for the account into which the payment in question has been made. Depending on + the transmission type this element is optional. Its structure is: Country code, 2 + letters/Check digits, 2 digits/Basic Bank Account Number (BBAN), 10 to 30 + alphanumeric characters + + + + + + + + Message Identifier + + + + + + The pattern caters for the 'ad-hoc' (MS ISO code + + date + counter), RFC 2392-like mid, and UUID. + + + + + + + An unstructured name + + + + + + + + + + + + + + + + + A number with 3 digits + + + + + + + + + The Other Bank Account Number is used where the IBAN is not available - mainly for bank accounts outside of Europe + + + + + + A telephone number + + + + + + + + A quarter (Q1, Q2, Q3, Q4) + + + + + + + + + + + + + + A tax identifier, VAT or other + + + + + + + + VAT rate + + + + + + + + + + Structure of the address for a party broken down into + its logical parts, recommended for easy matching. The 'City' element is the only + required subelement. All of the subelements are simple text - data type 'string'. + + + + + + + + + + + + + + + + + + + An amount for the EU currencies + + + + + + + + + + Header of generic tax message + + + + + + + + + + + The language of the document. May be overloaded + in some elements by a language attribute + + + + + + + Internationalised string + + + + + + + + + + An individual + + + + + + + + + + + Data (other than Name and Address) to describe and + identify an Individual. + + + + + + + + + + + + + A simplified version of IndivPersData_Type + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A legal entity + + + + + + + + + + An amount: a value with a currency + attribute + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A string with an attribute that allows ordering in a + list. + + + + + + + + + + A type that holds a name value pair. The name is stored + in the 'name' attribute, and the value as a string in the element value + itself + + + + + + + + + + Represents a period of time specified by a start date + and an end date. + + + + + + + + + A person + + + + + + + + + + A shortenedform of Address_Fix with a mandatory status + attribute + + + + + + + + + + + + + + + + + + + + diff --git a/l10n_be_coa_multilang/schemas/isotypes_v1.xsd b/l10n_be_coa_multilang/schemas/isotypes_v1.xsd new file mode 100644 index 00000000..a8962919 --- /dev/null +++ b/l10n_be_coa_multilang/schemas/isotypes_v1.xsd @@ -0,0 +1,945 @@ + + + + + + + + + + + The appropriate country code from the ISO 3166 two-byte alpha version for the state in which the party concerned is a resident. Omit this only if no data is available. + This list excludes Member States of the European Union + The following entries must not be used: + - AN -- NETHERLANDS ANTILLES + Valid entries are: + - AF -- AFGHANISTAN + - AX -- Ã…LAND ISLANDS + - AL -- ALBANIA + - DZ -- ALGERIA + - AS -- AMERICAN SAMOA + - AD -- ANDORRA + - AO -- ANGOLA + - AI -- ANGUILLA + - AQ -- ANTARCTICA + - AG -- ANTIGUA AND BARBUDA + - AR -- ARGENTINA + - AM -- ARMENIA + - AW -- ARUBA + - AU -- AUSTRALIA + - AT -- AUSTRIA + - AZ -- AZERBAIJAN + - BS -- BAHAMAS + - BH -- BAHRAIN + - BD -- BANGLADESH + - BB -- BARBADOS + - BY -- BELARUS + - BE -- BELGIUM + - BZ -- BELIZE + - BJ -- BENIN + - BM -- BERMUDA + - BT -- BHUTAN + - BO -- BOLIVIA + - BA -- BOSNIA AND HERZEGOVINA + - BW -- BOTSWANA + - BV -- BOUVET ISLAND + - BR -- BRAZIL + - IO -- BRITISH INDIAN OCEAN TERRITORY + - BN -- BRUNEI DARUSSALAM + - BG -- BULGARIA + - BF -- BURKINA FASO + - BI -- BURUNDI + - KH -- CAMBODIA + - CM -- CAMEROON + - CA -- CANADA + - CV -- CAPE VERDE + - KY -- CAYMAN ISLANDS + - CF -- CENTRAL AFRICAN REPUBLIC + - TD -- CHAD + - CL -- CHILE + - CN -- CHINA + - CX -- CHRISTMAS ISLAND + - CC -- COCOS (KEELING) ISLANDS + - CO -- COLOMBIA + - KM -- COMOROS + - CG -- CONGO + - CD -- CONGO, THE DEMOCRATIC REPUBLIC OF THE + - CK -- COOK ISLANDS + - CR -- COSTA RICA + - CI -- COTE D'IVOIRE + - HR -- CROATIA + - CU -- CUBA + - CY -- CYPRUS + - CZ -- CZECH REPUBLIC + - DK -- DENMARK + - DJ -- DJIBOUTI + - DM -- DOMINICA + - DO -- DOMINICAN REPUBLIC + - EC -- ECUADOR + - EG -- EGYPT + - SV -- EL SALVADOR + - GQ -- EQUATORIAL GUINEA + - ER -- ERITREA + - EE -- ESTONIA + - ET -- ETHIOPIA + - FK -- FALKLAND ISLANDS (MALVINAS) + - FO -- FAROE ISLANDS + - FJ -- FIJI + - FI -- FINLAND + - FR -- FRANCE + - GF -- FRENCH GUIANA + - PF -- FRENCH POLYNESIA + - TF -- FRENCH SOUTHERN TERRITORIES + - GA -- GABON + - GM -- GAMBIA + - GE -- GEORGIA + - DE -- GERMANY + - GH -- GHANA + - GI -- GIBRALTAR + - GR -- GREECE + - GL -- GREENLAND + - GD -- GRENADA + - GP -- GUADELOUPE + - GU -- GUAM + - GT -- GUATEMALA + - GG -- GUERNSEY + - GN -- GUINEA + - GW -- GUINEA-BISSAU + - GY -- GUYANA + - HT -- HAITI + - HM -- HEARD ISLAND AND MCDONALD ISLANDS + - VA -- HOLY SEE (VATICAN CITY STATE) + - HN -- HONDURAS + - HK -- HONG KONG + - HU -- HUNGARY + - IS -- ICELAND + - IN -- INDIA + - ID -- INDONESIA + - IR -- IRAN, ISLAMIC REPUBLIC OF + - IQ -- IRAQ + - IE -- IRELAND + - IM -- ISLE OF MAN + - IL -- ISRAEL + - IT -- ITALY + - JM -- JAMAICA + - JP -- JAPAN + - JE -- JERSEY + - JO -- JORDAN + - KZ -- KAZAKHSTAN + - KE -- KENYA + - KI -- KIRIBATI + - KP -- KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF + - KR -- KOREA, REPUBLIC OF + - KW -- KUWAIT + - KG -- KYRGYZSTAN + - LA -- LAO PEOPLE'S DEMOCRATIC REPUBLIC + - LV -- LATVIA + - LB -- LEBANON + - LS -- LESOTHO + - LR -- LIBERIA + - LY -- LIBYAN ARAB JAMAHIRIYA + - LI -- LIECHTENSTEIN + - LT -- LITHUANIA + - LU -- LUXEMBOURG + - MO -- MACAO + - MK -- MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF + - MG -- MADAGASCAR + - MW -- MALAWI + - MY -- MALAYSIA + - MV -- MALDIVES + - ML -- MALI + - MT -- MALTA + - MH -- MARSHALL ISLANDS + - MQ -- MARTINIQUE + - MR -- MAURITANIA + - MU -- MAURITIUS + - YT -- MAYOTTE + - MX -- MEXICO + - FM -- MICRONESIA, FEDERATED STATES OF + - MD -- MOLDOVA, REPUBLIC OF + - MC -- MONACO + - MN -- MONGOLIA + - ME -- MONTENEGRO + - MS -- MONTSERRAT + - MA -- MOROCCO + - MZ -- MOZAMBIQUE + - MM -- MYANMAR + - NA -- NAMIBIA + - NR -- NAURU + - NP -- NEPAL + - NL -- NETHERLANDS + - NC -- NEW CALEDONIA + - NZ -- NEW ZEALAND + - NI -- NICARAGUA + - NE -- NIGER + - NG -- NIGERIA + - NU -- NIUE + - NF -- NORFOLK ISLAND + - MP -- NORTHERN MARIANA ISLANDS + - NO -- NORWAY + - OM -- OMAN + - PK -- PAKISTAN + - PW -- PALAU + - PS -- PALESTINIAN TERRITORY, OCCUPIED + - PA -- PANAMA + - PG -- PAPUA NEW GUINEA + - PY -- PARAGUAY + - PE -- PERU + - PH -- PHILIPPINES + - PN -- PITCAIRN + - PL -- POLAND + - PT -- PORTUGAL + - PR -- PUERTO RICO + - QA -- QATAR + - RE -- REUNION + - RO -- ROMANIA + - RU -- RUSSIAN FEDERATION + - RW -- RWANDA + - BL -- SAINT BARTHÉLEMY + - SH -- SAINT HELENA + - KN -- SAINT KITTS AND NEVIS + - LC -- SAINT LUCIA + - MF -- SAINT MARTIN + - PM -- SAINT PIERRE AND MIQUELON + - VC -- SAINT VINCENT AND THE GRENADINES + - WS -- SAMOA + - SM -- SAN MARINO + - ST -- SAO TOME AND PRINCIPE + - SA -- SAUDI ARABIA + - SN -- SENEGAL + - RS -- SERBIA + - SC -- SEYCHELLES + - SL -- SIERRA LEONE + - SG -- SINGAPORE + - SK -- SLOVAKIA + - SI -- SLOVENIA + - SB -- SOLOMON ISLANDS + - SO -- SOMALIA + - ZA -- SOUTH AFRICA + - GS -- SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS + - ES -- SPAIN + - LK -- SRI LANKA + - SD -- SUDAN + - SR -- SURINAME + - SJ -- SVALBARD AND JAN MAYEN + - SZ -- SWAZILAND + - SE -- SWEDEN + - CH -- SWITZERLAND + - SY -- SYRIAN ARAB REPUBLIC + - TW -- TAIWAN, PROVINCE OF CHINA + - TJ -- TAJIKISTAN + - TZ -- TANZANIA, UNITED REPUBLIC OF + - TH -- THAILAND + - TL -- TIMOR-LESTE + - TG -- TOGO + - TK -- TOKELAU + - TO -- TONGA + - TT -- TRINIDAD AND TOBAGO + - TN -- TUNISIA + - TR -- TURKEY + - TM -- TURKMENISTAN + - TC -- TURKS AND CAICOS ISLANDS + - TV -- TUVALU + - UG -- UGANDA + - UA -- UKRAINE + - AE -- UNITED ARAB EMIRATES + - GB -- UNITED KINGDOM + - US -- UNITED STATES + - UM -- UNITED STATES MINOR OUTLYING ISLANDS + - UY -- URUGUAY + - UZ -- UZBEKISTAN + - VU -- VANUATU + - VE -- VENEZUELA, BOLIVARIAN REPUBLIC OF + - VN -- VIET NAM + - VG -- VIRGIN ISLANDS, BRITISH + - VI -- VIRGIN ISLANDS, U.S. + - WF -- WALLIS AND FUTUNA + - EH -- WESTERN SAHARA + - YE -- YEMEN + - ZM -- ZAMBIA + - ZW -- ZIMBABWE + - IC -- CANARY ISLANDS + - XI -- CEUTA + - XJ -- MELILLA + - CW -- CURACAO + - SX -- SAINT MARTIN (DUTCH PART) + - BQ -- BONAIRE, SAINT EUSTATIUS AND SABA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The appropriate currency code from the ISO 4217 three-byte alpha version for the currency in which a monetary amount is expressed. + Valid entries are: + AED United Arab Emirates, Dirhams + AFN Afghanistan, Afghanis + ALL Albania, Leke + AMD Armenia, Drams + ANG Netherlands Antilles, Guilders + AOA Angola, Kwanza + ARS Argentina, Pesos + AUD Australia, Dollars + AWG Aruba, Guilders + AZN Azerbaijan, Manats + BAM Bosnia and Herzegovina, Convertible Marka + BBD Barbados, Dollars + BDT Bangladesh, Taka + BGN Bulgaria, Leva + BHD Bahrain, Dinars + BIF Burundi, Francs + BMD Bermuda, Dollars + BND Brunei Darussalam, Dollars + BOB Bolivia, Bolivianos + BOV Bolivia, Mvdol + BRL Brazil, Brazil Real + BSD Bahamas, Dollars + BTN Bhutan, Ngultrum + BWP Botswana, Pulas + BYR Belarus, Rubles + BZD Belize, Dollars + CAD Canada, Dollars + CDF Congo/Kinshasa, Congolese Francs + CHF Switzerland, Francs + CLF Chile, Unidades de fomento + CLP Chile, Pesos + CNY China, Yuan Renminbi + COP Colombia, Pesos + COU Colombia, Unidad de Valor Real + CRC Costa Rica, Colones + CUC Cuba, Convertible Pesos + CUP Cuba, Pesos + CVE Cape Verde, Escudos + CZK Czech Republic, Koruny + DJF Djibouti, Francs + DKK Denmark, Kroner + DOP Dominican Republic, Pesos + DZD Algeria, Algeria Dinars + EEK Estonia, Krooni + EGP Egypt, Pounds + ERN Eritrea, Nakfa + ETB Ethiopia, Birr + EUR Euro Member Countries, Euro + FJD Fiji, Dollars + FKP Falkland Islands (Malvinas), Pounds + GBP United Kingdom, Pounds + GEL Georgia, Lari + GHS Ghana, Cedis + GIP Gibraltar, Pounds + GMD Gambia, Dalasi + GNF Guinea, Francs + GTQ Guatemala, Quetzales + GWP Guinea-Bissau Peso + GYD Guyana, Dollars + HKD Hong Kong, Dollars + HNL Honduras, Lempiras + HRK Croatia, Kuna + HTG Haiti, Gourdes + HUF Hungary, Forint + IDR Indonesia, Rupiahs + ILS Israel, New Shekels + INR India, Rupees + IQD Iraq, Dinars + IRR Iran, Rials + ISK Iceland, Kronur + JMD Jamaica, Dollars + JOD Jordan, Dinars + JPY Japan, Yen + KES Kenya, Shillings + KGS Kyrgyzstan, Soms + KHR Cambodia, Riels + KMF Comoros, Francs + KPW Korea (North), Won + KRW Korea (South), Won + KWD Kuwait, Dinars + KYD Cayman Islands, Dollars + KZT Kazakstan, Tenge + LAK Laos, Kips + LBP Lebanon, Pounds + LKR Sri Lanka, Rupees + LRD Liberia, Dollars + LSL Lesotho, Maloti + LTL Lithuania, Litai + LVL Latvia, Lati + LYD Libya, Dinars + MAD Morocco, Dirhams + MDL Moldova, Lei + MGA Madagascar, Malagasy Ariary + MKD Macedonia, Denars + MMK Myanmar (Burma), Kyats + MNT Mongolia, Tugriks + MOP Macau, Patacas + MRO Mauritania, Ouguiyas + MTL Malta, Liri + MUR Mauritius, Rupees + MVR Maldives (Maldive Islands), Rufiyaa + MWK Malawi, Kwachas + MXN Mexico, Pesos + MXV Mexico, Mexican Unidad de Inversion + MYR Malaysia, Ringgits + MZN Mozambique, Meticais + NAD Namibia, Dollars + NGN Nigeria, Nairas + NIO Nicaragua, Gold Cordobas + NOK Norway, Krone + NPR Nepal, Nepal Rupees + NZD New Zealand, Dollars + OMR Oman, Rials + PAB Panama, Balboa + PEN Peru, Nuevos Soles + PGK Papua New Guinea, Kina + PHP Philippines, Pesos + PKR Pakistan, Rupees + PLN Poland, Zlotych + PYG Paraguay, Guarani + QAR Qatar, Rials + RON Romania, New Lei + RSD Serbian Dinar + RUB Russia, Rubles + RWF Rwanda, Rwanda Francs + SAR Saudi Arabia, Riyals + SBD Solomon Islands, Dollars + SCR Seychelles, Rupees + SDG Sudan, Dinars + SEK Sweden, Kronor + SGD Singapore, Dollars + SHP Saint Helena, Pounds + SLL Sierra Leone, Leones + SOS Somalia, Shillings + SRD Suriname, Dollar + STD São Tome and Principe, Dobras + SVC El Salvador, Colones + SYP Syria, Pounds + SZL Swaziland, Emalangeni + THB Thailand, Baht + TJS Tajikistan, Somoni + TMT Turkmenistan, Manats + TND Tunisia, Dinars + TOP Tonga, Pa'anga + TRY Turkey, Liras + TTD Trinidad and Tobago, Dollars + TWD Taiwan, New Dollars + TZS Tanzania, Shillings + UAH Ukraine, Hryvnia + UGX Uganda, Shillings + USD United States of America, Dollars + UYU Uruguay, Pesos + UZS Uzbekistan, Sums + VEF Venezuela, Bolivares + VND Viet Nam, Dong + VUV Vanuatu, Vatu + WST Samoa, Tala + XAF Communauté Financière Africaine BEAC, Francs + XCD East Caribbean Dollars + XOF Communauté Financière Africaine BCEAO, Francs + XPD Palladium Ounces + XPF Comptoirs Français du Pacifique Francs + YER Yemen, Rials + ZAR South Africa, Rand + ZMK Zambia, Kwacha + ZWL Zimbabwe, Zimbabwe Dollars + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The appropriate currency code from the ISO 4217 three-byte alpha version for the currency in which a monetary amount is expressed. Currency codes are limited to those of Member States. + Valid entries are: + BGN Bulgaria, Leva + CZK Czech Republic, Koruny + DKK Denmark, Kroner + EEK Estonia, Krooni + EUR Euro Member Countries, Euro + GBP United Kingdom, Pounds + HRK Croatia, Kuna + HUF Hungary, Forint + LTL Lithuania, Litai + LVL Latvia, Lati + PLN Poland, Zlotych + RON Romania, New Lei + SEK Sweden, Kronor + + + + + + + + + + + + + + + + + + + diff --git a/l10n_be_coa_multilang/security/ir.model.access.csv b/l10n_be_coa_multilang/security/ir.model.access.csv new file mode 100644 index 00000000..8d2e1bdf --- /dev/null +++ b/l10n_be_coa_multilang/security/ir.model.access.csv @@ -0,0 +1,5 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_be_legal_financial_reportscheme_manager,be.legal.financial.reportscheme manager,model_be_legal_financial_reportscheme,account.group_account_manager,1,1,1,1 +access_be_legal_financial_reportscheme_user,be.legal.financial.reportscheme user,model_be_legal_financial_reportscheme,account.group_account_user,1,0,0,0 +access_account_tax_code_chart_manager,account.tax.code.chart manager,model_account_tax_code_chart,account.group_account_manager,1,1,1,1 +access_account_tax_code_chart_user,account.tax.code.chart user,model_account_tax_code_chart,account.group_account_user,1,0,0,0 diff --git a/l10n_be_coa_multilang/static/description/icon.png b/l10n_be_coa_multilang/static/description/icon.png new file mode 100644 index 00000000..2ee49b8c Binary files /dev/null and b/l10n_be_coa_multilang/static/description/icon.png differ diff --git a/l10n_be_coa_multilang/views/account_account.xml b/l10n_be_coa_multilang/views/account_account.xml new file mode 100644 index 00000000..6617ed25 --- /dev/null +++ b/l10n_be_coa_multilang/views/account_account.xml @@ -0,0 +1,25 @@ + + + + + + account.account.form.financial_report_ids + account.account + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/l10n_be_coa_multilang/views/account_financial_report.xml b/l10n_be_coa_multilang/views/account_financial_report.xml new file mode 100644 index 00000000..bd573ced --- /dev/null +++ b/l10n_be_coa_multilang/views/account_financial_report.xml @@ -0,0 +1,39 @@ + + + + + + + account.financial.report.form.code + account.financial.report + + + + + + + + + + account.financial.report.tree.code + account.financial.report + + + + + + + + + + account.financial.report.search.code + account.financial.report + + + + + + + + + \ No newline at end of file diff --git a/l10n_be_coa_multilang/views/be_legal_financial_reportscheme.xml b/l10n_be_coa_multilang/views/be_legal_financial_reportscheme.xml new file mode 100644 index 00000000..d959cc4f --- /dev/null +++ b/l10n_be_coa_multilang/views/be_legal_financial_reportscheme.xml @@ -0,0 +1,53 @@ + + + + + be.legal.financial.reportscheme.tree + be.legal.financial.reportscheme + + + + + + + + + + + be.legal.financial.reportscheme.form + be.legal.financial.reportscheme + +
+ + + + + + + + + + + + + + + +
+
+
+ + + Belgian Legal Financial Report Scheme + ir.actions.act_window + be.legal.financial.reportscheme + form + tree,form + + + + +
diff --git a/l10n_be_coa_multilang/views/l10n_be_layouts.xml b/l10n_be_coa_multilang/views/l10n_be_layouts.xml new file mode 100644 index 00000000..7ba8defc --- /dev/null +++ b/l10n_be_coa_multilang/views/l10n_be_layouts.xml @@ -0,0 +1,37 @@ + + + + + + diff --git a/l10n_be_coa_multilang/views/report_financial.xml b/l10n_be_coa_multilang/views/report_financial.xml new file mode 100644 index 00000000..ee9dc0e6 --- /dev/null +++ b/l10n_be_coa_multilang/views/report_financial.xml @@ -0,0 +1,61 @@ + + + + + + diff --git a/l10n_be_coa_multilang/views/report_l10nbevatdeclaration.xml b/l10n_be_coa_multilang/views/report_l10nbevatdeclaration.xml new file mode 100644 index 00000000..1d84a6e4 --- /dev/null +++ b/l10n_be_coa_multilang/views/report_l10nbevatdeclaration.xml @@ -0,0 +1,54 @@ + + + + + + diff --git a/l10n_be_coa_multilang/views/report_l10nbevatintracom.xml b/l10n_be_coa_multilang/views/report_l10nbevatintracom.xml new file mode 100644 index 00000000..8f637e68 --- /dev/null +++ b/l10n_be_coa_multilang/views/report_l10nbevatintracom.xml @@ -0,0 +1,83 @@ + + + + + + diff --git a/l10n_be_coa_multilang/views/report_l10nbevatlisting.xml b/l10n_be_coa_multilang/views/report_l10nbevatlisting.xml new file mode 100644 index 00000000..2e2023f9 --- /dev/null +++ b/l10n_be_coa_multilang/views/report_l10nbevatlisting.xml @@ -0,0 +1,89 @@ + + + + + + diff --git a/l10n_be_coa_multilang/views/res_partner.xml b/l10n_be_coa_multilang/views/res_partner.xml new file mode 100644 index 00000000..5c0b3814 --- /dev/null +++ b/l10n_be_coa_multilang/views/res_partner.xml @@ -0,0 +1,15 @@ + + + + + res.partner.vat_subjected + res.partner + + + + + + + + + \ No newline at end of file diff --git a/l10n_be_coa_multilang/wizards/__init__.py b/l10n_be_coa_multilang/wizards/__init__.py new file mode 100644 index 00000000..1d99be85 --- /dev/null +++ b/l10n_be_coa_multilang/wizards/__init__.py @@ -0,0 +1,8 @@ +from . import accounting_report +from . import account_common_report +from . import l10n_be_coa_multilang_config +from . import l10n_be_update_be_reportscheme +from . import l10n_be_vat_common +from . import l10n_be_vat_declaration +from . import l10n_be_vat_intracom +from . import l10n_be_vat_listing diff --git a/l10n_be_coa_multilang/wizards/account_common_report.py b/l10n_be_coa_multilang/wizards/account_common_report.py new file mode 100644 index 00000000..ee7822f5 --- /dev/null +++ b/l10n_be_coa_multilang/wizards/account_common_report.py @@ -0,0 +1,37 @@ +# Copyright 2009-2018 Noviat. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, models + + +class AccountCommonReport(models.TransientModel): + _inherit = 'account.common.report' + + def _build_contexts(self, data): + """ + No date_from for balance sheet if we select a fiscal year. + """ + result = super(AccountCommonReport, self)._build_contexts(data) + if self.date_range_id.type_id.fiscal_year: + module = __name__.split('addons.')[1].split('.')[0] + be_bs = self.env.ref( + '%s.account_financial_report_BE_2_FULL' % module) + if self.account_report_id == be_bs: + result['date_from'] = False + return result + + @api.multi + def check_report(self): + res = super(AccountCommonReport, self).check_report() + if self.date_range_id.type_id.fiscal_year: + module = __name__.split('addons.')[1].split('.')[0] + be_bs = self.env.ref( + '%s.account_financial_report_BE_2_FULL' % module) + be_pl = self.env.ref( + '%s.account_financial_report_BE_3_FULL' % module) + if self.account_report_id in [be_bs, be_pl]: + report = res['data']['form']['account_report_id'] + report = (report[0], + ' - '.join([report[1], self.date_range_id.name])) + res['data']['form']['account_report_id'] = report + return res diff --git a/l10n_be_coa_multilang/wizards/accounting_report.py b/l10n_be_coa_multilang/wizards/accounting_report.py new file mode 100644 index 00000000..24d48690 --- /dev/null +++ b/l10n_be_coa_multilang/wizards/accounting_report.py @@ -0,0 +1,23 @@ +# Copyright 2009-2017 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, models + + +class AccountingReport(models.TransientModel): + _inherit = 'accounting.report' + + @api.multi + def _build_contexts(self, data): + result = super(AccountingReport, self)._build_contexts(data) + account_report = self.account_report_id + module = 'l10n_be_coa_multilang' + refs = [ + 'account_financial_report_BE_2_FULL', + 'account_financial_report_BE_3_FULL'] + be_legal_reports = [ + self.env.ref('%s.%s' % (module, ref)) + for ref in refs] + if account_report in be_legal_reports: + result.update({'get_children_by_sequence': True}) + return result diff --git a/l10n_be_coa_multilang/wizards/accounting_report.xml b/l10n_be_coa_multilang/wizards/accounting_report.xml new file mode 100644 index 00000000..960d93a0 --- /dev/null +++ b/l10n_be_coa_multilang/wizards/accounting_report.xml @@ -0,0 +1,45 @@ + + + + + + + Belgian Balance Sheet + accounting.report + ir.actions.act_window + form + form + + new + + + + + + + Belgian Profit And Loss + accounting.report + ir.actions.act_window + form + form + + new + {} + + + + + + \ No newline at end of file diff --git a/l10n_be_coa_multilang/wizards/l10n_be_coa_multilang_config.py b/l10n_be_coa_multilang/wizards/l10n_be_coa_multilang_config.py new file mode 100644 index 00000000..dbfbed03 --- /dev/null +++ b/l10n_be_coa_multilang/wizards/l10n_be_coa_multilang_config.py @@ -0,0 +1,309 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import logging + +from odoo import api, fields, models, _ +from odoo.exceptions import UserError + +_logger = logging.getLogger(__name__) + + +class L10nBeCoaMultilangConfig(models.TransientModel): + """ + - load nl & fr languages + - update company_id country to Belgium + """ + _inherit = 'res.config' + _name = 'l10n.be.coa.multilang.config' + + load_nl_BE = fields.Boolean(string='Load Dutch (nl_BE) Translation') + load_fr_BE = fields.Boolean(string='Load French (fr_BE) Translation') + load_nl_NL = fields.Boolean(string='Load Dutch (nl_NL) Translation') + load_fr_FR = fields.Boolean(string='Load French (fr_FR) Translation') + monolang_coa = fields.Boolean( + string='Monolingual Chart of Accounts', + default=lambda self: self._default_coa_lang(), + help="If checked, the General Account will become " + "a monolingual field. \n" + "This behaviour can be changed afterwards via " + "Settings -> Configuration -> Accounting") + coa_lang = fields.Selection( + selection=[('en', 'English'), + ('fr', 'French'), + ('nl', 'Dutch')], + string='Chart of Accounts Language', + default=lambda self: self._default_coa_lang(), + help="Select the language of the Chart Of Accounts") + company_id = fields.Many2one( + comodel_name='res.company', string='Company', + required=True) + + @api.model + def _default_monolang_coa(self): + # TODO: review logic based upon actual setting of + # account.account,name translate flag + name = 'l10n_account_translate_off' + module = self.env['ir.module.module'].search( + ['name', '=', name]) + if not module: + raise UserError(_( + "Module '%s' is not available " + "in the addons path. " + "\nPlease download this module from 'apps.odoo.com'." + ) % name) + if module.state == 'installed': + return True + + @api.model + def _default_coa_lang(self): + res = self.env.context.get('lang') + res = res and res[:2] + return res in ['fr', 'nl'] and res or 'en' + + @api.model + def default_get(self, fields_list): + ctx = self.env.context.copy() + active_model = self.env.context.get('active_model') + active_id = self.env.context.get('active_id') + if active_model == 'account.config.settings': + acc_config_wiz = self.env[active_model].browse(active_id) + ctx['default_company_id'] = acc_config_wiz.company_id.id + elif not ctx.get('default_company_id'): + ctx['default_company_id'] = self.env.user.company_id.id + return super(L10nBeCoaMultilangConfig, + self.with_context(ctx)).default_get(fields_list) + + @api.onchange('load_nl_BE', 'load_fr_BE', 'load_nl_NL', 'load_fr_FR') + def _onchange_load_lang(self): + if self.load_nl_BE or self.load_fr_BE: + self.load_nl_NL = False + self.load_fr_FR = False + elif self.load_nl_NL or self.load_fr_FR: + self.load_nl_BE = False + self.load_fr_BE = False + if self.load_nl_BE or self.load_nl_NL: + self.coa_lang = 'nl' + elif self.load_fr_BE or self.load_fr_FR: + self.coa_lang = 'fr' + + def copy_xlat(self, langs, in_field, in_recs, out_recs, + field_check=True): + # create ir.translation entries based upon + # 1-1 relationship between in_ and out_ params + if len(in_recs) != len(out_recs): + _logger.error( + "The generation of translations from template " + "for %s failed (error 1)!", out_recs._name) + raise UserError( + _("The generation of translations from the template " + "for %s failed!" + "\nPlease report this issue via your Odoo support channel.") + % out_recs._name) + + for lang in langs: + for i, in_rec in enumerate(in_recs): + out_rec = out_recs[i] + if field_check and (getattr(in_rec, in_field) + != getattr(out_rec, in_field)): + _logger.error( + "generate translations from template " + "%s (id:%s) failed (error 3)!" + "\n%s,%s = '%s' i.s.o. '%s'.", + in_rec._name, in_rec.id, out_rec._name, in_field, + getattr(out_rec, in_field), getattr(in_rec, in_field)) + raise UserError( + _("The generation of translations " + "from the template for %s failed!" + "\nPlease report this issue via your " + "Odoo support channel.") + % out_rec._name) + value = in_rec.with_context({'lang': lang}).read( + [in_field])[0][in_field] + if value: + out_rec.with_context({'lang': lang}).write( + {in_field: value}) + + @api.multi + def execute(self): + self_no_ctx = self.with_context({}) + + if self.monolang_coa: + to_install = self.env['ir.module.module'].search( + [('name', '=', 'l10n_account_translate_off')]) + if to_install.state != 'installed': + to_install.button_immediate_install() + else: + to_install = self.env['ir.module.module'].search( + [('name', '=', 'l10n_multilang')]) + if to_install.state != 'installed': + to_install.button_immediate_install() + to_uninstall = self.env['ir.module.module'].search( + [('name', '=', 'l10n_account_translate_off')]) + if to_uninstall.state == 'installed': + to_uninstall.button_immediate_uninstall() + + # Update company country, this is required for auto-configuration + # of the legal financial reportscheme. + self.company_id.country_id = self.env.ref('base.be') + + module = __name__.split('addons.')[1].split('.')[0] + chart_template = self.env.ref( + '%s.l10n_be_coa_multilang_template' % module) + chart_templates = [chart_template] + parent_chart = chart_template.parent_id + while parent_chart: + chart_templates.insert(0, parent_chart) + parent_chart = parent_chart.parent_id + + # load languages + langs = (self.load_nl_BE and ['nl_BE'] or []) + \ + (self.load_fr_BE and ['fr_BE'] or []) + \ + (self.load_nl_NL and ['nl_NL'] or []) + \ + (self.load_fr_FR and ['fr_FR'] or []) + + if langs: + installed_modules = self.env['ir.module.module'].search( + [('state', '=', 'installed')]) + for lang in langs: + lang_rs = self.env['res.lang'].search([('code', '=', lang)]) + if not lang_rs: + installed_modules._update_translations(filter_lang=lang) + + # find all installed fr/nl languages + lang_rs = self.env['res.lang'].search( + ['|', ('code', '=like', 'fr_%'), ('code', '=like', 'nl_%')]) + langs = [l.code for l in lang_rs] + + # copy account.account translations + in_field = 'name' + account_tmpls = self_no_ctx.env['account.account.template'] + for template in chart_templates: + account_tmpls += account_tmpls.search( + [('chart_template_id', '=', template.id)]) + account_tmpls.sorted(key=lambda r: r.code) + accounts = self_no_ctx.env['account.account'].search( + [('company_id', '=', self.company_id.id)], order='code') + + # Remove accounts with no account_template counterpart. + # The logic is based upon template codes with length equal + # to acount.chart.template,code_digits which is the case + # for the current 'l10n_be_coa_multilang' chart + codes = accounts.mapped('code') + account_tmpls = account_tmpls.filtered( + lambda r: r.code in codes) + tmpl_codes = account_tmpls.mapped('code') + accounts = accounts.filtered( + lambda r: r.code in tmpl_codes) + if self.monolang_coa: + lang = False + if self.coa_lang == 'en': + lang = self.env['res.lang'].search( + [('code', '=like', 'en_%')], limit=1).code + elif self.coa_lang == 'nl': + lang = (self.load_nl_BE and 'nl_BE') or \ + (self.load_nl_NL and 'nl_NL') + if not lang: + lang = self.env['res.lang'].search( + [('code', '=like', 'nl_%')], limit=1).code + elif self.coa_lang == 'fr': + lang = (self.load_fr_BE and 'fr_BE') or \ + (self.load_fr_FR and 'fr_FR') + if not lang: + lang = self.env['res.lang'].search( + [('code', '=like', 'fr_%')], limit=1).code + if not lang: + raise UserError( + _("The setup of the Accounts has failed since language " + "'%s' is not installed on your database.") + % self.coa_lang) + account_tmpls = account_tmpls.with_context(lang=lang) + for i, account in enumerate(accounts): + account.name = account_tmpls[i].name + else: + for i, account in enumerate(accounts): + account.name = account_tmpls[i].name + # no field value check to enable mono- to multi-lang + # via this config wizard + self.copy_xlat(langs, in_field, account_tmpls, accounts, + field_check=False) + + # copy account.tax codes and translations + tax_tmpls = self_no_ctx.env['account.tax.template'] + for template in chart_templates: + tax_tmpls += tax_tmpls.search( + [('chart_template_id', '=', template.id)], + order='sequence,description,name' + ) + taxes = self_no_ctx.env['account.tax'].search( + [('company_id', '=', self.company_id.id)], + order='sequence,description,name' + ) + # Perform basic sanity check on in/out pairs to protect against + # changes in the process that generates tax objects from templates + for i, tmpl in enumerate(tax_tmpls): + if tmpl.name != taxes[i].name: + raise UserError(_( + "The generation of translations from the template " + "for %s failed! " + "\nTax Template : %s, Tax: %s" + "\nPlease report this issue via " + "your Odoo support channel.") + % (taxes._name, tmpl.name, taxes[i].name)) + taxes[i].code = tmpl.code + in_fields = ['name', 'description'] + for in_field in in_fields: + self.copy_xlat(langs, in_field, tax_tmpls, taxes, + field_check=False) + + # copy account.fiscal.position translations and note field + fpos_tmpls = self_no_ctx.env[ + 'account.fiscal.position.template'].with_context({}) + for template in chart_templates: + fpos_tmpls += fpos_tmpls.search( + [('chart_template_id', '=', template.id)], order='id' + ) + fpos = self_no_ctx.env['account.fiscal.position'].search( + [('company_id', '=', self.company_id.id)], order='id' + ) + # Perform basic sanity check on in/out pairs to protect against + # changes in the process that generates tax objects from templates + for i, tmpl in enumerate(fpos_tmpls): + if tmpl.name != fpos[i].name: + raise UserError(_( + "The generation of translations from the template " + "for %s failed! " + "\nFiscal Position Template : %s, Fiscal Position: %s" + "\nPlease report this issue via " + "your Odoo support channel.") + % (fpos._name, tmpl.name, fpos[i].name)) + for i, tmpl in enumerate(fpos_tmpls): + if tmpl.note: + fpos[i].note = tmpl.note + in_fields = ['name', 'note'] + for in_field in in_fields: + self.copy_xlat(langs, in_field, fpos_tmpls, fpos, + field_check=False) + + # update the entries in the BNB/NBB legal report scheme + upd_wiz = self.env['l10n_be.update_be_reportscheme'] + upd_ctx = {'l10n.be.coa.multilang.config': 1} + note = upd_wiz.with_context(upd_ctx)._update_be_reportscheme() + if note: + wiz = upd_wiz.create({'note': note}) + module = __name__.split('addons.')[1].split('.')[0] + result_view = 'l10n_be_update_be_reportscheme_view_form_result' + view = self.env.ref('%s.%s' % (module, result_view)) + return { + 'name': _('Results'), + 'res_id': wiz.id, + 'view_type': 'form', + 'view_mode': 'form', + 'res_model': 'l10n_be.update_be_reportscheme', + 'view_id': False, + 'target': 'new', + 'views': [(view.id, 'form')], + 'type': 'ir.actions.act_window', + } + else: + return {} diff --git a/l10n_be_coa_multilang/wizards/l10n_be_coa_multilang_config.xml b/l10n_be_coa_multilang/wizards/l10n_be_coa_multilang_config.xml new file mode 100644 index 00000000..42fcb320 --- /dev/null +++ b/l10n_be_coa_multilang/wizards/l10n_be_coa_multilang_config.xml @@ -0,0 +1,47 @@ + + + + l10n_be_coa_multilang setup + l10n.be.coa.multilang.config + + +
+ Accounting Application Configuration +
+ + + + + + + + + + + + + + + + + +
+
+ + + l10n_be_coa_multilang setup + ir.actions.act_window + l10n.be.coa.multilang.config + + form + form + new + + + + l10n_be_coa_multilang setup wizard + + automatic + + +
diff --git a/l10n_be_coa_multilang/wizards/l10n_be_update_be_reportscheme.py b/l10n_be_coa_multilang/wizards/l10n_be_update_be_reportscheme.py new file mode 100644 index 00000000..c3bef80f --- /dev/null +++ b/l10n_be_coa_multilang/wizards/l10n_be_update_be_reportscheme.py @@ -0,0 +1,101 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models, _ +from odoo.exceptions import UserError + + +class l10n_be_update_be_reportscheme(models.TransientModel): + _name = 'l10n_be.update_be_reportscheme' + _description = 'Update BNB/NBB financial reports configuration' + + note = fields.Text('Result', readonly=True) + + def _update_be_reportscheme(self): + """" + This method is executed when installing the module and will + create/update the entries in the BNB/NBB legal report scheme. + """ + note = '' + upd_ctx = {'update_be_reportscheme': True} + scheme_table = self.env['be.legal.financial.reportscheme'].search([]) + be_reports = scheme_table.mapped('report_id') + accounts = self.env[ + 'account.account'].with_context(upd_ctx).search([]) + + # filter out accounts that do not belong to a reporting group + be_scheme_accounts = self.env['account.account'] + for account in accounts: + for entry in scheme_table: + if account.code[:len(entry.account_group)] \ + == entry.account_group and entry.report_id: + be_scheme_accounts += account + break + + # delete old reporting configuration + for account in be_scheme_accounts: + updates = [] + old = account.financial_report_ids.filtered( + lambda r: r in be_reports) + if old: + updates.append((3, old.id)) + be_report_entries = scheme_table.filtered( + lambda x: + account.code[:len(x.account_group)] == x.account_group) + if len(be_report_entries) > 1: + raise UserError( + _("Configuration Error !"), + _("Configuration Error in the " + "Belgian Legal Financial Report Scheme.")) + be_report = be_report_entries.report_id + updates.append((4, be_report.id)) + account.financial_report_ids = updates + + # write list of entries that are not included in + # the BNB reports to the note field + non_be_scheme_accounts = accounts - be_scheme_accounts + if self.env.context.get('l10n.be.coa.multilang.config'): + # avoid warning for unaffected earnings account + # when running config wizard + non_be_scheme_accounts = non_be_scheme_accounts.filtered( + lambda r: r.code != '999999') + if non_be_scheme_accounts: + note += _("Following accounts are not included in " + "the legal Belgian Balance and P&L reports:\n\n") + for acc in non_be_scheme_accounts: + note += "Code: %s (id: %s), company: %s\n" % ( + acc.code, acc.id, acc.company_id.name) + note += "\n" + + return note + + @api.multi + def update_be_reportscheme(self): + self.ensure_one() + note = self._update_be_reportscheme() + module = __name__.split('addons.')[1].split('.')[0] + if note: + self.note = note + result_view = self.env.ref( + '%s.%s_view_form_result' % (module, self._table)) + return { + 'name': _('Results'), + 'res_id': self.id, + 'view_type': 'form', + 'view_mode': 'form', + 'res_model': self._name, + 'target': 'new', + 'view_id': result_view.id, + 'type': 'ir.actions.act_window'} + else: + todo = self.env.ref('%s.%s_todo' % (module, self._table)) + todo.state = 'done' + return {'type': 'ir.actions.act_window_close'} + + @api.multi + def button_close(self): + self.ensure_one() + module = __name__.split('addons.')[1].split('.')[0] + todo = self.env.ref('%s.%s_todo' % (module, self._table)) + todo.state = 'done' + return {'type': 'ir.actions.act_window_close'} diff --git a/l10n_be_coa_multilang/wizards/l10n_be_update_be_reportscheme.xml b/l10n_be_coa_multilang/wizards/l10n_be_update_be_reportscheme.xml new file mode 100644 index 00000000..594a14bb --- /dev/null +++ b/l10n_be_coa_multilang/wizards/l10n_be_update_be_reportscheme.xml @@ -0,0 +1,65 @@ + + + + + + + Update reporting configuration for Belgian BNB/NBB legal reportscheme + l10n_be.update_be_reportscheme + 1 + +
+ + +
+
+
+
+
+ + + Update reporting configuration for Belgian BNB/NBB legal reportscheme + l10n_be.update_be_reportscheme + 2 + +
+ + + + + + +
+
+
+
+
+ + + Update reporting configuration for Belgian BNB/NBB legal reportscheme + ir.actions.act_window + l10n_be.update_be_reportscheme + form + form + new + + + + + + Belgian BNB/NBB reportscheme Configuration + + manual + done + + + +
diff --git a/l10n_be_coa_multilang/wizards/l10n_be_vat_common.py b/l10n_be_coa_multilang/wizards/l10n_be_vat_common.py new file mode 100644 index 00000000..c4bffaca --- /dev/null +++ b/l10n_be_coa_multilang/wizards/l10n_be_vat_common.py @@ -0,0 +1,408 @@ +# Copyright 2009-2017 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import calendar +import time +from lxml import etree +from io import BytesIO +from sys import exc_info +from traceback import format_exception + +from odoo import api, fields, models, _ +from odoo.modules.module import get_module_resource +from odoo.exceptions import UserError + + +class l10nBeVatCommon(models.AbstractModel): + _name = 'l10n.be.vat.common' + _description = 'Common code for Belgian VAT reports' + + company_id = fields.Many2one( + comodel_name='res.company', + default=lambda self: self._default_company_id(), + required=True, + string='Company') + currency_id = fields.Many2one( + comodel_name='res.currency', + related='company_id.currency_id', + readonly=True) + declarant_id = fields.Many2one( + comodel_name='res.partner', + required=True, + string='Declarant', + help="Select the contact for the declaration") + year = fields.Char( + size=4, required=True, + default=lambda self: self._default_year()) + period_length = fields.Selection( + selection=[('month', 'Month'), + ('quarter', 'Quarter')]) + month = fields.Selection( + selection=[('01', 'Januari'), + ('02', 'Februari'), + ('03', 'March'), + ('04', 'April'), + ('05', 'May'), + ('06', 'June'), + ('07', 'July'), + ('08', 'August'), + ('09', 'September'), + ('10', 'October'), + ('11', 'November'), + ('12', 'December')]) + quarter = fields.Selection( + selection=[('1', 'Q1'), + ('2', 'Q2'), + ('3', 'Q3'), + ('4', 'Q4')]) + period = fields.Char( + compute='_compute_period') + date_range_id = fields.Many2one( + comodel_name='date.range', + string='Period') + date_from = fields.Date(string='Start Date') + date_to = fields.Date(string='End Date') + file_name = fields.Char() + file_save = fields.Binary( + string='Save File', readonly=True) + comments = fields.Text(string='Comments') + note = fields.Text(string='Notes', default='') + + @api.model + def _default_company_id(self): + return self.env.user.company_id + + @api.model + def _default_year(self): + if self._name == 'l10n.be.vat.listing': + year = str(int(time.strftime('%Y')) - 1) + else: + year = str(int(time.strftime('%Y'))) + return year + + @api.one + @api.depends('year', 'period_length', 'month', 'quarter') + def _compute_period(self): + if self.year and self.period_length: + if self.period_length == 'month': + self.period = '%s-%s' % (self.year, self.month) + else: + self.period = '%s-Q%s' % (self.year, self.quarter) + + @api.model + @api.constrains('year') + def _check_year(self): + for this in self: + s = str(this.year) + if len(s) != 4 or s[0] not in ['1', '2']: + raise UserError(_("Invalid Year !")) + + @api.onchange('company_id') + def _onchange_company_id(self): + if self.company_id: + contacts = self.company_id.partner_id.child_ids.filtered( + lambda r: r.type == 'invoice') + self.declarant_id = contacts and contacts[0] \ + or self.company_id.partner_id + decl_dom = [ + '|', + ('parent_id', '=', self.company_id.id), + ('id', '=', self.company_id.id)] + return {'domain': {'declarant_id': decl_dom}} + + @api.onchange('year', 'period_length', 'month', 'quarter') + def _onchange_period(self): + if self.year: + if self._name == 'l10n.be.vat.listing': + self.date_from = '%s-01-01' % self.year + self.date_to = '%s-12-31' % self.year + elif self.period_length: + if self.period_length == 'month' and self.month: + m_from = self.month + m_to = self.month + elif self.period_length == 'quarter' and self.quarter: + i = int(self.quarter) - 1 + m_from = ['01', '04', '07', '10'][i] + m_to = ['03', '06', '09', '12'][i] + else: + m_from = m_to = False + self.date_from = m_from and '%s-%s-01' % (self.year, m_from) + d_to = m_to and calendar.monthrange( + int(self.year), int(m_to))[1] + self.date_to = d_to and '%s-%s-%s' % (self.year, m_to, d_to) + + @api.onchange('date_range_id') + def _onchange_date_range_id(self): + self.date_from = self.date_range_id.date_start + self.date_to = self.date_range_id.date_end + + @api.multi + def create_xls(self): + raise UserError(_( + "The XLS export function is not available.")) + + @api.multi + def create_xml(self): + raise UserError(_( + "The XML export function is not available.")) + + def _normalise_vat(self, vat): + if vat: + vat = vat.replace(' ', '').replace('.', '').upper() + if vat[:2] == 'BE' and len(vat) == 11: + vat = 'BE0' + vat[2:] + return vat or '-' + + def _get_company_vat(self): + cpart = self.company_id.partner_id + company_vat = cpart.vat + if not company_vat: + raise UserError(_("No company VAT number")) + company_vat = self._normalise_vat(cpart.vat) + return company_vat + + def _get_move_line_date_domain(self): + aml_dom = [ + ('company_id', '=', self.company_id.id), + ('date', '>=', self.date_from), + ('date', '<=', self.date_to)] + return aml_dom + + def _get_company_data(self): + cpart = self.company_id.partner_id + company_vat = self._get_company_vat() + + company_street = cpart.street + if not company_street: + raise UserError(_( + "No 'Street' for %s") + % cpart.name) + if cpart.street2: + company_street += ' ' + cpart.street2 + + company_zip = cpart.zip + if not company_zip: + raise UserError(_( + "No 'ZIP Code' for %s") + % cpart.name) + + company_city = cpart.city + if not company_city: + raise UserError(_( + "No 'City' for %s") + % cpart.name) + + company_data = { + 'vat': company_vat, + 'name': self.company_id.name, + 'street': company_street, + 'zip': company_zip, + 'city': company_city, + 'country_code': 'BE', + } + return company_data + + def _get_declarant_data(self): + email = self.declarant_id.email + if not email: + raise UserError(_( + "No 'email' for %s") + % self.declarant_id.name) + + phone = self.declarant_id.phone + if not phone: + raise UserError(_( + "No 'phone' for %s") + % self.declarant_id.name) + phone = phone.replace('+', '00').replace(' ', '') + no_break_space = '\u00A0' + phone = phone.replace(no_break_space, '') + + declarant_data = { + 'email': email, + 'phone': phone, + } + return declarant_data + + def _get_declaration_ref(self): + seq = self.env['ir.sequence'].next_by_code('declarantseq') + company_vat = self._get_company_vat() + ref = company_vat[2:] + seq[-4:] + return ref + + def _node_Representative(self, parent, ns_map): + company_data = self._get_company_data() + declarant_data = self._get_declarant_data() + + Representative = etree.SubElement( + parent, 'Representative') + + RepresentativeID = etree.SubElement( + Representative, + etree.QName(ns_map['ic'], 'RepresentativeID'), + attrib={ + 'issuedBy': company_data['country_code'], + 'identificationType': 'NVAT', + } + ) + RepresentativeID.text = company_data['vat'][2:] + + RepresentativeName = etree.SubElement( + Representative, + etree.QName(ns_map['ic'], 'Name'), + ) + RepresentativeName.text = company_data['name'] + + RepresentativeStreet = etree.SubElement( + Representative, + etree.QName(ns_map['ic'], 'Street'), + ) + RepresentativeStreet.text = company_data['street'] + + RepresentativePostCode = etree.SubElement( + Representative, + etree.QName(ns_map['ic'], 'PostCode'), + ) + RepresentativePostCode.text = company_data['zip'] + + RepresentativeCity = etree.SubElement( + Representative, + etree.QName(ns_map['ic'], 'City'), + ) + RepresentativeCity.text = company_data['city'] + + RepresentativeCountryCode = etree.SubElement( + Representative, + etree.QName(ns_map['ic'], 'CountryCode'), + ) + RepresentativeCountryCode.text = company_data['country_code'] + + RepresentativeEmailAddress = etree.SubElement( + Representative, + etree.QName(ns_map['ic'], 'EmailAddress'), + ) + RepresentativeEmailAddress.text = declarant_data['email'] + + RepresentativePhone = etree.SubElement( + Representative, + etree.QName(ns_map['ic'], 'Phone'), + ) + RepresentativePhone.text = declarant_data['phone'] + + def _node_RepresentativeReference(self, parent, ns_map, ref): + RepresentativeReference = etree.SubElement( + parent, 'RepresentativeReference') + RepresentativeReference.text = ref + + def _node_Declarant(self, parent, ns_map): + company_data = self._get_company_data() + declarant_data = self._get_declarant_data() + + Declarant = etree.SubElement(parent, 'Declarant') + + DeclarantVATNumber = etree.SubElement( + Declarant, + etree.QName(ns_map['ic'], 'VATNumber'), + ) + DeclarantVATNumber.text = company_data['vat'][2:] + + DeclarantName = etree.SubElement( + Declarant, + etree.QName(ns_map['ic'], 'Name'), + ) + DeclarantName.text = company_data['name'] + + DeclarantStreet = etree.SubElement( + Declarant, + etree.QName(ns_map['ic'], 'Street'), + ) + DeclarantStreet.text = company_data['street'] + + DeclarantPostCode = etree.SubElement( + Declarant, + etree.QName(ns_map['ic'], 'PostCode'), + ) + DeclarantPostCode.text = company_data['zip'] + + DeclarantCity = etree.SubElement( + Declarant, + etree.QName(ns_map['ic'], 'City'), + ) + DeclarantCity.text = company_data['city'] + + DeclarantCountryCode = etree.SubElement( + Declarant, + etree.QName(ns_map['ic'], 'CountryCode'), + ) + DeclarantCountryCode.text = company_data['country_code'] + + DeclarantEmailAddress = etree.SubElement( + Declarant, + etree.QName(ns_map['ic'], 'EmailAddress'), + ) + DeclarantEmailAddress.text = declarant_data['email'] + + DeclarantPhone = etree.SubElement( + Declarant, + etree.QName(ns_map['ic'], 'Phone'), + ) + DeclarantPhone.text = declarant_data['phone'] + + def _node_Period(self, parent, ns_map): + Period = etree.SubElement(parent, 'Period') + if self.period_length == 'month': + Month = etree.SubElement(Period, 'Month') + Month.text = self.month + else: + Quarter = etree.SubElement(Period, 'Quarter') + Quarter.text = self.quarter + Year = etree.SubElement(Period, 'Year') + Year.text = str(self.year) + + def _node_Comment(self, parent, ns_map): + if self.comments: + Comment = etree.SubElement(parent, 'Comment') + Comment.text = self.comments + + def _validate_xmlschema(self, xml_string, xsd): + module = __name__.split('addons.')[1].split('.')[0] + path = get_module_resource(module, 'schemas', xsd) + try: + schema = etree.XMLSchema(etree.parse(open(path, 'rb'))) + t = etree.parse(BytesIO(xml_string)) + schema.assertValid(t) + except (etree.XMLSchemaParseError, etree.DocumentInvalid) as e: + raise UserError('%s\n\n%s' % (e.__class__.__name__, str(e))) + except Exception: + error = _("Unknown Error") + tb = ''.join(format_exception(*exc_info())) + error += '\n%s' % tb + raise UserError(error) + + def _action_save_xml(self): + module = __name__.split('addons.')[1].split('.')[0] + result_view = self.env.ref( + '%s.l10n_be_vat_common_view_form_xml' % module) + + return { + 'name': _('Save XML'), + 'res_id': self.id, + 'view_type': 'form', + 'view_mode': 'form', + 'res_model': self._name, + 'target': 'new', + 'view_id': result_view.id, + 'type': 'ir.actions.act_window', + } + + def _move_lines_act_window(self): + mod = 'account_move_line_search_extension' + act = 'account_move_line_action_search_extension' + act_window = self.env.ref( + '%s.%s' % (mod, act), + raise_if_not_found=False) + if not act_window: + mod_std = 'account' + act_std = 'action_account_moves_all_a' + act_window = self.env.ref('%s.%s' % (mod_std, act_std)) + return act_window.read()[0] diff --git a/l10n_be_coa_multilang/wizards/l10n_be_vat_common.xml b/l10n_be_coa_multilang/wizards/l10n_be_vat_common.xml new file mode 100644 index 00000000..6d1a147d --- /dev/null +++ b/l10n_be_coa_multilang/wizards/l10n_be_vat_common.xml @@ -0,0 +1,24 @@ + + + + + Save XML + l10n.be.vat.common + + +
+

Click on link below to download the XML File

+

+ + + + +

+
+
+
+
+
+ +
diff --git a/l10n_be_coa_multilang/wizards/l10n_be_vat_declaration.py b/l10n_be_coa_multilang/wizards/l10n_be_vat_declaration.py new file mode 100644 index 00000000..67c28b91 --- /dev/null +++ b/l10n_be_coa_multilang/wizards/l10n_be_vat_declaration.py @@ -0,0 +1,570 @@ +# Copyright 2009-2018 Noviat +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import base64 +import logging +from lxml import etree + +from odoo import api, fields, models, _ +from odoo.tools.translate import translate +from odoo.exceptions import UserError + +_logger = logging.getLogger(__name__) + +IR_TRANSLATION_NAME = 'l10n.be.vat.declaration' + + +class l10nBeVatDeclaration(models.TransientModel): + _name = 'l10n.be.vat.declaration' + _inherit = 'l10n.be.vat.common' + _description = 'Periodical VAT Declaration' + + ask_restitution = fields.Boolean( + string='Ask Restitution', + help='Request for refund') + ask_payment = fields.Boolean( + string='Ask Payment', + help='Request for payment forms') + client_nihil = fields.Boolean( + string='Last Declaration, no clients in client listing', + help='Applies only to the last declaration of the calendar year ' + 'or the declaration concerning the cessation of activity:\n' + 'no clients to be included in the client listing.') + # result view fields + case_ids = fields.One2many( + comodel_name='l10n.be.vat.declaration.case', + inverse_name='declaration_id', + string='Cases') + + @api.multi + def generate_declaration(self): + self.ensure_one() + self.note = '' + case_vals = self._get_case_vals() + self.case_ids = [(0, 0, x) for x in case_vals] + + negative_cases = self.case_ids.filtered(lambda x: x.amount < 0.0) + warnings = [x for x in negative_cases + if x.case_id.code in self._intervat_cases()] + if warnings: + self.note += _( + "Negative values found for cases %s" + % [str(x.case_id.code) for x in warnings]) + self.note += '\n' + self.note += _( + "These needs to be corrected before submitting the " + "VAT declaration.") + + module = __name__.split('addons.')[1].split('.')[0] + result_view = self.env.ref( + '%s.%s_view_form_declaration' % (module, self._table)) + + return { + 'name': _('Periodical VAT Declaration'), + 'res_id': self.id, + 'view_type': 'form', + 'view_mode': 'form', + 'res_model': self._name, + 'target': 'inline', + 'view_id': result_view.id, + 'type': 'ir.actions.act_window', + } + + @api.multi + def create_xls(self): + report_file = 'vat_declaration_%s' % self.period + module = __name__.split('addons.')[1].split('.')[0] + report_name = '{}.vat_declaration_xls'.format(module) + report = { + 'name': _('Periodical VAT Declaration'), + 'type': 'ir.actions.report', + 'report_type': 'xlsx', + 'report_name': report_name, + 'report_file': report_name, + 'context': dict(self.env.context, report_file=report_file), + 'data': {'dynamic_report': True}, + } + return report + + @api.multi + def create_xml(self): + """ + Intervat XML Periodical VAT Declaration. + In the current version of this module the 'Representative' + is equal to the 'Declarant'. + """ + + ns_map = { + None: 'http://www.minfin.fgov.be/VATConsignment', + 'ic': 'http://www.minfin.fgov.be/InputCommon', + } + + Doc = etree.Element( + 'VATConsignment', + attrib={'VATDeclarationsNbr': '1'}, + nsmap=ns_map) + + self._node_Representative(Doc, ns_map) + ref = self._get_declaration_ref() + self._node_RepresentativeReference(Doc, ns_map, ref) + + self._node_VATDeclaration(Doc, ns_map, ref) + + xml_string = etree.tostring( + Doc, pretty_print=True, + encoding='ISO-8859-1', xml_declaration=True) + + self._validate_xmlschema(xml_string, 'NewTVA-in_v0_9.xsd') + self.file_name = 'vat_declaration_%s.xml' % self.period + self.file_save = base64.encodestring(xml_string) + + return self._action_save_xml() + + @api.multi + def print_declaration(self): + module = __name__.split('addons.')[1].split('.')[0] + return self.env.ref( + '%s.action_report_l10nbevatdeclaration' % module + ).report_action(self) + + def _intervat_cases(self): + return [ + '00', '01', '02', '03', '44', '45', '46', '47', '48', '49', + '54', '55', '56', '57', '59', '61', '62', '63', '64', '71', + '72', '81', '82', '83', '84', '85', '86', '87', '88', '91', + ] + + def _base_out_invoice_cases(self): + return ['00', '01', '02', '03', '44', '45', '46L', '46T', '47'] + + def _base_out_refund_cases(self): + return ['48', '49'] + + def _base_in_invoice_cases(self): + return [] + + def _base_in_refund_cases(self): + return ['84', '85D'] + + def _base_in_invoice_refund_cases(self): + return ['81D', '82D', '83D', '86', '87', '88'] + + def _invoice_base_cases(self): + cases = ( + self._base_out_invoice_cases() + + self._base_out_refund_cases() + + self._base_in_invoice_cases() + + self._base_in_refund_cases() + + self._base_in_invoice_refund_cases() + ) + return cases + + def _tax_debt_out_invoice_cases(self): + return ['54'] + + def _tax_deductible_out_refund_cases(self): + return ['64'] + + def _tax_debt_in_invoice_cases(self): + return ['55', '56', '57'] + + def _tax_deductible_in_invoice_cases(self): + return ['59', '81ND', '82ND', '83ND'] + + def _tax_debt_in_refund_cases(self): + return ['63', '85ND'] + + def _invoice_tax_cases(self): + cases = ( + self._tax_debt_out_invoice_cases() + + self._tax_deductible_out_refund_cases() + + self._tax_debt_in_invoice_cases() + + self._tax_deductible_in_invoice_cases() + + self._tax_debt_in_refund_cases() + ) + return cases + + def _tax_debt_correction_cases(self): + return ['61'] + + def _tax_deductible_correction_cases(self): + return ['62'] + + def _tax_advance_cases(self): + return ['91'] + + def _other_cases(self): + cases = ( + self._tax_debt_correction_cases() + + self._tax_deductible_correction_cases() + + self._tax_advance_cases() + ) + return cases + + def _get_case_domain(self, case): + if case.code in self._invoice_base_cases(): + taxes = self.env['account.tax'].search( + [('tag_ids.code', '=', case.code)]) + aml_dom = [('tax_ids.id', 'in', taxes.ids)] + elif case.code in self._invoice_tax_cases(): + taxes = self.env['account.tax'].search( + [('tag_ids.code', '=', case.code)]) + aml_dom = [('tax_line_id.id', 'in', taxes.ids)] + # special case to support invoices containing + # only deductible VAT. + # This is an undocumented feature of this module + # since we recommend to add such a line into the invoice tax + # window (via the 'account_invoice_tax_manual' module). + if case.code == '59': + aml_dom = ['|', ('tax_ids.code', '=', 'VAT-V59')] + aml_dom + elif case.code in self._other_cases(): + taxes = self.env['account.tax'].search( + [('tag_ids.code', '=', case.code)]) + aml_dom = ['|', ('tax_line_id.id', 'in', taxes.ids), + ('tax_ids.id', 'in', taxes.ids)] + else: + raise UserError(_( + "Configuration error for tax case %s") + % case.code) + # TODO: + # PR to Odoo for adding inv_type as stored related field in aml + # so that we can improve the read_group query peformance + inv_type = False + if case.code in (self._base_out_invoice_cases() + + self._tax_debt_out_invoice_cases()): + inv_type = 'out_invoice' + elif case.code in (self._base_out_refund_cases() + + self._tax_deductible_out_refund_cases()): + inv_type = 'out_refund' + elif case.code in (self._base_in_invoice_cases() + + self._tax_debt_in_invoice_cases() + + self._tax_deductible_in_invoice_cases()): + inv_type = 'in_invoice' + elif case.code in (self._base_in_refund_cases() + + self._tax_debt_in_refund_cases()): + inv_type = 'in_refund' + if inv_type: + if inv_type in ['out_refund']: + # POS orders may not have an invoice but are + # posted in a sale journal hence we need to filter out + # the credit note cases for 'no invoice' entries in sale + # journals. + inv_type_args = [ + '|', + ('invoice_id.type', '=', inv_type), + '&', + ('invoice_id', '=', False), + ('journal_id.type', '!=', 'sale') + ] + else: + inv_type_args = [ + '|', + ('invoice_id.type', '=', inv_type), + ('invoice_id', '=', False), + ] + aml_dom = ['&'] + aml_dom + inv_type_args + return aml_dom + + def _calc_parent_case_amount(self, case, amounts): + if case.id not in amounts: + for child in case.child_ids: + if child.id not in amounts: + self._calc_parent_case_amount(child, amounts) + amounts[case.id] = sum( + [x.factor * amounts[x.id] for x in case.child_ids]) + + def _get_case_amounts(self, case_root): + cases = case_root.search( + [('parent_id', 'child_of', case_root.id), + ('child_ids', '=', False)]) + amounts = {} + date_dom = self._get_move_line_date_domain() + for case in cases: + aml_dom = date_dom + self._get_case_domain(case) + flds = ['partner_id', 'debit', 'credit'] + groupby = [] + amt = self.env['account.move.line'].read_group( + aml_dom, flds, groupby)[0] + + if case.code in (self._base_out_invoice_cases() + + self._base_in_refund_cases() + + self._tax_debt_out_invoice_cases() + + self._tax_debt_in_invoice_cases() + + self._tax_debt_in_refund_cases()): + debit_factor = credit_factor = -1 + elif case.code in (self._base_in_invoice_cases() + + self._base_out_refund_cases() + + self._base_in_invoice_refund_cases() + + self._tax_deductible_in_invoice_cases() + + self._tax_deductible_out_refund_cases()): + debit_factor = credit_factor = 1 + elif case.code in self._tax_debt_correction_cases(): + debit_factor = 1 + credit_factor = 0 + elif case.code in self._tax_deductible_correction_cases(): + debit_factor = 0 + credit_factor = -1 + elif case.code in self._tax_advance_cases(): + debit_factor = credit_factor = 1 + + amounts[case.id] = self.currency_id.round( + debit_factor * (amt['debit'] or 0.0) - + credit_factor * (amt['credit'] or 0.0)) + + self._calc_parent_case_amount(case_root, amounts) + + return amounts + + def _get_case_child(self, case, level, case_vals, case_amounts): + case_vals.append({ + 'case_id': case.id, + 'level': level, + 'active': not case.invisible, + 'amount': case_amounts.get(case.id, 0.0), + }) + for child in case.child_ids: + self._get_case_child(child, level + 1, case_vals, case_amounts) + + def _get_case_vals(self): + case_root = self.env['account.tax.code.chart'].search( + [('country_id', '=', self.env.ref('base.be').id), + ('parent_id', '=', False)]) + if len(case_root) != 1: + raise UserError(_( + "Incorrect Belgian Tax Tag Code Chart." + "\nReport this problem via your Odoo support " + "partner.")) + + case_amounts = self._get_case_amounts(case_root) + + case_vals = [] + level = 0 + for child in case_root.child_ids: + self._get_case_child(child, level, case_vals, case_amounts) + return case_vals + + def _node_VATDeclaration(self, parent, ns_map, ref): + + VATDeclaration = etree.SubElement( + parent, 'VATDeclaration', + attrib={ + 'SequenceNumber': '1', + 'DeclarantReference': ref, + } + ) + + # ReplacedVATDeclaration not supported at this point in time + # TODO: + # Create object to save legal VAT declarations in order to + # and add support of replacements. + # self._node_ReplacedVATDeclaration( + # VATDeclaration, ns_map, replace_ref) + + self._node_Declarant(VATDeclaration, ns_map) + self._node_Period(VATDeclaration, ns_map) + + # Deduction not supported at this point in time + # self._node_Deduction(VATDeclaration, ns_map) + + self._node_Data(VATDeclaration, ns_map) + + ClientListingNihil = etree.SubElement( + VATDeclaration, 'ClientListingNihil') + ClientListingNihil.text = self.client_nihil and 'YES' or 'NO' + + etree.SubElement( + VATDeclaration, 'Ask', + attrib={ + 'Restitution': self.ask_restitution and 'YES' or 'NO', + 'Payment': self.ask_payment and 'YES' or 'NO', + } + ) + + # TODO: add support for attachments + # self._node_FileAttachment(parent, ns_map) + + self._node_Comment(VATDeclaration, ns_map) + + # Justification not supported at this point in time + + def _get_grid_list(self): + + grid_list = [] + for entry in self.case_ids: + if entry.case_id.code in self._intervat_cases(): + if self.currency_id.round(entry.amount): + grid_list.append({ + 'grid': int(entry.case_id.code), + 'amount': entry.amount}) + elif entry.case_id.code == 'VI': + if self.currency_id.round(entry.amount) >= 0: + grid_list.append({ + 'grid': 71, + 'amount': entry.amount}) + else: + grid_list.append({ + 'grid': 72, + 'amount': -entry.amount}) + grid_list.sort(key=lambda k: k['grid']) + return grid_list + + def _node_Data(self, VATDeclaration, ns_map): + Data = etree.SubElement(VATDeclaration, 'Data') + + grid_list = self._get_grid_list() + + for entry in grid_list: + Amount = etree.SubElement( + Data, 'Amount', + attrib={'GridNumber': str(entry['grid'])}, + ) + Amount.text = '%.2f' % entry['amount'] + + +class l10nBeVatDeclarationCase(models.TransientModel): + _name = 'l10n.be.vat.declaration.case' + _order = 'sequence' + + declaration_id = fields.Many2one( + comodel_name='l10n.be.vat.declaration', + string='Periodical VAT Declaration') + case_id = fields.Many2one( + comodel_name='account.tax.code.chart', + string='Case') + amount = fields.Monetary( + currency_field='currency_id') + sequence = fields.Integer( + related='case_id.sequence') + level = fields.Integer() + active = fields.Boolean() + color = fields.Char( + related='case_id.color') + font = fields.Selection( + related='case_id.font') + currency_id = fields.Many2one( + related='declaration_id.currency_id', + readonly=1) + + @api.multi + def view_move_lines(self): + self.ensure_one() + act_window = self.declaration_id._move_lines_act_window() + date_dom = self.declaration_id._get_move_line_date_domain() + if self.case_id.child_ids: + case_dom = [] + cases = self.case_id.search( + [('parent_id', 'child_of', self.case_id.id), + ('child_ids', '=', False)]) + for i, case in enumerate(cases, start=1): + if i != len(cases): + case_dom += ['|'] + case_dom += self.declaration_id._get_case_domain(case) + else: + case_dom = self.declaration_id._get_case_domain(self.case_id) + act_window['domain'] = date_dom + case_dom + return act_window + + +class l10nBeVatDeclarationXlsx(models.AbstractModel): + _name = 'report.l10n_be_coa_multilang.vat_declaration_xls' + _inherit = 'report.report_xlsx.abstract' + + def _(self, src): + lang = self.env.context.get('lang', 'en_US') + val = translate( + self.env.cr, IR_TRANSLATION_NAME, 'report', lang, src) or src + return val + + def _get_ws_params(self, workbook, data, declaration): + + col_specs = { + 'case': { + 'header': { + 'value': self._('Case'), + }, + 'lines': { + 'value': self._render("c.case_id.code"), + }, + 'width': 8, + }, + 'name': { + 'header': { + 'value': self._('Description'), + }, + 'lines': { + 'value': self._render("c.case_id.name"), + }, + 'width': 70, + }, + 'amount': { + 'header': { + 'value': self._('Amount'), + 'format': self.format_theader_yellow_right, + }, + 'lines': { + 'value': self._render("c.amount"), + 'format': self.format_tcell_amount_right, + }, + 'width': 18, + }, + } + wanted_list = ['case', 'name', 'amount'] + + return [{ + 'ws_name': 'vat_declaration_%s' % declaration.period, + 'generate_ws_method': '_generate_declaration', + 'title': declaration._description, + 'wanted_list': wanted_list, + 'col_specs': col_specs, + }] + + def _generate_declaration(self, workbook, ws, ws_params, data, + declaration): + + ws.set_portrait() + ws.fit_to_pages(1, 0) + ws.set_header(self.xls_headers['standard']) + ws.set_footer(self.xls_footers['standard']) + + self._set_column_width(ws, ws_params) + + row_pos = 0 + row_pos = self._declaration_title(ws, row_pos, ws_params, data, + declaration) + row_pos = self._declaration_info(ws, row_pos, ws_params, data, + declaration) + row_pos = self._declaration_lines(ws, row_pos, ws_params, data, + declaration) + + def _declaration_title(self, ws, row_pos, ws_params, data, declaration): + return self._write_ws_title(ws, row_pos, ws_params) + + def _declaration_info(self, ws, row_pos, ws_params, data, declaration): + ws.write_string(row_pos, 1, self._('Company') + ':', + self.format_left_bold) + ws.write_string(row_pos, 2, declaration.company_id.name) + row_pos += 1 + ws.write_string(row_pos, 1, self._('VAT Number') + ':', + self.format_left_bold) + ws.write_string(row_pos, 2, declaration.company_id.vat or '') + row_pos += 1 + ws.write_string(row_pos, 1, self._('Period') + ':', + self.format_left_bold) + ws.write_string(row_pos, 2, declaration.period) + return row_pos + 2 + + def _declaration_lines(self, ws, row_pos, ws_params, data, declaration): + + row_pos = self._write_line( + ws, row_pos, ws_params, col_specs_section='header', + default_format=self.format_theader_yellow_left) + + ws.freeze_panes(row_pos, 0) + + for c in declaration.case_ids: + row_pos = self._write_line( + ws, row_pos, ws_params, col_specs_section='lines', + render_space={'c': c}, + default_format=self.format_tcell_left) + + return row_pos + 1 diff --git a/l10n_be_coa_multilang/wizards/l10n_be_vat_declaration.xml b/l10n_be_coa_multilang/wizards/l10n_be_vat_declaration.xml new file mode 100644 index 00000000..e00926b2 --- /dev/null +++ b/l10n_be_coa_multilang/wizards/l10n_be_vat_declaration.xml @@ -0,0 +1,124 @@ + + + + + Periodical VAT Declaration + l10n.be.vat.declaration + + +
+ + + + + + + + + + + + + +
+
+
+
+
+ + + Periodical VAT Declaration + l10n.be.vat.declaration + + +
+
+
+ + + + + +
+ +
+ + + + + + + + + +