forked from alaguraj/odoo-testing-addons
30 lines
1007 B
Python
30 lines
1007 B
Python
{
|
|
'name': 'Dine360 Self-Order',
|
|
'version': '17.0.1.0',
|
|
'category': 'Sales/Point of Sale',
|
|
'summary': 'QR Table Ordering and Kiosk Mode for Dine360',
|
|
'description': """
|
|
Custom Self-Order module for Dine360:
|
|
- QR Code generation for restaurant tables
|
|
- Public web interface for menu browsing and ordering
|
|
- JSON API for product data and order submission
|
|
- Integration with POS and KDS
|
|
""",
|
|
'author': 'Dine360',
|
|
'depends': ['point_of_sale', 'pos_restaurant', 'dine360_order_channels', 'website'],
|
|
'data': [
|
|
'views/restaurant_table_views.xml',
|
|
'views/self_order_templates.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_frontend': [
|
|
'dine360_self_order/static/src/css/self_order.css',
|
|
'dine360_self_order/static/src/js/self_order.js',
|
|
'dine360_self_order/static/src/xml/self_order.xml',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': True,
|
|
'license': 'LGPL-3',
|
|
}
|