32 lines
963 B
Python
32 lines
963 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Estonia - Accounting',
|
|
'version': '1.1',
|
|
'category': 'Accounting/Localizations/Account Charts',
|
|
'description': """
|
|
This is the base module to manage the accounting chart for Estonia in Odoo.
|
|
""",
|
|
'author': 'Odoo SA',
|
|
'depends': [
|
|
'account',
|
|
'l10n_multilang',
|
|
],
|
|
'data': [
|
|
'data/account_chart_template_data.xml',
|
|
'data/account.account.template.csv',
|
|
'data/l10n_ee_chart_post_data.xml',
|
|
'data/account_tax_group_data.xml',
|
|
'data/account_tax_report_data.xml',
|
|
'data/account_tax_template_data.xml',
|
|
'data/account_fiscal_position_template_data.xml',
|
|
'data/account.group.template.csv',
|
|
'data/account_chart_template_try_loading.xml',
|
|
'views/account_tax_form.xml',
|
|
],
|
|
'demo': [
|
|
'demo/demo_company.xml',
|
|
],
|
|
'license': 'LGPL-3',
|
|
}
|