Alaguraj0361 c82f392e15 Add Dine360 Dashboard Website module with custom controllers and views
- 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.
2026-06-23 20:38:41 +05:30

30 lines
856 B
Python

{
'name': 'Dine360 Restaurant',
'version': '1.0',
'category': 'Sales/Point of Sale',
'summary': 'Advanced Role-Based Access for Restaurants',
'description': """
Complete Role-Based Access Control for Restaurant:
- Admin/Owner
- Manager
- Cashier
- Waiter/Captain
- Kitchen (KDS)
- Store Keeper
""",
'author': 'Dine360',
'depends': ['point_of_sale', 'pos_restaurant', 'purchase', 'stock'],
'data': [
'security/restaurant_security.xml',
'security/ir.model.access.csv',
'security/restaurant_rules.xml',
'views/restaurant_menus.xml',
'views/pos_order_views.xml',
'views/res_users_views.xml',
'views/product_template_views.xml',
],
'installable': True,
'application': True,
'license': 'LGPL-3',
}