-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkoutgui.py
213 lines (170 loc) · 7.59 KB
/
checkoutgui.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
import os
from subprocess import call
import pickle
import sys
try:
from Tkinter import *
except ImportError:
from tkinter import *
try:
import ttk
py3 = False
except ImportError:
import tkinter.ttk as ttk
py3 = True
def click_Feedback():
call(["python","Feedback.py"])
details_list=[]
l2=[]
G = []
def file_save():
NAME_PRO = details_list[0]
ADDRESS_PRO = details_list[1]
MOBILE_NO_PRO = details_list[2]
ROOM_NO_PRO = details_list[3]
PRICE_PRO = details_list[4]
f = open("hotel.dat", "ab")
a=save(NAME_PRO,ADDRESS_PRO,MOBILE_NO_PRO,ROOM_NO_PRO,PRICE_PRO)
pickle.dump(a,f,protocol=2)
f.close()
restart_program()
def restart_program():
python = sys.executable
os.execl(python, python, * sys.argv)
class save:
def __init__(self, NAME_PRO, ADDRESS_PRO, MOBILE_NO_PRO, ROOM_NO_PRO, PRICE_PRO):
self.name=NAME_PRO
self.address=ADDRESS_PRO
self.mobile_no=MOBILE_NO_PRO
self.room_no=ROOM_NO_PRO
self.price=PRICE_PRO
print(self.name,self.address,self.mobile_no,self.room_no,self.price)
class New_Toplevel:
def __init__(self):
def check_room():
self.rom = str(self.data.get())
print(self.rom)
print("\n")
if self.rom.isdigit() == True and len(self.rom) != 0:
self.Text1.insert(INSERT, " valid room number ""\n")
v = int(self.rom)
f = open("hotel.dat", "rb")
f1 = open("hote.dat", "ab")
n = 0
try:
while True:
s = pickle.load(f)
if s.room_no == v:
n = 1
name1 = s.name
print(" ")
else:
pickle.dump(s, f1)
except EOFError:
if n == 0:
self.Text1.insert(INSERT, "NO GUEST FOUND""\n")
elif n == 1:
self.Text1.insert(INSERT, "THANK YOU " + name1.upper() + " FOR VISTING US""\n")
pass
f.close()
f1.close()
os.remove("hotel.dat")
os.rename("hote.dat", "hotel.dat")
else:
self.Text1.insert(INSERT, "invalid input please input a valid ROOM NO.""\n")
root = Tk()
_bgcolor = '#ffffff' # 'white'
_fgcolor = '#000000' # 'black'
_compcolor = '#ffffff' # 'white'
_ana1color = '#ffffff' # 'white'
_ana2color = '#ffffff' # 'white'
font10 = "-family {Courier New} -size 10 -weight normal -slant" \
" roman -underline 0 -overstrike 0"
font11 = "-family {Segoe UI} -size 23 -weight bold -slant " \
"roman -underline 0 -overstrike 0"
font12 = "-family {Segoe UI} -size 24 -weight bold -slant " \
"roman -underline 0 -overstrike 0"
font9 = "-family {Segoe UI} -size 9 -weight normal -slant " \
"roman -underline 0 -overstrike 0"
font14 = "-family {Segoe UI} -size 15 -weight bold -slant " \
"roman -underline 0 -overstrike 0"
root.geometry("1011x750")
root.title("HOTEL MANAGEMENT Programme by AK")
root.configure(background="#5F9EA0") # 'cadetblue'
root.configure(highlightbackground="#ffffff")
root.configure(highlightcolor="black")
self.Frame1 = Frame(root)
self.Frame1.place(relx=0.04, rely=0.04, relheight=0.91, relwidth=0.91)
self.Frame1.configure(relief=GROOVE)
self.Frame1.configure(borderwidth="2")
self.Frame1.configure(relief=GROOVE)
self.Frame1.configure(background="#ffffff")
self.Frame1.configure(highlightbackground="#ffffff")
self.Frame1.configure(highlightcolor="black")
self.Frame1.configure(width=925)
self.Label1 = Label(self.Frame1)
self.Label1.place(relx=0.14, rely=0.12, height=46, width=442)
self.Label1.configure(activebackground="#ffffff")
self.Label1.configure(activeforeground="black")
self.Label1.configure(background="#ffffff")
self.Label1.configure(disabledforeground="#bfbfbf")
self.Label1.configure(font=font11)
self.Label1.configure(foreground="#000000")
self.Label1.configure(highlightbackground="#ffffff")
self.Label1.configure(highlightcolor="black")
self.Label1.configure(text='''ENTER THE ROOM NO. :''')
self.Entry1 = Entry(self.Frame1)
self.data=StringVar()
self.Entry1.place(relx=0.67, rely=0.12,height=44, relwidth=0.07)
self.Entry1.configure(background="white")
self.Entry1.configure(disabledforeground="#bfbfbf")
self.Entry1.configure(font=font10)
self.Entry1.configure(foreground="#000000")
self.Entry1.configure(highlightbackground="#ffffff")
self.Entry1.configure(highlightcolor="black")
self.Entry1.configure(insertbackground="black")
self.Entry1.configure(selectbackground="#e6e6e6")
self.Entry1.configure(selectforeground="black")
self.Entry1.configure(textvariable=self.data)
self.Text1 = Text(self.Frame1)
self.Text1.place(relx=0.05, rely=0.54, relheight=0.4, relwidth=0.89)
self.Text1.configure(background="white")
self.Text1.configure(font=font9)
self.Text1.configure(foreground="black")
self.Text1.configure(highlightbackground="#ffffff")
self.Text1.configure(highlightcolor="black")
self.Text1.configure(insertbackground="black")
self.Text1.configure(selectbackground="#e6e6e6")
self.Text1.configure(selectforeground="black")
self.Text1.configure(width=824)
self.Text1.configure(wrap=WORD)
self.Button1 = Button(self.Frame1)
self.Button1.place(relx=0.34, rely=0.28, height=93, width=286)
self.Button1.configure(activebackground="#1E90FF") # 'dodgerblue'
self.Button1.configure(activeforeground="#1E90FF") # 'dodgerblue'
self.Button1.configure(background="#B0C4DE") # 'lightsteelblue'
self.Button1.configure(disabledforeground="#bfbfbf")
self.Button1.configure(font=font12)
self.Button1.configure(foreground="#000000")
self.Button1.configure(highlightbackground="#ffffff")
self.Button1.configure(highlightcolor="black")
self.Button1.configure(pady="0")
self.Button1.configure(text='''CHECK OUT''')
self.Button1.configure(command=check_room)
self.Button2 = Button(self.Frame1)
self.Button2.place(relx=0.692, rely=0.3078, height=52, width=152)
self.Button2.configure(activebackground="#4682B4") # 'steelblue'
self.Button2.configure(activeforeground="#000000")
self.Button2.configure(background="#6A5ACD") # 'slateblue'
self.Button2.configure(disabledforeground="#bfbfbf")
self.Button2.configure(font=font14)
self.Button2.configure(foreground="#000000")
self.Button2.configure(highlightbackground="#483D8B") # 'darkslateblue'
self.Button2.configure(highlightcolor="black")
self.Button2.configure(pady="0")
self.Button2.configure(text='''Feedback''')
self.Button2.configure(width=566)
self.Button2.configure(command=click_Feedback)
root.mainloop()
if __name__ == '__main__':
out=New_Toplevel()