-
Notifications
You must be signed in to change notification settings - Fork 0
/
enquiry.py
148 lines (122 loc) · 6.24 KB
/
enquiry.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
import os
import pickle
import sqlite3
from tkinter import messagebox
import sys
try:
from Tkinter import *
except ImportError:
from tkinter import *
class New_Toplevel:
def __init__(self):
def check_room():
self.rom = str(self.data.get())
if self.rom.isdigit() == True and len(self.rom) != 0:
connt = sqlite3.connect('database.db')
c = connt.cursor()
c.execute("SELECT * from customer WHERE account = " + self.data.get())
row=c.fetchone()
if row is None:
messagebox.showinfo("SORRY!","Account Doesn't Exist")
else:
c.execute("SELECT * from customer WHERE account = " + self.data.get())
for row in c.fetchall():
self.Text1.delete(1.0, END)
self.Text1.insert(INSERT, "------------------------------------------------""\n")
self.Text1.insert(INSERT, "A/C NO : " + str(row[0]) + "\n")
self.Text1.insert(INSERT, "NAME : " + str(row[1]) + "\n")
self.Text1.insert(INSERT, "GENDER : " + str(row[2]) + "\n")
self.Text1.insert(INSERT, "AGE : " + str(row[3]) + "\n")
self.Text1.insert(INSERT, "ADDRESS : " + str(row[4]) + "\n")
self.Text1.insert(INSERT, "MOBILE : " + str(row[5]) + "\n")
self.Text1.insert(INSERT, "ADHAAR NO. : " + str(row[6]) + "\n")
self.Text1.insert(INSERT, "AMOUNT : " + str(row[7]) + "\n")
self.Text1.insert(INSERT, "A/C TYPE : " + str(row[8]) + "\n")
self.Text1.insert(INSERT, "------------------------------------------------""\n")
connt.close()
messagebox.showinfo("SUCCESS!", " Account Exists")
else:
self.Text1.delete(1.0, END)
self.Text1.insert(INSERT, "INVALID INPUT! PLEASE INPUT A VALID ACC NO.""\n")
root = Tk()
'''This class configures and populates the toplevel window.
top is the toplevel containing window.'''
_bgcolor = '#ffffff' # X11 color: 'white'
_fgcolor = '#000000' # X11 color: 'black'
_compcolor = '#ffffff' # X11 color: 'white'
_ana1color = '#ffffff' # X11 color: 'white'
_ana2color = '#ffffff' # X11 color: '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"
root.geometry("1063x749+0+0")
root.title("BALANCE ENQUIRY")
root.configure(background="black")
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="yellow")
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="yellow")
self.Label1.configure(disabledforeground="#bfbfbf")
self.Label1.configure(font=font11)
self.Label1.configure(foreground="blue")
self.Label1.configure(highlightbackground="#ffffff")
self.Label1.configure(highlightcolor="black")
self.Label1.configure(text='''ENTER THE ACC NO. ''')
self.Entry1 = Entry(self.Frame1)
self.data=StringVar()
self.Entry1.place(relx=0.67, rely=0.12,height=44, relwidth=0.17)
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="#ffffff")
self.Button1.configure(activeforeground="#000000")
self.Button1.configure(background="blue")
self.Button1.configure(disabledforeground="#bfbfbf")
self.Button1.configure(font=font12)
self.Button1.configure(foreground="white")
self.Button1.configure(highlightbackground="#ffffff")
self.Button1.configure(highlightcolor="black")
self.Button1.configure(pady="0")
self.Button1.configure(text='''ENQUIRY''')
self.Button1.configure(command=check_room)
root.mainloop()
if __name__ == '__main__':
out=New_Toplevel()