forked from Mapan/odoo17e
18 lines
529 B
Python
18 lines
529 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Brazil - Accounting Reports',
|
|
'countries': ['br'],
|
|
'version': '0.1',
|
|
'category': 'Accounting/Localizations/Reporting',
|
|
'description': """Accounting reports for Brazil""",
|
|
'depends': ['l10n_br', 'account_reports'],
|
|
'data': [
|
|
'data/account_financial_html_report_data.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': ['l10n_br', 'account_reports'],
|
|
'license': 'OEEL-1',
|
|
}
|