Odoo18-Base/addons/pos_hr_restaurant/__manifest__.py
2025-03-10 11:12:23 +07:00

22 lines
590 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'PoS HR Restaurant',
'version': '1.0',
'category': 'Hidden',
'summary': 'Link module between pos_hr and pos_restaurant',
'description': """
This module adapts the behavior of the PoS when the pos_hr and pos_restaurant are installed.
""",
'depends': ['pos_hr', 'pos_restaurant'],
'auto_install': True,
'assets': {
'point_of_sale.assets': [
'pos_hr_restaurant/static/src/js/**/*.js',
],
},
'license': 'LGPL-3',
}