- Created __init__.py and __manifest__.py for the new dine360_dashboard_website module. - Implemented custom controllers to handle website routing and dashboard rendering. - Added views for website logo and shop template to enhance the user interface. - Updated dine360_reservation and dine360_restaurant modules to include dine360_table as a dependency. - Enhanced restaurant table management with new views and actions for floors and tables. - Updated docker-compose to change the exposed port for the Odoo service.
23 lines
736 B
Python
23 lines
736 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'Dine360 Table Management',
|
|
'version': '1.0',
|
|
'category': 'Sales/Restaurant',
|
|
'summary': 'Dedicated Floor and Table Management System',
|
|
'description': """
|
|
Provides backend menus and views to create, configure and manage floors and tables,
|
|
independent of POS configuration, and seamlessly integrated with Dine360 modules.
|
|
""",
|
|
'author': 'Dine360',
|
|
'depends': ['pos_restaurant'],
|
|
'data': [
|
|
'views/restaurant_floor_views.xml',
|
|
'views/restaurant_table_views.xml',
|
|
'views/menu_items.xml',
|
|
],
|
|
'installable': True,
|
|
'application': True,
|
|
'icon': '/dine360_table/static/description/icon.png',
|
|
'license': 'LGPL-3',
|
|
}
|