pos_export_bc/__manifest__.py
2026-03-24 15:15:58 +07:00

19 lines
541 B
Python

{
'name': 'POS Export BC Format',
'version': '1.0',
'category': 'Point of Sale',
'summary': 'Export POS orders to BC Excel format',
'description': """
This module adds a wizard in the POS backend to export POS Orders
into a specific BC Excel format ("MIE MAPAN INVOICES").
""",
'depends': ['point_of_sale'],
'data': [
'security/ir.model.access.csv',
'wizard/pos_export_bc_wizard_views.xml',
],
'installable': True,
'application': False,
'license': 'LGPL-3',
}