You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							81 lines
						
					
					
						
							3.6 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							81 lines
						
					
					
						
							3.6 KiB
						
					
					
				| # -*- coding: utf-8 -*- | |
| ############################################################################### | |
| # | |
| #    Cybrosys Technologies Pvt. Ltd. | |
| # | |
| #    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |
| #    Author: Aysha Shalin (odoo@cybrosys.com) | |
| # | |
| #    You can modify it under the terms of the GNU LESSER | |
| #    GENERAL PUBLIC LICENSE (LGPL v3), Version 3. | |
| # | |
| #    This program is distributed in the hope that it will be useful, | |
| #    but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | |
| #    GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. | |
| # | |
| #    You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE | |
| #    (LGPL v3) along with this program. | |
| #    If not, see <http://www.gnu.org/licenses/>. | |
| # | |
| ############################################################################### | |
| { | |
|     'name': 'Table Reservation On POS And Website', | |
|     'version': '17.0.1.2.3', | |
|     'category': 'eCommerce,Point of Sale', | |
|     'summary': 'Reserve tables in POS from website', | |
|     'description': """This module enables to reserve tables in POS from website. | |
|      User will be able to select the floor, table, date and time.""", | |
|     'author': 'Cybrosys Techno Solutions', | |
|     'company': 'Cybrosys Techno Solutions', | |
|     'maintainer': 'Cybrosys Techno Solutions', | |
|     'website': 'https://www.cybrosys.com', | |
|     'depends': ['pos_restaurant', 'base', 'website_sale', 'sale_management'], | |
|     'data': [ | |
|         'security/ir.model.access.csv', | |
|         'data/automatic_invoice.xml', | |
|         'data/table_reservation_data.xml', | |
|         'data/product_product_data.xml', | |
|         'views/table_reservation_templates.xml', | |
|         'views/table_reservation_on_website_menus.xml', | |
|         'views/restaurant_table_views.xml', | |
|         'views/restaurant_floor_views.xml', | |
|         'views/table_reservation_views.xml', | |
|         'views/sale_order_views.xml', | |
|         'views/table_reserved_templates.xml', | |
|         'views/res_config_settings_views.xml', | |
|     ], | |
|     'assets': { | |
|         'point_of_sale._assets_pos': [ | |
|             'table_reservation_on_website/static/src/app/screens/floor_screen' | |
|             '/floor_screen.js', | |
|             'table_reservation_on_website/static/src/app/screens/floor_screen' | |
|             '/floor_screen.xml', | |
|             'table_reservation_on_website/static/src/app/screens' | |
|             '/product_screen/product_screen.js', | |
|             'table_reservation_on_website/static/src/app/screens' | |
|             '/reservation_screen/reservation_screen.js', | |
|             'table_reservation_on_website/static/src/app/screens' | |
|             '/reservation_screen/reservation_screen.xml', | |
|             'table_reservation_on_website/static/src/app/booking_popup' | |
|             '/editBookingPopup.js', | |
|             'table_reservation_on_website/static/src/app/booking_popup' | |
|             '/editBookingPopup.xml', | |
|             'table_reservation_on_website/static/src/app/booking_popup' | |
|             '/createBookingPopup.js', | |
|             'table_reservation_on_website/static/src/app/booking_popup' | |
|             '/createBookingPopup.xml', | |
|             'table_reservation_on_website/static/src/scss/style.css', | |
|         ], | |
|         'web.assets_frontend': [ | |
|             'table_reservation_on_website/static/src/js/table_reservation.js', | |
|             'table_reservation_on_website/static/src/js/reservation.js', | |
|             'table_reservation_on_website/static/src/js/reservation_floor.js', | |
|         ], | |
|     }, | |
|     'images': ['static/description/banner.png'], | |
|     'license': 'LGPL-3', | |
|     'installable': True, | |
|     'auto_install': False, | |
|     'application': False, | |
| }
 | |
| 
 |