- 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.
22 lines
685 B
XML
22 lines
685 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Root Menu -->
|
|
<menuitem id="menu_dine360_table_root"
|
|
name="Table Management"
|
|
sequence="21"
|
|
web_icon="dine360_table,static/description/icon.png"/>
|
|
|
|
<!-- Submenus -->
|
|
<menuitem id="menu_dine360_floor_submenu"
|
|
name="Floors"
|
|
parent="menu_dine360_table_root"
|
|
action="action_restaurant_floor_form"
|
|
sequence="10"/>
|
|
|
|
<menuitem id="menu_dine360_table_submenu"
|
|
name="Tables"
|
|
parent="menu_dine360_table_root"
|
|
action="action_restaurant_table_form"
|
|
sequence="20"/>
|
|
</odoo>
|