forked from Mapan/odoo17e
23 lines
551 B
Python
23 lines
551 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': 'Mozambique - Accounting Reports',
|
|
'countries': ['mz'],
|
|
'version': '1.0',
|
|
'category': 'Accounting/Localizations/Reporting',
|
|
'description': """
|
|
Base module for Mozambican reports
|
|
""",
|
|
'depends': [
|
|
'l10n_mz',
|
|
'account_reports',
|
|
],
|
|
'data': [
|
|
'data/balance_sheet.xml',
|
|
"data/profit_loss.xml",
|
|
],
|
|
'auto_install': True,
|
|
'installable': True,
|
|
'license': 'OEEL-1',
|
|
}
|