29 lines
913 B
Python
29 lines
913 B
Python
# -*- encoding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Ireland - Accounting',
|
|
'version': '1.0',
|
|
'category': 'Accounting/Localizations/Account Charts',
|
|
'description': """
|
|
This module is for all the Irish SMEs who would like to setup their accounting quickly. The module provides:
|
|
|
|
- a Chart of Accounts customised to Ireland
|
|
- VAT Rates and Structure""",
|
|
|
|
'author': 'Target Integration',
|
|
'website': 'http://www.targetintegration.com',
|
|
'depends': ['account', 'base_iban', 'base_vat'],
|
|
'data': [
|
|
'data/account_chart_template.xml',
|
|
'data/account.account.template.csv',
|
|
'data/account.chart.template.csv',
|
|
'data/account_tax_data.xml',
|
|
'data/account_chart_template_configuration_data.xml',
|
|
],
|
|
'demo': [
|
|
'demo/demo_company.xml',
|
|
],
|
|
'license': 'LGPL-3',
|
|
}
|