- Changed breadcrumb and header colors from #e50000 (red) to #e5b945 (golden yellow) in about, blog, contact, FAQ, and product detail pages. - Updated button background colors and text colors to match the new color scheme. - Adjusted opening hours and footer copyright colors to align with the new design. - Ensured all relevant sections reflect the updated color for a cohesive look throughout the site.
29 lines
943 B
Python
29 lines
943 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',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': True,
|
|
'license': 'LGPL-3',
|
|
}
|