-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcheck_out.py
83 lines (66 loc) · 3.61 KB
/
check_out.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import sqlite3
from tkinter import *
import main
class CheckOut:
def __init__(self, root):
self.root = root
pad = 3
self.root.title("Check out of OceanView")
self.root.iconbitmap("hms.ico")
self.root.geometry("{0}x{1}+0+0".format(self.root.winfo_screenwidth() - pad, self.root.winfo_screenheight() - pad))
# create mainframe to add message
top = Frame(self.root)
top.pack(side="top")
bottom = Frame(self.root)
bottom.pack(side="top")
info_frame = Frame(self.root)
info_frame.pack(side="top")
# display message
self.label = Label(top, font=('Bookman Old Style', 50, 'bold'), text="Check out of Oceanview", fg="#330000", anchor="center")
self.label.grid(row=0, column=3, padx=10, pady=10)
#room number
self.room_no_label = Label(bottom, font=('Bookman Old Style', 20, 'bold'), text="Enter Room Number: ", fg="#330000", anchor="center")
self.room_no_label.grid(row=2, column=2, padx=10, pady=(70, 10))
# text entry field for room number
self.room_var = IntVar()
self.room_no_entry = Entry(bottom, width=5, text=self.room_var, font="14")
self.room_no_entry.grid(row=2, column=3, padx=10, pady=(70, 10))
# info window
self.get_info_entry = Text(info_frame, height=15, width=90)
self.get_info_entry.grid(row=1, column=1, padx=10, pady=10)
def check_out():
room_number1 = int(self.room_no_entry.get())
conn = sqlite3.connect('Hotel.db')
with conn:
cursor = conn.cursor()
cursor.execute(
'CREATE TABLE IF NOT EXISTS Hotel (Fullname TEXT,Address TEXT,mobile_number TEXT,number_days TEXT,'
'room_number NUMBER)')
conn.commit()
with conn:
cursor.execute("SELECT room_number FROM Hotel")
ans = cursor.fetchall()
room = []
for i in ans:
room.append(i[0])
if room_number1 in room:
with conn:
cursor.execute("SELECT Fullname,room_number FROM Hotel")
ans = cursor.fetchall()
for i in ans:
if room_number1 == int(i[1]):
self.get_info_entry.insert(INSERT, '\n' + str(i[0]) + ' has successfully checked out from OceanView room number: ' + str(i[1]) + '\n')
with conn:
cursor.execute("""DELETE FROM Hotel where room_number = ?""", [room_number1])
else:
self.get_info_entry.insert(INSERT, "Please enter valid room number!")
# create submit button
self.check_out_button = Button(bottom, text="Check out", font=('Bookman Old Style', 15), bg="#330000", relief=RIDGE, height=2, width=15, fg="white", anchor="center", command=check_out)
self.check_out_button.grid(row=3, column=2, padx=10, pady=(10, 20))
# create home button
self.home_button = Button(bottom, text="Home", font=('Bookman Old Style', 15), bg="#330000", relief=RIDGE, height=2, width=15, fg="white", anchor="center", command=self.root.destroy)
self.home_button.grid(row=3, column=3, padx=10, pady=(10, 20))
def check_out_ui():
root = Tk()
application = CheckOut(root)
root.mainloop()