Odoo18-Base/addons/pos_restaurant_loyalty/__manifest__.py
2025-01-06 10:57:38 +07:00

26 lines
709 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'POS - Restaurant Loyality',
'version': '1.0',
'category': 'Hidden',
'sequence': 6,
'summary': 'Link module between pos_restaurant and pos_loyalty',
'description': """
This module correct some behaviors when both module are installed.
""",
'depends': ['pos_restaurant', 'pos_loyalty'],
'installable': True,
'auto_install': True,
'assets': {
'point_of_sale._assets_pos': [
'pos_restaurant_loyalty/static/src/**/*',
],
'web.assets_tests': [
'pos_restaurant_loyalty/static/tests/tours/**/*',
],
},
'license': 'LGPL-3',
}