39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
# Copyright (C) 2016 Onestein (<http://www.onestein.eu>).
|
|
|
|
{
|
|
'name': 'Netherlands - Accounting',
|
|
'version': '3.3',
|
|
'category': 'Accounting/Localizations/Account Charts',
|
|
'author': 'Onestein',
|
|
'website': 'http://www.onestein.eu',
|
|
'depends': [
|
|
'account',
|
|
'base_iban',
|
|
'base_vat',
|
|
],
|
|
'data': [
|
|
'data/account_account_tag.xml',
|
|
'data/account_chart_template.xml',
|
|
'data/account.account.template.csv',
|
|
'data/account_chart_template_post_data.xml',
|
|
'data/account_tax_group_data.xml',
|
|
'data/account_tax_report_data.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_chart_template_data.xml',
|
|
'views/res_partner_views.xml',
|
|
'views/res_company_views.xml',
|
|
'views/res_config_settings_view.xml',
|
|
],
|
|
'demo': [
|
|
'demo/demo_company.xml',
|
|
],
|
|
'installable': True,
|
|
'license': 'LGPL-3',
|
|
}
|