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.
		
		
		
		
		
			
		
			
				
					
					
						
							75 lines
						
					
					
						
							3.0 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							75 lines
						
					
					
						
							3.0 KiB
						
					
					
				
								# -*- coding: utf-8 -*-
							 | 
						|
								################################################################################
							 | 
						|
								#
							 | 
						|
								#    Cybrosys Technologies Pvt. Ltd.
							 | 
						|
								#
							 | 
						|
								#    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
							 | 
						|
								#    Author: Unnimaya C O (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': 'Hotel Management',
							 | 
						|
								    'version': '16.0.1.0.0',
							 | 
						|
								    'category': 'Industries',
							 | 
						|
								    'summary': """A complete Hotel Management System that cover all areas of 
							 | 
						|
								     Hotel services""" ,
							 | 
						|
								    'description': """The module helps you to manage rooms, amenities, 
							 | 
						|
								     services, food, events and vehicles. End Users can book rooms and reserve 
							 | 
						|
								     foods from hotel.""",
							 | 
						|
								    'author': 'Cybrosys Techno Solutions',
							 | 
						|
								    'company': 'Cybrosys Techno Solutions',
							 | 
						|
								    'maintainer': 'Cybrosys Techno Solutions',
							 | 
						|
								    'website': 'https://www.cybrosys.com',
							 | 
						|
								    'depends': ['account', 'event', 'fleet', 'lunch'],
							 | 
						|
								    'data': [
							 | 
						|
								        'security/hotel_management_odoo_groups.xml',
							 | 
						|
								        'security/hotel_management_odoo_security.xml',
							 | 
						|
								        'security/ir.model.access.csv',
							 | 
						|
								        'data/ir_data_sequence.xml',
							 | 
						|
								        'views/account_move_views.xml',
							 | 
						|
								        'views/hotel_menu_views.xml',
							 | 
						|
								        'views/hotel_amenity_views.xml',
							 | 
						|
								        'views/hotel_service_views.xml',
							 | 
						|
								        'views/hotel_floor_views.xml',
							 | 
						|
								        'views/hotel_room_views.xml',
							 | 
						|
								        'views/lunch_product_views.xml',
							 | 
						|
								        'views/fleet_vehicle_model_views.xml',
							 | 
						|
								        'views/room_booking_views.xml',
							 | 
						|
								        'views/maintenance_team_views.xml',
							 | 
						|
								        'views/maintenance_request_views.xml',
							 | 
						|
								        'views/cleaning_team_views.xml',
							 | 
						|
								        'views/cleaning_request_views.xml',
							 | 
						|
								        'views/food_booking_line_views.xml',
							 | 
						|
								        'views/dashboard_view.xml',
							 | 
						|
								        'wizard/room_booking_detail_views.xml',
							 | 
						|
								        'wizard/sale_order_detail_views.xml',
							 | 
						|
								        'views/reporting_views.xml',
							 | 
						|
								        'report/room_booking_reports.xml',
							 | 
						|
								        'report/sale_order_reports.xml',
							 | 
						|
								    ],
							 | 
						|
								    'assets': {
							 | 
						|
								        'web.assets_backend': [
							 | 
						|
								            'hotel_management_odoo/static/src/js/action_manager.js',
							 | 
						|
								            'hotel_management_odoo/static/src/css/dashboard.css',
							 | 
						|
								            'hotel_management_odoo/static/src/js/dashboard_action.js',
							 | 
						|
								            'hotel_management_odoo/static/src/xml/dashboard_templates.xml',
							 | 
						|
								        ],
							 | 
						|
								    },
							 | 
						|
								    'images': ['static/description/banner.jpg'],
							 | 
						|
								    'license': 'LGPL-3',
							 | 
						|
								    'installable': True,
							 | 
						|
								    'auto_install': False,
							 | 
						|
								    'application': True,
							 | 
						|
								}
							 | 
						|
								
							 |