forked from Mapan/odoo17e
24 lines
572 B
Python
24 lines
572 B
Python
## -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Dominican Republic - Accounting Reports',
|
|
'countries': ['do'],
|
|
'version': '1.0',
|
|
'description': """
|
|
Accounting reports for Dominican Republic
|
|
""",
|
|
'category': 'Accounting/Localizations/Reporting',
|
|
'depends': [
|
|
'l10n_do',
|
|
'account_reports',
|
|
],
|
|
'data': [
|
|
'data/profit_and_loss.xml',
|
|
'data/balance_sheet.xml',
|
|
],
|
|
'auto_install': True,
|
|
'installable': True,
|
|
'license': 'OEEL-1',
|
|
}
|