-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
384 lines (312 loc) · 21.3 KB
/
main.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
from functools import partial
from tkinter import *
from tkinter import messagebox
import pymysql
import custom as cs
import credentials as cr
import os
class Management:
def __init__(self,root):
self.root = root
self.root.title("Patient Details")
self.root.geometry("780x480")
self.root.config(bg = "white")
# Customization
self.color_1 = cs.color_1
self.color_2 = cs.color_2
self.color_3 = cs.color_3
self.color_4 = cs.color_4
self.font_1 = cs.font_1
self.font_2 = cs.font_2
# User Credentials
self.host = cr.host
self.user = cr.user
self.password = cr.password
self.database = cr.database
# Left Frame
self.frame_1 = Frame(self.root, bg=self.color_1)
self.frame_1.place(x=0, y=0, width=540, relheight = 1)
# Right Frame
self.frame_2 = Frame(self.root, bg = self.color_2)
self.frame_2.place(x=540,y=0,relwidth=1, relheight=1)
# Buttons
self.add_bt = Button(self.frame_2, text='Add New', font=(self.font_1, 12), bd=2, command=self.AddStudent, cursor="hand2", bg="light grey",fg=self.color_3,relief="sunken",borderwidth="6").place(x=68,y=40,width=100)
self.view_bt = Button(self.frame_2, text='View Details', font=(self.font_1, 12), bd=2, command=self.GetContact_View, cursor="hand2", bg="light grey",fg=self.color_3,relief="sunken",borderwidth="6").place(x=68,y=100,width=100)
self.update_bt = Button(self.frame_2, text='Update', font=(self.font_1, 12), bd=2, command=self.GetContact_Update, cursor="hand2", bg="light grey",fg=self.color_3,relief="sunken",borderwidth="6").place(x=68,y=160,width=100)
self.delete_bt = Button(self.frame_2, text='Delete', font=(self.font_1, 12), bd=2, command=self.GetContact_Delete,cursor="hand2", bg="light grey",fg=self.color_3,relief="sunken",borderwidth="6").place(x=68,y=220,width=100)
self.clear_bt = Button(self.frame_2, text='Clear', font=(self.font_1, 12), bd=2, command=self.ClearScreen, cursor="hand2", bg="light grey",fg=self.color_3,relief="sunken",borderwidth="6").place(x=68,y=280,width=100)
self.loginbt = Button(self.frame_2, text='=>', font=(self.font_1, 12), bd=2, command=self.log, cursor="hand2", bg="light grey",fg=self.color_3,relief="sunken",borderwidth="6").place(x=68,y=340,width=100)
#self.loginbt = Button(self.frame_2, text="Login page", command=self.log, font=("times new roman", 18, "bold"), bd=0,cursor="hand2", bg="green2", fg="white").place(x=120, y=10, width=250)
'''Widgets for adding data'''
def AddStudent(self):
self.ClearScreen()
self.name = Label(self.frame_1, text="First Name", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=40,y=30)
self.name_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.name_entry.place(x=40,y=60, width=200)
self.surname = Label(self.frame_1, text="Last Name", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=300,y=30)
self.surname_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.surname_entry.place(x=300,y=60, width=200)
self.course = Label(self.frame_1, text="City", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=40,y=100)
self.course_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.course_entry.place(x=40,y=130, width=200)
self.subject = Label(self.frame_1, text="State", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=300,y=100)
self.subject_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.subject_entry.place(x=300,y=130, width=200)
self.year = Label(self.frame_1, text="Patient Adress", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=40,y=170)
self.year_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.year_entry.place(x=40,y=200, width=200)
self.age = Label(self.frame_1, text="Age", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=300,y=170)
self.age_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.age_entry.place(x=300,y=200, width=200)
self.gender = Label(self.frame_1, text="Gender", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=40,y=240)
self.gender_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.gender_entry.place(x=40,y=270, width=200)
self.birth = Label(self.frame_1, text="Blood Group", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=300,y=240)
self.birth_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.birth_entry.place(x=300,y=270, width=200)
self.contact = Label(self.frame_1, text="Contact", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=40,y=310)
self.contact_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.contact_entry.place(x=40,y=340, width=200)
self.email = Label(self.frame_1, text="Email", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=300,y=310)
self.email_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.email_entry.place(x=300,y=340, width=200)
self.submit_bt_1 = Button(self.frame_1, text='Submit', font=(self.font_1, 12), bd=2, command=self.Submit, cursor="hand2", bg=self.color_2,fg=self.color_3).place(x=200,y=389,width=100)
'''Get the contact number to show a details'''
def GetContact_View(self):
self.ClearScreen()
self.getInfo = Label(self.frame_1, text="Enter Phone Number", font=(self.font_2, 18, "bold"), bg=self.color_1).place(x=140,y=70)
self.getInfo_entry = Entry(self.frame_1, font=(self.font_1, 12), bg=self.color_4, fg=self.color_3)
self.getInfo_entry.place(x=163, y=110, width=200, height=30)
self.submit_bt_2 = Button(self.frame_1, text='Submit', font=(self.font_1, 10), bd=2, command=self.CheckContact_View, cursor="hand2", bg=self.color_2,fg=self.color_3).place(x=220,y=150,width=80)
'''To update a details, get the contact number'''
def GetContact_Update(self):
self.ClearScreen()
self.getInfo = Label(self.frame_1, text="Enter Phone Number", font=(self.font_2, 18, "bold"), bg=self.color_1).place(x=140,y=70)
self.getInfo_entry = Entry(self.frame_1, font=(self.font_1, 12), bg=self.color_4, fg=self.color_3)
self.getInfo_entry.place(x=163, y=110, width=200, height=30)
self.submit_bt_2 = Button(self.frame_1, text='Submit', font=(self.font_1, 10), bd=2, command=self.CheckContact_Update, cursor="hand2", bg=self.color_2,fg=self.color_3).place(x=220,y=150,width=80)
'''Get the contact number to delete a record'''
def GetContact_Delete(self):
self.ClearScreen()
self.getInfo = Label(self.frame_1, text="Enter Phone Number", font=(self.font_2, 18, "bold"), bg=self.color_1).place(x=140,y=70)
self.getInfo_entry = Entry(self.frame_1, font=(self.font_1, 12), bg=self.color_4, fg=self.color_3)
self.getInfo_entry.place(x=163, y=110, width=200, height=30)
self.submit_bt_2 = Button(self.frame_1, text='Submit', font=(self.font_1, 10), bd=2, command=self.DeleteData, cursor="hand2", bg=self.color_2,fg=self.color_3).place(x=220,y=150,width=80)
'''Remove all widgets from the frame 1'''
def ClearScreen(self):
for widget in self.frame_1.winfo_children():
widget.destroy()
'''Exit window'''
def Exit(self):
self.root.destroy()
'''
Checks whether the contact number is available or not. If available,
the function calls the 'ShowDetails' function to display the result.
'''
def CheckContact_View(self):
if self.getInfo_entry.get() == "":
messagebox.showerror("Error!", "Please enter your contact number",parent=self.root)
else:
try:
connection = pymysql.connect(host="localhost", user="root", password="chirag123", database="hospitals")
curs = connection.cursor()
curs.execute("select * from patient_d where contact=%s", self.getInfo_entry.get())
row=curs.fetchone()
if row == None:
messagebox.showerror("Error!","Contact number doesn't exists",parent=self.root)
else:
self.ShowDetails(row)
connection.close()
except Exception as e:
messagebox.showerror("Error!",f"Error due to {str(e)}",parent=self.root)
'''
Checks whether the contact number is available or not. If available,
the function calls the 'GetUpdateDetails' function to get the new data to perform
update operation.
'''
def CheckContact_Update(self):
if self.getInfo_entry.get() == "":
messagebox.showerror("Error!", "Please enter your contact number",parent=self.root)
else:
try:
connection = pymysql.connect(host="localhost", user="root", password="chirag123", database="hospitals")
curs = connection.cursor()
curs.execute("select * from patient_d where contact=%s", self.getInfo_entry.get())
row=curs.fetchone()
if row == None:
messagebox.showerror("Error!","Contact number doesn't exists",parent=self.root)
else:
self.GetUpdateDetails(row)
connection.close()
except Exception as e:
messagebox.showerror("Error!",f"Error due to {str(e)}",parent=self.root)
'''Clears a record'''
def DeleteData(self):
if self.getInfo_entry.get() == "":
messagebox.showerror("Error!", "Please enter your contact number",parent=self.root)
else:
try:
connection = pymysql.connect(host="localhost", user="root", password="chirag123", database="hospitals")
curs = connection.cursor()
curs.execute("select * from patient_d where contact=%s", self.getInfo_entry.get())
row=curs.fetchone()
if row == None:
messagebox.showerror("Error!","Contact number doesn't exists",parent=self.root)
else:
curs.execute("delete from patient_d where contact=%s", self.getInfo_entry.get())
connection.commit()
messagebox.showinfo('Done!', "The data has been deleted")
connection.close()
self.ClearScreen()
except Exception as e:
messagebox.showerror("Error!",f"Error due to {str(e)}",parent=self.root)
'''Gets the data that the user wants to update to perform the update operation'''
def GetUpdateDetails(self, row):
self.ClearScreen()
self.name = Label(self.frame_1, text="First Name", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=40,y=30)
self.name_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.name_entry.insert(0, row[0])
self.name_entry.place(x=40,y=60, width=200)
self.surname = Label(self.frame_1, text="Last Name", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=300,y=30)
self.surname_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.surname_entry.insert(0, row[1])
self.surname_entry.place(x=300,y=60, width=200)
self.course = Label(self.frame_1, text="City", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=40,y=100)
self.course_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.course_entry.insert(0, row[2])
self.course_entry.place(x=40,y=130, width=200)
self.subject = Label(self.frame_1, text="State", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=300,y=100)
self.subject_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.subject_entry.insert(0, row[3])
self.subject_entry.place(x=300,y=130, width=200)
self.year = Label(self.frame_1, text="Patient Adress", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=40,y=170)
self.year_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.year_entry.insert(0, row[4])
self.year_entry.place(x=40,y=200, width=200)
self.age = Label(self.frame_1, text="Age", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=300,y=170)
self.age_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.age_entry.insert(0, row[5])
self.age_entry.place(x=300,y=200, width=200)
self.gender = Label(self.frame_1, text="Gender", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=40,y=240)
self.gender_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.gender_entry.insert(0, row[6])
self.gender_entry.place(x=40,y=270, width=200)
self.birth = Label(self.frame_1, text="Blood Group", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=300,y=240)
self.birth_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.birth_entry.insert(0, row[7])
self.birth_entry.place(x=300,y=270, width=200)
contact = Label(self.frame_1, text="Contact", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=40,y=310)
contact_data = Label(self.frame_1, text=row[8], font=(self.font_1, 10)).place(x=40, y=340)
self.email = Label(self.frame_1, text="Email", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=300,y=310)
self.email_entry = Entry(self.frame_1, bg=self.color_4, fg=self.color_3)
self.email_entry.insert(0, row[9])
self.email_entry.place(x=300,y=340, width=200)
self.submit_bt_1 = Button(self.frame_1, text='Submit', font=(self.font_1, 12), bd=2, command=partial(self.UpdateDetails, row), cursor="hand2", bg=self.color_2,fg=self.color_3).place(x=160,y=389,width=100)
self.cancel_bt = Button(self.frame_1, text='Cancel', font=(self.font_1, 12), bd=2, command=self.ClearScreen, cursor="hand2", bg=self.color_2,fg=self.color_3).place(x=280,y=389,width=100)
'''Within frame 1, it displays information about a patient'''
def ShowDetails(self, row):
self.ClearScreen()
name = Label(self.frame_1, text="First Name", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=40,y=30)
name_data = Label(self.frame_1, text=row[0], font=(self.font_1, 10)).place(x=40, y=60)
surname = Label(self.frame_1, text="Last Name", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=300,y=30)
surname_data = Label(self.frame_1, text=row[1], font=(self.font_1, 10)).place(x=300, y=60)
course = Label(self.frame_1, text="City", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=40,y=100)
course_data = Label(self.frame_1, text=row[2], font=(self.font_1, 10)).place(x=40, y=130)
subject = Label(self.frame_1, text="State", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=300,y=100)
subject_data = Label(self.frame_1, text=row[3], font=(self.font_1, 10)).place(x=300, y=130)
year = Label(self.frame_1, text="Patient Adress", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=40,y=170)
year_data = Label(self.frame_1, text=row[4], font=(self.font_1, 10)).place(x=40, y=200)
age = Label(self.frame_1, text="Age", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=300,y=170)
age_data = Label(self.frame_1, text=row[5], font=(self.font_1, 10)).place(x=300, y=200)
gender = Label(self.frame_1, text="Gender", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=40,y=240)
gender_data = Label(self.frame_1, text=row[6], font=(self.font_1, 10)).place(x=40, y=270)
birth = Label(self.frame_1, text="Blood Group", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=300,y=240)
birth_data = Label(self.frame_1, text=row[7], font=(self.font_1, 10)).place(x=300, y=270)
contact = Label(self.frame_1, text="Contact", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=40,y=310)
contact_data = Label(self.frame_1, text=row[8], font=(self.font_1, 10)).place(x=40, y=340)
email = Label(self.frame_1, text="Email", font=(self.font_2, 15, "bold"), bg=self.color_1).place(x=300,y=310)
email_data = Label(self.frame_1, text=row[9], font=(self.font_1, 10)).place(x=300, y=340)
'''Updates data'''
def UpdateDetails(self, row):
if self.name_entry.get() == "" or self.surname_entry.get() == "" or self.course_entry.get() == "" or self.subject_entry.get() == "" or self.year_entry.get() == "" or self.age_entry.get() == "" or self.gender_entry.get() == "" or self.birth_entry.get() == "" or self.email_entry.get() == "":
messagebox.showerror("Error!","Sorry!, All fields are required",parent=self.root)
else:
try:
connection = pymysql.connect(host="localhost", user="root", password="chirag123", database="hospitals")
curs = connection.cursor()
curs.execute("select * from patient_d where contact=%s", row[8])
row=curs.fetchone()
if row==None:
messagebox.showerror("Error!","The contact number doesn't exists",parent=self.root)
else:
curs.execute("update patient_d set f_name=%s,l_name=%s, city=%s, state=%s, PAddr =%s, age=%s, gender=%s, blood_group=%s, email=%s where contact=%s",
(
self.name_entry.get(),
self.surname_entry.get(),
self.course_entry.get(),
self.subject_entry.get(),
self.year_entry.get(),
self.age_entry.get(),
self.gender_entry.get(),
self.birth_entry.get(),
self.email_entry.get(),
row[8]
))
connection.commit()
connection.close()
messagebox.showinfo('Done!', "The data has been updated")
self.ClearScreen()
except Exception as e:
messagebox.showerror("Error!",f"Error due to {str(e)}",parent=self.root)
'''It adds the information of new students'''
def Submit(self):
if self.name_entry.get() == "" or self.surname_entry.get() == "" or self.course_entry.get() == "" or self.subject_entry.get() == "" or self.year_entry.get() == "" or self.age_entry.get() == "" or self.gender_entry.get() == "" or self.birth_entry.get() == "" or self.contact_entry.get() == "" or self.email_entry.get() == "":
messagebox.showerror("Error!","Sorry!, All fields are required",parent=self.root)
else:
try:
connection = pymysql.connect(host="localhost", user="root", password="chirag123", database="hospitals")
curs = connection.cursor()
curs.execute("select * from patient_d where contact=%s", self.contact_entry.get())
row=curs.fetchone()
if row!=None:
messagebox.showerror("Error!","The contact number is already exists, please try again with another number",parent=self.window)
else:
curs.execute("insert into patient_d (f_name,l_name,city,state,PAddr,age,gender,blood_group,contact,email) values(%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)",
(
self.name_entry.get(),
self.surname_entry.get(),
self.course_entry.get(),
self.subject_entry.get(),
self.year_entry.get(),
self.age_entry.get(),
self.gender_entry.get(),
self.birth_entry.get(),
self.contact_entry.get(),
self.email_entry.get()
))
connection.commit()
connection.close()
messagebox.showinfo('Done!', "The data has been submitted")
self.reset_fields()
except Exception as e:
messagebox.showerror("Error!",f"Error due to {str(e)}",parent=self.root)
'''Reset all the entry fields'''
def reset_fields(self):
self.name_entry.delete(0, END)
self.surname_entry.delete(0, END)
self.course_entry.delete(0, END)
self.subject_entry.delete(0, END)
self.year_entry.delete(0, END)
self.age_entry.delete(0, END)
self.gender_entry.delete(0, END)
self.birth_entry.delete(0, END)
self.contact_entry.delete(0, END)
self.email_entry.delete(0, END)
def log(self):
self.root.destroy()
os.system("Recommendation.py")
# The main function
if __name__ == "__main__":
root = Tk()
obj = Management(root)
root.mainloop()