Odoo18-Base/addons/l10n_my_edi/__manifest__.py

31 lines
1.2 KiB
Python
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Malaysia - E-invoicing',
'countries': ['my'],
'version': '1.0',
'category': 'Accounting/Localizations/EDI',
'icon': '/account/static/description/l10n.png',
"summary": "E-invoicing using MyInvois",
'description': """
This modules allows the user to send their invoices to the MyInvois system.
""",
# The export does not depend on the pint format, but we need to reuse the fields defined there.
'depends': ['l10n_my', 'l10n_my_ubl_pint', 'account_edi_proxy_client'],
'data': [
'data/ir_cron.xml',
'data/l10n_my_edi.industry_classification.csv',
'data/my_ubl_templates.xml',
'security/ir.model.access.csv',
'views/account_move_view.xml',
'views/account_tax_view.xml',
'views/l10n_my_edi_industrial_classification_views.xml',
'views/product_template_view.xml',
'views/res_company_view.xml',
'views/res_config_settings_view.xml',
'views/res_partner_view.xml',
'wizard/l10n_my_edi_status_update_wizard.xml',
],
'installable': True,
'license': 'LGPL-3'
}