forked from alaguraj/odoo-testing-addons
38 lines
1.5 KiB
Python
38 lines
1.5 KiB
Python
{
|
|
'name': 'Dine360 Online Orders in POS',
|
|
'version': '17.0.1.0',
|
|
'category': 'Sales/Point of Sale',
|
|
'summary': 'Receive website shop orders on POS screen with KDS integration',
|
|
'description': """
|
|
Online Orders Integration for POS:
|
|
- Website shop orders appear in POS as a new 'Online Orders' tab
|
|
- Cashier can confirm or reject online orders
|
|
- Confirmed orders are sent to Kitchen Display System (KDS)
|
|
- Real-time notifications via bus service
|
|
""",
|
|
'author': 'Dine360',
|
|
'depends': ['point_of_sale', 'pos_restaurant', 'dine360_kds', 'website_sale', 'sale_management', 'dine360_order_channels'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'views/pos_order_views.xml',
|
|
'views/kds_override_views.xml',
|
|
'views/pos_config_views.xml',
|
|
'views/website_sale_templates.xml',
|
|
],
|
|
'assets': {
|
|
'point_of_sale._assets_pos': [
|
|
'dine360_online_orders/static/src/css/online_orders.css',
|
|
'dine360_online_orders/static/src/js/online_orders_screen.js',
|
|
'dine360_online_orders/static/src/js/online_orders_navbar.js',
|
|
'dine360_online_orders/static/src/xml/online_orders_screen.xml',
|
|
],
|
|
'web.assets_frontend': [
|
|
'dine360_online_orders/static/src/css/service_mode.css',
|
|
'dine360_online_orders/static/src/js/service_mode.js',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': False,
|
|
'license': 'LGPL-3',
|
|
}
|