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

33 lines
911 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Mexican Localization for the Point of Sale',
'version': '0.1',
'countries': ['mx'],
'category': 'Accounting/Localizations/EDI',
'description': """
""",
'depends': [
'l10n_mx_edi',
'point_of_sale',
],
'data': [
'views/pos_payment_method_views.xml',
'views/pos_order_views.xml',
'wizard/l10n_mx_edi_global_invoice_create.xml',
],
'assets': {
'point_of_sale._assets_pos': [
'l10n_mx_edi_pos/static/src/**/*',
],
'web.assets_tests': [
'l10n_mx_edi_pos/static/tests/tours/tour_invoice_order.js',
'l10n_mx_edi_pos/static/tests/tours/tour_invoice_previous_order.js',
],
},
'installable': True,
'auto_install': True,
'license': 'OEEL-1',
}