-
Notifications
You must be signed in to change notification settings - Fork 35
/
getinfoui.py
188 lines (155 loc) · 6.52 KB
/
getinfoui.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
import os
import pickle
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():
"""Restarts the current program.
Note: this function does not return. Any cleanup action (like
saving data) must be done before calling this function."""
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)
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
class HOTEL_MANAGEMENT:
def __init__(self):
def gotinfo():
self.gettininfo = str(self.gather.get())
print(self.gettininfo)
print("\n")
if self.gettininfo.isdigit() == True and len(self.gettininfo) != 0:
self.Text1.insert(INSERT, " valid room number ""\n")
else :
self.Text1.insert(INSERT,"invalid room number""\n")
try:
n = 0
f2 = open("hotel.dat", "rb")
while True:
s = pickle.load(f2)
a = str(s.room_no)
print (a)
if self.gettininfo == a:
n = 1
print("NAME-", "\t", "\t", s.name)
print("\n")
print("ADDRESS-", "\t", s.address)
print("\n")
print("MOBILE NO.-", " ", s.mobile_no)
print("\n")
print("HIS TOTAL BILL IS Rs.", s.price)
elif EOFError:
if n == 0:
print("NO GUEST IN ROOM ", self.gettininfo)
else:
n = 0
continue
except EOFError:
pass
f2.close()
root = Tk()
'''This class configures and populates the toplevel window.
top is the toplevel containing window.'''
_bgcolor = '#d9d9d9' # X11 color: 'gray85'
_fgcolor = '#000000' # X11 color: 'black'
_compcolor = '#d9d9d9' # X11 color: 'gray85'
_ana1color = '#d9d9d9' # X11 color: 'gray85'
_ana2color = '#d9d9d9' # X11 color: 'gray85'
font10 = "-family {Segoe UI} -size 17 -weight bold -slant " \
"roman -underline 0 -overstrike 0"
font11 = "-family {Segoe UI} -size 28 -weight bold -slant " \
"roman -underline 0 -overstrike 0"
font9 = "-family {Segoe UI} -size 23 -weight bold -slant roman" \
" -underline 0 -overstrike 0"
root.geometry("881x582+249+104")
root.title("HOTEL MANAGEMENT")
root.configure(background="#d9d9d9")
self.Frame1 = Frame(root)
self.Frame1.place(relx=0.02, rely=0.03, relheight=0.94, relwidth=0.94)
self.Frame1.configure(relief=GROOVE)
self.Frame1.configure(borderwidth="2")
self.Frame1.configure(relief=GROOVE)
self.Frame1.configure(background="#d9d9d9")
self.Frame1.configure(width=825)
self.Text1 = Text(self.Frame1)
self.Text1.place(relx=0.04, rely=0.46, relheight=0.48, relwidth=0.93)
self.Text1.configure(background="white")
self.Text1.configure(font="TkTextFont")
self.Text1.configure(foreground="black")
self.Text1.configure(highlightbackground="#d9d9d9")
self.Text1.configure(highlightcolor="black")
self.Text1.configure(insertbackground="black")
self.Text1.configure(selectbackground="#c4c4c4")
self.Text1.configure(selectforeground="black")
self.Text1.configure(width=764)
self.Text1.configure(wrap=WORD)
self.Label1 = Label(self.Frame1)
self.Label1.place(relx=0.12, rely=0.15, height=48, width=377)
self.Label1.configure(background="#d9d9d9")
self.Label1.configure(disabledforeground="#a3a3a3")
self.Label1.configure(font=font9)
self.Label1.configure(foreground="#000000")
self.Label1.configure(text='''ENTER THE ROOM NO. :''')
self.Entry1 = Entry(self.Frame1)
self.gather=StringVar()
self.Entry1.place(relx=0.65, rely=0.17,height=40, relwidth=0.1)
self.Entry1.configure(background="white")
self.Entry1.configure(disabledforeground="#a3a3a3")
self.Entry1.configure(font="TkFixedFont")
self.Entry1.configure(foreground="#000000")
self.Entry1.configure(insertbackground="black")
self.Entry1.configure(width=84)
self.Entry1.configure(textvariable=self.gather)
self.Button1 = Button(self.Frame1)
self.Button1.place(relx=0.39, rely=0.29, height=74, width=197)
self.Button1.configure(activebackground="#d9d9d9")
self.Button1.configure(activeforeground="#000000")
self.Button1.configure(background="#d9d9d9")
self.Button1.configure(disabledforeground="#a3a3a3")
self.Button1.configure(font=font10)
self.Button1.configure(foreground="#000000")
self.Button1.configure(highlightbackground="#d9d9d9")
self.Button1.configure(highlightcolor="black")
self.Button1.configure(pady="0")
self.Button1.configure(text='''SUBMIT''')
self.Button1.configure(width=197)
self.Button1.configure(command=gotinfo)
self.Message1 = Message(self.Frame1)
self.Message1.place(relx=0.22, rely=0.02, relheight=0.12, relwidth=0.56)
self.Message1.configure(background="#d9d9d9")
self.Message1.configure(font=font11)
self.Message1.configure(foreground="#000000")
self.Message1.configure(highlightbackground="#d9d9d9")
self.Message1.configure(highlightcolor="black")
self.Message1.configure(text='''GET INFO HERE ..!!''')
self.Message1.configure(width=460)
root.mainloop()
if __name__ == '__main__':
GETINFO=HOTEL_MANAGEMENT()