33 lines
1022 B
Python
33 lines
1022 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Hungary - Accounting',
|
|
'version': '3.0',
|
|
'category': 'Accounting/Localizations/Account Charts',
|
|
'description': """
|
|
Accounting chart and localization for Hungary
|
|
""",
|
|
'depends': [
|
|
'account', 'base_vat', 'l10n_multilang'
|
|
],
|
|
'data': [
|
|
'data/account_chart_template_data.xml',
|
|
'data/account.account.template.csv',
|
|
'data/account.group.template.csv',
|
|
'data/account_tax_group.xml',
|
|
'data/account_tax_report_data.xml',
|
|
'data/account_tax_template_data.xml',
|
|
'data/account_fiscal_position_template.xml',
|
|
'data/account_fiscal_position_tax_template.xml',
|
|
'data/res.bank.csv',
|
|
'data/l10n_hu_chart_data.xml',
|
|
'data/account_chart_template_configure_data.xml',
|
|
],
|
|
'demo': [
|
|
'demo/demo_company.xml',
|
|
],
|
|
'post_init_hook': 'load_translations',
|
|
'license': 'LGPL-3',
|
|
}
|