forked from Mapan/odoo17e
30 lines
755 B
Python
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',
|
|
}
|