Hotel Management
Hotel Management
)
AFFILIATION No. - 3330131
PROJECT REPORT
ON
HOTELMANAGEMENT
SYSTEM
3
ACKNOWLEDGEMENT
The satisfactions that accompany the successful completion
of any task would be incomplete without mentioning the
people who made it possible. The credit must go to each
individual who contributed their efforts together which in
turns produced this output.
I am very much thankful to my project Guide our mam
Mrs.Archana Kumari (PGT CSE) for guiding me in
developing this project.
I would like to express my deep sense of gratitude to our
respected Principal Mrs. Rashmi Sharma for her unfailing
co-operation & encouragement throughout the completion
of Course and Project.
I would also like to thank my teammates for their support.
I am thankful to all my Friends who gave their kind support
and time whenever needed and helped me run a lot of thing
which I am unsure of my sincere thanks to my family
members for their unwavering support.
Last but not the least special thanks to all those who
couldn’t find note mention in the pages of this report.
ABSTRACT
Hotel Management System deals with the maintenance of a
guest’s bill during one’s stay at the hotel and withal the allocation
by the guest at the time one wishes to depart from the hotel..
5
CONTENTS
1. INTRODUCTION 07-08
1.1 Objective Of The Project
3. SYSTEM DESIGNING 11
3.1 Flowchart
7
OBJECTIVE OF THE
PROJECT
1. Ascertain that the software can run on any given platform.
status.
mismatches.
SYSTEM STUDIES
Existing System
Proposed System
The proposed system will help the Hotels to operate
efficiently by eliminating all the time-consuming
procedures and provide a better service to their
customers as well as for the employees in the
company. It will eliminate the need for members of
staff of the hotel to go about some affairs manually
and hereby reduces most problem inherent in the
existing system.
9
SOFTWARE/HARDWARE
REQUIRNMENT
Software needed:
Hardware Needed:
➢ RAM: 64 MB RAM
➢ Monitor: IBM/SAMSUNG
design for the project which is helpful to get the flow of information
Start
Generate Bill
Get Feedback
Stop
11
CODING
class pyotel:
def
__init__(self,rt='',s=0,p=0,r=0,t=0,a=1800,name='',address='',ci
ndate='',coutdate='',rno=101):
mine="WELCOME TO PYOTEL HOTEL"
width=100
print (mine.center(width,'*'))
self.rt=rt
self.r=r
self.t=t
self.p=p
self.s=s
self.a=a
self.name=name
self.address=address
self.cindate=cindate
self.coutdate=coutdate
self.rno=rno
def inputdata(self):
self.name=input("\nEnter your name:")
self.address=input("\nEnter your address:")
self.cindate=input("\nEnter your check in date:")
self.coutdate=input("\nEnter your checkout date:")
print("Your room no.:",self.rno,"\n")
def roomrent(self):#sel1353
if(x==1):
self.s=11000*n
elif (x==2):
self.s=9500*n
elif (x==3):
self.s=8000*n
13
elif (x==4):
print ("you have opted room type D")
self.s=7500*n
else:
def restaurentbill(self):
print("*****RESTAURANT MENU*****")
print("1.water--->Rs50","2.tea--->Rs30","3.breakfast
combo--->Rs140","4.lunch--->Rs190","5.dinner---
>Rs230","6.Exit")
while (1):
if (c==1):
d=int(input("Enter the quantity:"))
self.r=self.r+50*d
elif (c==2):
d=int(input("Enter the quantity:"))
self.r=self.r+30*d
elif (c==3):
d=int(input("Enter the quantity:"))
self.r=self.r+140*d
elif (c==4):
d=int(input("Enter the quantity:"))
self.r=self.r+190*d
elif (c==5):
d=int(input("Enter the quantity:"))
self.r=self.r+230*d
elif (c==6):
break;
else:
print("Invalid option")
deflaundrybill(self):
print ("******LAUNDRY MENU*******")
print ("1.Shorts--->Rs18","2.Trousers--->Rs22","3.Shirt---
>Rs35","4.Jeans--->Rs46","5.Girlsuit--->Rs38","6.Exit")
while (1):
#brought to you by code-projects.org
if (e==1):
f=int(input("Enter the quantity:"))
self.t=self.t+18*f
elif (e==2):
f=int(input("Enter the quantity:"))
self.t=self.t+22*f
15
elif (e==3):
f=int(input("Enter the quantity:"))
self.t=self.t+35*f
elif (e==4):
f=int(input("Enter the quantity:"))
self.t=self.t+46*f
elif (e==5):
f=int(input("Enter the quantity:"))
self.t=self.t+48*f
elif (e==6):
break;
else:
def gamebill(self):
print ("******GAME MENU*******")
while (1):
elif (g==2):
h=int(input("No. of hours:"))
self.p=self.p+180*h
elif (g==3):
h=int(input("No. of hours:"))
self.p=self.p+250*h
elif (g==4):
h=int(input("No. of hours:"))
self.p=self.p+300*h
elif (g==5):
h=int(input("No. of hours:"))
self.p=self.p+250*h
elif (g==6):
break;
else:
def display(self):
print ("******HOTEL BILL******")
print ("Customer details:")
print ("Customer name:",self.name)
17
print ("Customer address:",self.address)
print ("Check in date:",self.cindate)
print ("Check out date",self.coutdate)
print ("Room no.",self.rno)
print ("Your Room rent is:",self.s)
print ("Your Food bill is:",self.r)
print ("Your laundary bill is:",self.t)
print ("Your Game bill is:",self.p)
self.rt=self.s+self.t+self.p+self.r
def main():
a=hotelfarecal()
while (1):
print("1.Enter Customer Data")
print("2.Calculate rommrent")
print("7.EXIT")
if (b==2):
a.roomrent()
if (b==3):
a.restaurentbill()
if (b==4):
a.laundrybill()
if (b==5):
a.gamebill()
if (b==6):
a.display()
if (b==7):
feed=input("Enjoyed our services--->")
if feed=='yes':
print("Thank You!!! Visit Again!!!")
19
elif feed=='no':
print("Thank You!!! We will take care...")
quit()
main()
SCREEN SHOT
21
23
CONCLUSION
25
BIBLIOGRAPHY
1. www.google.co.in
2. www.youtube.com
3. www.w3schools.com
4. www.tutorialspoint.com