1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_my_reports/__manifest__.py
2024-12-10 09:04:09 +07:00

30 lines
755 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Malaysia - Accounting Reports',
'countries': ['my'],
'version': '1.0',
'category': 'Accounting/Localizations/Reporting',
'description': """
Base module for Malaysian reports
""",
'depends': [
'l10n_my',
'account_followup',
],
'data': [
"views/account_followup_views.xml",
'views/res_config_settings_view.xml',
"report/statement_account_templates.xml",
"report/res_partner_reports.xml",
],
"assets": {
"web.assets_backend": [
"l10n_my_reports/static/src/**/*",
],
},
'auto_install': True,
'installable': True,
'license': 'OEEL-1',
}