- 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
621 B
Python
22 lines
621 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'Dine360 Dashboard Website Glue',
|
|
'version': '1.0.0',
|
|
'category': 'Website',
|
|
'summary': 'Glue module for Dine360 Dashboard Website features',
|
|
'depends': ['dine360_dashboard', 'website', 'website_sale'],
|
|
'data': [
|
|
'views/website_logo.xml',
|
|
'views/shop_template.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_frontend': [
|
|
'dine360_dashboard/static/src/css/website_style.css',
|
|
'dine360_dashboard/static/src/css/shop_style.css',
|
|
],
|
|
},
|
|
'auto_install': True,
|
|
'installable': True,
|
|
'license': 'LGPL-3',
|
|
}
|