- 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.
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
{
|
|
'name': 'Dine360 Dashboard',
|
|
'version': '1.0.2',
|
|
'license': 'LGPL-3',
|
|
'category': 'Website',
|
|
'summary': 'Redirect login to home and show icon grid',
|
|
'depends': ['base', 'web', 'auth_signup'],
|
|
'data': [
|
|
'views/home_template.xml',
|
|
'views/login_templates.xml',
|
|
'views/web_title_template.xml',
|
|
'data/branding_data.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'dine360_dashboard/static/src/css/theme_variables.css',
|
|
'dine360_dashboard/static/src/css/home_menu.css',
|
|
'dine360_dashboard/static/src/js/shivasakthi_title.js',
|
|
'dine360_dashboard/static/src/xml/navbar_extension.xml',
|
|
],
|
|
'web.assets_frontend': [
|
|
'dine360_dashboard/static/src/css/theme_variables.css',
|
|
'dine360_dashboard/static/src/css/login_style.css',
|
|
],
|
|
'web.assets_common': [
|
|
'dine360_dashboard/static/src/css/theme_variables.css',
|
|
],
|
|
'point_of_sale._assets_pos': [
|
|
'dine360_dashboard/static/src/css/pos_style.css',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': True,
|
|
}
|