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.
		
		
		
		
		
			
		
			
				
					
					
						
							61 lines
						
					
					
						
							2.6 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							61 lines
						
					
					
						
							2.6 KiB
						
					
					
				
								# -*- coding: utf-8 -*-
							 | 
						|
								###############################################################################
							 | 
						|
								#
							 | 
						|
								#    Cybrosys Technologies Pvt. Ltd.
							 | 
						|
								#
							 | 
						|
								#    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
							 | 
						|
								#    Author: Ranjith R (odoo@cybrosys.com)
							 | 
						|
								#
							 | 
						|
								#    You can modify it under the terms of the GNU AFFERO
							 | 
						|
								#    GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
							 | 
						|
								#
							 | 
						|
								#    You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
							 | 
						|
								#    (AGPL v3) along with this program.
							 | 
						|
								#    If not, see <http://www.gnu.org/licenses/>.
							 | 
						|
								#
							 | 
						|
								###############################################################################
							 | 
						|
								{
							 | 
						|
								    'name': 'POS Booking Order',
							 | 
						|
								    'version': '17.0.1.0.0',
							 | 
						|
								    'category': 'Point of Sale',
							 | 
						|
								    'summary': """From a POS session, users can create pickup or 
							 | 
						|
								    delivery orders, which they can then confirm as POS orders.""",
							 | 
						|
								    'description': """The module helps you to book orders from Shop,
							 | 
						|
								    Bar/Restaurant in POS.User can create pickup or delivery 
							 | 
						|
								    orders,later confirm booked orders to POS orders.""",
							 | 
						|
								    'author': 'Cybrosys Techno Solutions',
							 | 
						|
								    'company': 'Cybrosys Techno Solutions',
							 | 
						|
								    'maintainer': 'Cybrosys Techno Solutions',
							 | 
						|
								    'website': "https://www.cybrosys.com",
							 | 
						|
								    'depends': ['base', 'point_of_sale'],
							 | 
						|
								    'data': ['security/ir.model.access.csv',
							 | 
						|
								             'data/ir_sequence_data.xml',
							 | 
						|
								             'views/pos_config_views.xml',
							 | 
						|
								             'views/book_order_views.xml',
							 | 
						|
								             'views/pos_order_views.xml'
							 | 
						|
								             ],
							 | 
						|
								    'assets': {
							 | 
						|
								        'point_of_sale._assets_pos': [
							 | 
						|
								            'pos_book_order/static/src/xml/Buttons.xml',
							 | 
						|
								            'pos_book_order/static/src/xml/BookOrderPopup.xml',
							 | 
						|
								            'pos_book_order/static/src/xml/BookedOrdersScreen.xml',
							 | 
						|
								            'pos_book_order/static/src/xml/OrderReceipt.xml',
							 | 
						|
								            'pos_book_order/static/src/js/BookOrderPopup.js',
							 | 
						|
								            'pos_book_order/static/src/js/BookOrderButton.js',
							 | 
						|
								            'pos_book_order/static/src/js/TicketScreen.js',
							 | 
						|
								            'pos_book_order/static/src/js/BookedOrdersButton.js',
							 | 
						|
								            'pos_book_order/static/src/js/BookedOrdersScreen.js',
							 | 
						|
								            'pos_book_order/static/src/js/models.js',
							 | 
						|
								        ],
							 | 
						|
								    },
							 | 
						|
								    'images': ['static/description/banner.png'],
							 | 
						|
								    'license': 'AGPL-3',
							 | 
						|
								    'installable': True,
							 | 
						|
								    'auto_install': False,
							 | 
						|
								    'application': False,
							 | 
						|
								}
							 | 
						|
								
							 |