30 lines
785 B
Python
30 lines
785 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
{
|
||
|
'name': 'Greece - Accounting',
|
||
|
'icon': '/account/static/description/l10n.png',
|
||
|
'countries': ['gr'],
|
||
|
'author': 'P. Christeas, Odoo S.A.',
|
||
|
'category': 'Accounting/Localizations/Account Charts',
|
||
|
'description': """
|
||
|
This is the base module to manage the accounting chart for Greece.
|
||
|
==================================================================
|
||
|
|
||
|
Greek accounting chart and localization.
|
||
|
""",
|
||
|
'depends': [
|
||
|
'account',
|
||
|
'base_iban',
|
||
|
'base_vat',
|
||
|
],
|
||
|
'auto_install': ['account'],
|
||
|
'data': [
|
||
|
'data/account_tax_report_data.xml',
|
||
|
],
|
||
|
'demo': [
|
||
|
'demo/demo_company.xml',
|
||
|
],
|
||
|
'license': 'LGPL-3',
|
||
|
}
|