Hotel Management System
Hotel Management System
Hotel Management System
Hotel Management
CLASS : XII
1
CERTIFICATE
successfully completed the project Work entitled Hotel management system in the
subject Computer Science (083) laid down in the regulations of CBSE for the
ACADEMY,SERAMPORE on 2020-21.
( )
PGT Comp Sci
Master IC
Examiner:
Name: _______________
Signature:
2
TABLE OF CONTENTS [ T O C ]
01 ACKNOWLEDGEMENT 04
02 INTRODUCTION 05
04 PROPOSED SYSTEM 05
07 FLOW CHART 15
08 SOURCE CODE 15
09 OUTPUT 29
10 TESTING 32
12 BIBLIOGRAPHY 36
3
ACKNOWLEDGEMENT
Apart from the efforts of me, the success of any project depends largely on
the encouragement and guidelines of many others. I take this opportunity to express
my gratitude to the people who have been instrumental in the successful completion
of this project.
I express deep sense of gratitude to almighty God for giving me strength for
the successful completion of the project.
The guidance and support received from all the members who contributed
and who are contributing to this project, was vital for the success of the project. I am
grateful for their constant support and help.
4
PROJECT ON Hotel Management
INTRODUCTION
The objective of this project is to let the students apply the programming
knowledge into a real- world situation/problem and exposed the students how
PROPOSED SYSTEM
Today one cannot afford to rely on the fallible human beings of be really
wants to stand against today’s merciless competition where not to wise saying “to
err is human” no longer valid, it’s out-dated to rationalize your mistake. So, to keep
pace with time, to bring about the best result without malfunctioning and greater
efficiency so to replace the unending heaps of flies with a much sophisticated hard
5
One has to use the data management software. Software has been an ascent
markets, which have helped in making the organizations work easier and efficiently.
Data management initially had to maintain a lot of ledgers and a lot of paperwork has
to be done but now software production this organization has made their work faster
and easier. Now only this software has to be loaded on the computer and work can
be done.
6
Software development projects typically include initiation, planning, design,
development, testing, implementation, and maintenance phases. However, the
phases may be divided differently depending on the organization involved.
For example, initial project activities might be designated as request,
requirements-definition, and planning phases, or initiation, concept-development,
and planning phases. End users of the system under development should be
involved in reviewing the output of each phase to ensure the system is being built to
deliver the needed functionality.
INITIATION PHASE
7
the project.
8
It may include several trade-off decisions such as the decision to use COTS
software products as opposed to developing custom software or reusing
software components, or the decision to use an incremental delivery versus a
complete, onetime deployment.
Construction of executable prototypes is encouraged to evaluate technology
to support the business process. The System Boundary Document serves as
an important reference document to support the Information Technology
Project Request (ITPR) process.
The ITPR must be approved by the State CIO before the project can move
forward.
9
PLANNING PHASE
10
REQUIREMENTS ANALYSIS PHASE
This phase formally defines the detailed functional user requirements using
high-level requirements identified in the Initiation, System Concept, and Planning
phases. It also delineates the requirements in terms of data, system performance,
security, and maintainability requirements for the system. The requirements are
defined in this phase to alevel of detail sufficient for systems design to proceed. They
need to be measurable, testable, and relate to the business need or opportunity
identified in the Initiation Phase. The requirements that will be used to determine
acceptance of the system are captured in the Test and Evaluation MasterPlan.
Further define and refine the functional and data requirements and document
them in the Requirements Document,
Complete business process reengineering of the functions to be supported
(i.e., verify what information drives the business process, what information is
generated, who generates it, where does the information go, and who
processes it),
Develop detailed data and process models (system inputs, outputs, and the
process.
Develop the test and evaluation requirements that will be used to determine
acceptable system performance.
DESIGN PHASE
11
program components and interfaces, then expand design layouts as they identify
and link larger systems and connections. Contemporary design techniques often use
prototyping tools that build mock-up designs of items such as application screens,
database layouts, and system architectures. End users, designers, developers,
database managers, and network administrators should review and refine the
prototyped designs in an iterative process until they agree on an acceptable design.
Audit, security, and quality assurance personnel should be involved in the review
and approval process. During this phase, the system is designed to satisfy the
functional requirements identified in the previous phase. Since problems in the
design phase could be very expensive to solve in the later stage of the software
development, a variety of elements are considered in the design to mitigate risk.
These include:
12
DEVELOPMENT PHASE
13
Testing as a deployed system with end users working together with contract
personnel
IMPLEMENTATION PHASE
This phase is initiated after the system has been tested and accepted by the
user. In this phase, the system is installed to support the intended business
functions. System performance is compared to performance objectives established
during the planning phase. Implementation includes user notification, user training,
installation of hardware, installation of software onto production computers, and
integration of the system into daily work processes. This phase continues until the
system is operating in production in accordance with the defined userrequirements.
14
Operate, maintain, and enhance the system.
Certify that the system can process sensitive information.
Conduct periodic assessments of the system to ensure the functional
requirements continue to be satisfied.
Determine when the system needs to be modernized, replaced, or retired.
SOURCE CODE
import mysql.connector
from datetime import date
#global variables
hotel_name =''
addr =''
phone=''
email =''
gst=0
st =0
def settings():
global hotel_name
global addr
global phone
global email
global gst
global st
15
conn = mysql.connector.connect(host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
sql = "select * from setting;"
cursor.execute(sql)
records = cursor.fetchall()
for record in records:
if record[1]=='hotel_name':
hotel_name = record[2]
if record[1] == 'address':
addr = record[2]
if record[1] == 'phone':
phone = record[2]
if record[1] == 'email':
email = record[2]
if record[1] == 'gst':
gst = record[2]
if record[1] == 'st':
st = record[2]
def system_settings():
conn = mysql.connector.connect(
host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
clear()
print(' Change System Settings ')
print('*'*120)
print('1. Hotel Name')
print('2. Hotel Address')
print('3. Phone Number(s)')
print('4. Email ID')
print('5. Current GST Rate')
print('6. Current Service Rate')
16
if choice ==3:
field_name='phone'
if choice ==4:
field_name='email'
if choice ==5:
field_name='gst'
if choice ==6:
field_name='st'
value = input('Enter new value :')
sql ='update setting set value= '+value+' where field_name = "'+ field_name+'";'
cursor.execute(sql)
conn.close()
wait = input('\n\n\n Record Updated .............Press any key to continue......')
def clear():
for _ in range(65):
print()
def room_exist(room_no):
conn = mysql.connector.connect(
host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
sql ="select * from rooms where room_no ="+room_no+";"
cursor.execute(sql)
record = cursor.fetchone()
return record
def customer_exist(cust_no):
conn = mysql.connector.connect(
host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
sql = "select * from customer where id ="+cust_no+";"
cursor.execute(sql)
record = cursor.fetchone()
return record
17
def add_room():
conn = mysql.connector.connect(
host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
clear()
print('Add New Room - Screen')
print('-'*120)
room_no = input('\n Enter Room No :')
room_type = input('\n Enter Room Type( AC/DELUX/Super Delux/Queen Delight/ Kings
Special/Super Rich Special) :')
room_rent = input('\n Enter Room Rent (INR) :')
room_bed = input('\n Enter Room Bed Type(Single/Double/Triple) :')
sql = 'insert into rooms(room_no,room_type,room_rent,room_bed,status) values \
('+room_no+',"'+ room_type.upper()+'",'+room_rent+',"'+room_bed.upper()+'","free");'
result = room_exist(room_no)
if result is None:
cursor.execute(sql)
else:
print('\n\n\nRoom No ',room_no, ' already exists in our database')
conn.close()
wait = input('\n\n\n Press any key to continue....')
def modify_room():
conn = mysql.connector.connect(
host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
clear()
print(' Change Room Information ')
print('*'*120)
print('1. Room Type')
print('2. Room Rent')
print('3. Room Bed')
choice = int(input('Enter your choice :'))
field_name = ''
if choice == 1:
field_name = 'room_type'
if choice == 2:
18
field_name = 'room_rent'
if choice == 3:
field_name = 'room_bed'
room_no = input('Enter room No :')
value = input('Enter new value :')
sql = 'update rooms set ' +field_name +' = '+ value +' where room_no =' + room_no +';'
cursor.execute(sql)
wait = input('\n\n\n Record Updated .............Press any key to continue......')
def add_customer():
conn = mysql.connector.connect(
host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
clear()
print('Add New Customer - Screen')
print('-'*120)
name = input('\n Enter Customer Name :')
address = input('\n Enter Customer Address:')
phone = input('\n Enter Customer Phone NO :')
email = input('\n Enter Customer Email ID :')
id_proof = input('\n Enter Customer ID(Aadhar/Passport/DL/VoterID) :')
id_proof_no = input('\n Enter Customer ID proof NO :')
males = input('\n Enter Total Males :')
females = input('\n Enter Total Females :')
children = input('\n Enter Total Childeren :')
cursor.execute(sql)
print('\n\n\nCustomer Added success fully ...............')
conn.close()
wait = input('\n\n\n Press any key to continue....')
def modify_customer():
conn = mysql.connector.connect(
19
host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
clear()
print(' Change Customer Information ')
print('*'*120)
print('1. Name')
print('2. Address')
print('3. Phone No')
print('4. Email ID')
print('5. ID Proof')
print('6. ID Proof No')
print('7. Males')
print('8. Females')
print('9. Childeren')
choice = int(input('Enter your choice :'))
field_name = ''
if choice == 1:
field_name = 'name'
if choice == 2:
field_name = 'address'
if choice == 3:
field_name = 'phone'
if choice == 4:
field_name = 'email'
if choice == 5:
field_name = 'id_proof'
if choice == 6:
field_name = 'id_proof_no'
if choice == 7:
field_name = 'males'
if choice == 8:
field_name = 'females'
if choice == 9:
field_name = 'children'
cust_no = input('Enter Customer No :')
value = input('Enter new value :')
sql = 'update customer set ' + field_name + ' = ' + \
value + ' where id =' + cust_no + ';'
cursor.execute(sql)
20
wait = input(
'\n\n\n Record Updated .............Press any key to continue......')
def room_booking():
conn = mysql.connector.connect(
host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
room_id =input('Enter room no to book :')
cust_id = input('Enter customer ID :')
date_of_occ = input('Enter date of occupancy (yyyy-mm-dd) :')
advance = input('Enter advance amount :')
sql1 = 'update rooms set status = "occupied" where id ='+room_id +';'
sql2 = 'insert into booking(room_id,cust_id,doo,advance) values
('+room_id+','+cust_id+',"'+date_of_occ+'",'+advance+');'
#print(sql2)
#print(sql1)
result = room_exist(room_id)
result1 = customer_exist(cust_id)
if result[5] !='free':
print('\n Room is not available for booking. Right now it is :',result[5])
if result1 is None:
print('Customer does not exist....Please add customer first in our database')
conn.close()
wait = input('\n\n\n Press any key to continue....')
def bill_generation():
global gst
global st
conn = mysql.connector.connect(
host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
room_id = input('Enter room no to book :')
21
cust_id = input('Enter customer ID :')
sql = 'select * from booking where cust_id='+cust_id +' and room_id = '+room_id+' and dol is NULL;'
cursor.execute(sql)
record = cursor.fetchone()
clear()
print('Bill Generation ')
print('-'*100)
print(' Rooms occupied :',room_id)
dol = date.today()
book_id = record[0] # book_id
doo = record[3]
advance = record[5]
total_days = (dol-doo).days
result = room_exist(room_id)
rent = result[3]
amount = total_days*rent
gst_amount = amount*int(gst)/100
st_amount = amount*int(st)/100
payable_amount = total_days*rent - advance + gst_amount+st_amount
22
def search_rooms():
conn = mysql.connector.connect(
host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
room_no = input('Enter Room No :')
sql ='select * from rooms where room_no ='+room_no +';'
cursor.execute(sql)
record = cursor.fetchone()
clear()
print('Room Status')
print('*'*120)
print('Room NO :',record[1])
print('Room Rent :',record[2])
print('Room Bed :',record[3])
print('Room Status :',record[4])
conn.close()
wait = input('\n\n\nPress any key to continue......')
def search_customer():
conn = mysql.connector.connect(
host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
clear()
print('Search Customer DataBase')
print('*'*120)
print('1. Customer Name')
print('2. Customer Address')
print('3. Customer Phone')
print('4. Customer Email')
print('5. Address Proof')
print('6. Address Proof ID')
choice = int(input('Enter your choice : '))
field_name =''
if choice ==1:
field_name = 'name'
if choice ==2:
field_name = 'address'
23
if choice ==3:
field_name = 'phone'
if choice ==4:
field_name = 'email'
if choice ==5:
field_name = 'id_proof'
if choice ==6:
field_name = 'id_proof_no'
conn.close()
wait = input('\n\n\nPress any key to continue......')
def search_booking():
conn = mysql.connector.connect(
host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
cust_no = input('Enter Customer No :')
sql = 'select book_id,r.room_no,c.name,doo,advance from booking b, customer c,rooms r where
b.room_id = r.id AND b.cust_id = '+cust_no+' and dol is NULL;'
cursor.execute(sql)
24
records = cursor.fetchall()
clear()
print('Booking information for customer ID :{}'.format(cust_no))
print('{} {} {} {} {}'.format('ID','RoomID', 'Customer Name','Date of Occupancy','Advance'))
print('*'*140)
for record in records:
print('{} {} {} {} {}'.format(
record[0], record[1], record[2], record[3], record[4]))
conn.close()
wait = input('\n\n\nPress any key to continue......')
def search_bills():
conn = mysql.connector.connect(
host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
bill_no = input('Enter Bill No :')
sql = ' select bill.bill_id,bill.amount,bill_date,gst,st,b.book_id,doo,dol,advance,
name,address,phone,email,room_no \
from bill, booking b, customer c , rooms r \
where bill.book_id = b.book_id \
and b.room_id = r.id and b.cust_id = c.id AND NOT dol is NULL AND \
bill_id = '+bill_no +';'
cursor.execute(sql)
record = cursor.fetchone()
clear()
print('Bill information for Bill No :{}'.format(bill_no))
print('*'*140)
print('Bill NO ', record[0])
print('Amount ', record[1])
print('Bill Date ', record[2])
print('GST Charged ', record[3])
print('Service Tax Charged ', record[4])
print('Booking ID ', record[5])
print('Room Used ID ', record[13])
print('Date of Occupancy ', record[6])
print('Date of Leaving ', record[7])
print('Advance Paid ', record[8])
print('Customer Name ', record[9])
25
print('Customer Address ', record[10])
print('Customer Phone ', record[11])
print('Customer Email ID ', record[12])
conn.close()
wait = input('\n\n\nPress any key to continue......')
def search_menu():
while True:
clear()
print(' Search Menu')
print('*'*120)
print("\n1. Room Status")
print('\n2. Booking Status')
print('\n3. customer Details')
print('\n4. Bills')
print('\n5. Back to Main Menu')
print('\n\n')
choice = int(input('Enter your choice ...: '))
if choice==1:
search_rooms()
if choice==2:
search_booking()
if choice==3:
search_customer()
if choice==4:
search_bills()
if choice==5:
break
def report_room_status():
conn = mysql.connector.connect(
host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
sql = 'select * from rooms'
cursor.execute(sql)
records = cursor.fetchall()
26
clear()
print(' Rooms Status - Report')
print('-'*120)
print('{:10s} {:10s} {:20s} {:20s} {:>40s} {:>30s}'.format('Room ID','Room No', 'Room Type',
'Rent','Bedding', 'Status'))
for idr,no,rtype,rent,bed,status in records:
print('{:<10d} {:<10d} {:20s} {:<7.2f} {:>40s} {:>30s}'.format(idr, no, rtype, rent, bed, status))
conn.close()
wait = input('\n\n\n Press any key to continue....')
def report_booking_status():
conn = mysql.connector.connect(
host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
sql = 'select b.book_id,room_no,doo,dol,advance, name,address,phone \
from booking b, customer c ,rooms r \
where b.room_id = r.id and b.cust_id = c.id and dol is NULL;'
cursor.execute(sql)
records = cursor.fetchall()
clear()
print(' Booking Status - Report')
print('-'*120)
print('{:10s} {:10s} {:20s} {:20s} {:>30s} {:20s} {:30s} {:15s}'.format(
'Booking ID', 'Room No', 'DOO', 'DOL', 'Advance', 'Name','Address','Phone'))
for idr, no, doo,dol,advance,name,addr,phone in records:
print('{:10d} {:10d} {:20s} {:20s} {:10.2f} {:20s} {:30s} {:15s}'.format(
idr, no, str(doo), str(dol), advance, name, addr, phone))
conn.close()
wait = input('\n\n\n Press any key to continue....')
def report_menu():
while True:
clear()
print('Report Menu')
print("\n1. Room Status")
print('\n2. Booking Status')
print('\n3. Today\'s Collection')
print('\n4. Monthly Collection')
27
print('\n5. Back to Main Menu')
print('\n\n')
choice = int(input('Enter your choice ...: '))
if choice == 1:
report_room_status()
if choice == 2:
report_booking_status()
if choice == 3:
break
def change_room_status():
conn = mysql.connector.connect(host='localhost', database='hotel', user='root', password='654987')
cursor = conn.cursor()
clear()
room_no = input('Enter Room No :')
status = input('Enter current status(Renovation/modification ) :')
sql = 'update rooms set status="'+status+'" where room_no ='+room_no+';'
cursor.execute(sql)
print('\n\nRoom Status Updated')
wait = input('\n\n\n Press any key to continue....')
def main_menu():
while True:
clear()
print(' H O T E L M A N A G E M E N T S Y S T E M ')
print('*'*120)
print("\n1. Add New Room")
print('\n2. Add Customer')
print('\n3. Modify Room Information')
print('\n4. Modify Customer Information')
print('\n5. Room Booking')
print('\n6. Bill Generation')
print('\n7. Search Database')
print('\n8. Report Menu')
print('\n9. Settings')
print('\n10. Close application')
print('\n\n')
choice = int(input('Enter your choice ...: '))
if choice == 1:
28
add_room()
if choice == 2:
add_customer()
if choice == 3:
modify_room()
if choice == 4:
modify_customer()
if choice ==5 :
room_booking()
if choice == 6:
bill_generation()
if choice ==7 :
search_menu()
if choice == 8:
report_menu()
if choice == 9:
system_settings()
if choice ==10:
break
if __name__=="__main__":
settings()
main_menu()
OUTPUT
Account created
29
30
31
TESTING
32
guided its design and development, so that it works as expected and can be
implemented with the same characteristics. Software Testing, depending on the
testing method employed, can be implemented at any time in the development
process, however the most test effort is employed after the requirements have been
defined and coding process has been completed.
TESTING METHODS
Software testing methods are traditionally divided into black box testing and
white box testing. These two approaches are used to describe the point of view that
a test engineer takes when designing test cases.
SPECIFICATION-BASED TESTING
The black box tester has no "bonds" with the code, and a tester's perception
is very simple: a code must have bugs. Using the principle, "Ask and you shall
receive," black box testers find bugs where programmers don't. But, on the other
hand, black box testing has been said to be "like a walk in a dark labyrinth without a
33
flashlight," because the tester doesn't know how the software being tested was
actually constructed.
That's why there are situations when (1) a black box tester writes many test
cases to check something that can be tested by only one test case, and/or (2) some
parts of the back end are not tested at all. Therefore, black box testing has the
advantage of "an unaffiliated opinion," on the one hand, and the disadvantage of
"blind exploring," on the other.
White box testing, by contrast to black box testing, is when the tester has
access to the internal data structures and algorithms (and the code that implement
these)
White box testing methods can also be used to evaluate the completeness of
a test suite that was created with black box testing methods. This allows the software
team to examine parts of a system that are rarely tested and ensures that the most
important function points have been tested.
34
Function Coverage: Which reports on functions executed and
Statement Coverage: Which reports on the number of lines executed
to complete the test.
They both return coverage metric, measured as a percentage
35
III. MOTHERBOARD : 1.845 OR 915,995 FOR PENTIUM 0R MSI
SOFTWARE REQUIREMENTS:
I. Windows OS
II. Python
III. mysql
BIBLIOGRAPHY
36
***
37