-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworker.py
528 lines (403 loc) · 18.3 KB
/
worker.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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'worker.ui'
#
# Created by: PyQt5 UI code generator 5.9.2
#
# WARNING! All changes made in this file will be lost!
import re
from PyQt5 import QtCore, QtGui, QtWidgets
import sqlite3
import stringprep
class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
MainWindow.resize(541, 600)
palette = QtGui.QPalette()
brush = QtGui.QBrush(QtGui.QColor(0, 0, 0))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.WindowText, brush)
brush = QtGui.QBrush(QtGui.QColor(157, 155, 159))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Text, brush)
brush = QtGui.QBrush(QtGui.QColor(147, 147, 147))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.WindowText, brush)
brush = QtGui.QBrush(QtGui.QColor(157, 155, 159))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Text, brush)
brush = QtGui.QBrush(QtGui.QColor(120, 120, 120))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.WindowText, brush)
brush = QtGui.QBrush(QtGui.QColor(120, 120, 120))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Text, brush)
MainWindow.setPalette(palette)
self.centralwidget = QtWidgets.QWidget(MainWindow)
self.centralwidget.setObjectName("centralwidget")
self.label = QtWidgets.QLabel(self.centralwidget)
self.label.setGeometry(QtCore.QRect(10, 10, 61, 16))
font = QtGui.QFont()
font.setFamily("Arial")
font.setPointSize(14)
self.label.setFont(font)
self.label.setObjectName("label")
self.label_2 = QtWidgets.QLabel(self.centralwidget)
self.label_2.setGeometry(QtCore.QRect(10, 40, 131, 31))
font = QtGui.QFont()
font.setFamily("Arial")
font.setPointSize(14)
self.label_2.setFont(font)
self.label_2.setObjectName("label_2")
self.label_3 = QtWidgets.QLabel(self.centralwidget)
self.label_3.setGeometry(QtCore.QRect(10, 80, 131, 31))
font = QtGui.QFont()
font.setFamily("Arial")
font.setPointSize(14)
self.label_3.setFont(font)
self.label_3.setObjectName("label_3")
self.label_4 = QtWidgets.QLabel(self.centralwidget)
self.label_4.setGeometry(QtCore.QRect(10, 120, 131, 31))
font = QtGui.QFont()
font.setFamily("Arial")
font.setPointSize(14)
self.label_4.setFont(font)
self.label_4.setObjectName("label_4")
self.label_5 = QtWidgets.QLabel(self.centralwidget)
self.label_5.setGeometry(QtCore.QRect(10, 160, 131, 31))
font = QtGui.QFont()
font.setFamily("Arial")
font.setPointSize(14)
self.label_5.setFont(font)
self.label_5.setObjectName("label_5")
#To define the inName widget
self.inName = QtWidgets.QLineEdit(self.centralwidget)
self.inName.setGeometry(QtCore.QRect(70, 0, 461, 31))
font = QtGui.QFont()
font.setPointSize(12)
self.inName.setFont(font)
self.inName.setObjectName("inName")
# To define the inID widget
self.inID = QtWidgets.QLineEdit(self.centralwidget)
self.inID.setGeometry(QtCore.QRect(90, 40, 441, 31))
font = QtGui.QFont()
font.setPointSize(12)
self.inID.setFont(font)
self.inID.setObjectName("inID")
# To define the inAdd widget
self.inAdd = QtWidgets.QLineEdit(self.centralwidget)
self.inAdd.setGeometry(QtCore.QRect(90, 80, 441, 31))
font = QtGui.QFont()
font.setPointSize(12)
self.inAdd.setFont(font)
self.inAdd.setObjectName("inAdd")
# To define the inPhone widget
self.inPhone = QtWidgets.QLineEdit(self.centralwidget)
self.inPhone.setGeometry(QtCore.QRect(140, 120, 391, 31))
palette = QtGui.QPalette()
brush = QtGui.QBrush(QtGui.QColor(0, 0, 0))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.WindowText, brush)
brush = QtGui.QBrush(QtGui.QColor(0, 0, 0))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.WindowText, brush)
brush = QtGui.QBrush(QtGui.QColor(0, 0, 0))
brush.setStyle(QtCore.Qt.SolidPattern)
palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.WindowText, brush)
self.inPhone.setPalette(palette)
font = QtGui.QFont()
font.setPointSize(12)
self.inPhone.setFont(font)
self.inPhone.setObjectName("inPhone")
# To define the inMail widget
self.inMail = QtWidgets.QLineEdit(self.centralwidget)
self.inMail.setGeometry(QtCore.QRect(70, 160, 461, 31))
font = QtGui.QFont()
font.setPointSize(12)
self.inMail.setFont(font)
self.inMail.setObjectName("inMail")
# To define the Add button
self.btnAdd = QtWidgets.QPushButton(self.centralwidget, clicked = lambda:self.add_it())
self.btnAdd.setGeometry(QtCore.QRect(10, 210, 81, 31))
font = QtGui.QFont()
font.setPointSize(12)
self.btnAdd.setFont(font)
self.btnAdd.setObjectName("btnAdd")
# To define the Edit button
self.btnEdit = QtWidgets.QPushButton(self.centralwidget, clicked= lambda: self.edit_it())
self.btnEdit.setGeometry(QtCore.QRect(100, 210, 81, 31))
font = QtGui.QFont()
font.setPointSize(12)
self.btnEdit.setFont(font)
self.btnEdit.setObjectName("btnEdit")
# To define the Modify button
self.btnModify = QtWidgets.QPushButton(self.centralwidget, clicked= lambda: self.modify_it())
self.btnModify.setGeometry(QtCore.QRect(190, 210, 81, 31))
font = QtGui.QFont()
font.setPointSize(12)
self.btnModify.setFont(font)
self.btnModify.setObjectName("btnModify")
# To define the Delete button
self.btnDelete = QtWidgets.QPushButton(self.centralwidget, clicked= lambda : self.delete_it())
self.btnDelete.setGeometry(QtCore.QRect(280, 210, 81, 31))
font = QtGui.QFont()
font.setPointSize(12)
self.btnDelete.setFont(font)
self.btnDelete.setObjectName("btnDelete")
self.label_6 = QtWidgets.QLabel(self.centralwidget)
self.label_6.setGeometry(QtCore.QRect(10, 250, 141, 21))
font = QtGui.QFont()
font.setFamily("Arial")
font.setPointSize(14)
self.label_6.setFont(font)
self.label_6.setObjectName("label_6")
self.lsWorkers = QtWidgets.QListWidget(self.centralwidget)
self.lsWorkers.setGeometry(QtCore.QRect(10, 280, 521, 291))
self.lsWorkers.setFrameShape(QtWidgets.QFrame.Box)
self.lsWorkers.setObjectName("lsWorkers")
MainWindow.setCentralWidget(self.centralwidget)
self.menubar = QtWidgets.QMenuBar(MainWindow)
self.menubar.setGeometry(QtCore.QRect(0, 0, 541, 21))
self.menubar.setObjectName("menubar")
MainWindow.setMenuBar(self.menubar)
self.statusbar = QtWidgets.QStatusBar(MainWindow)
self.statusbar.setObjectName("statusbar")
MainWindow.setStatusBar(self.statusbar)
self.retranslateUi(MainWindow)
QtCore.QMetaObject.connectSlotsByName(MainWindow)
def show_it(self):
try:
conn = sqlite3.connect("worker_book.db")
c = conn.cursor()
c.execute("SELECT * from workers")
#get all the records fromt the DB in a list of tuples:
records=c.fetchall()
#transform it to a list of strings
ls=[]
for i in records:
tmp=''
for j in i:
tmp+=' '+str(j)
tmp=tmp[1:]
ls.append(tmp)
try:
#print the strings into the workers list
self.lsWorkers.addItems(ls)
except Exception as e:
print("adding the items in the workers list is stopped : ", e)
else:
print("adding the items in the workers list is done ")
except Exception as err:
print("Error while transferring Data from database to the workers list", err)
else:
print("transfer completed")
conn.commit()
finally:
# c.execute("SELECT * from workers")
# print(c.fetchall())
c.close()
conn.close()
def delete_it(self):
# Grab the selected row or current row
clicked = self.lsWorkers.currentRow()
#grab the elements of each row
name, id, post_address, phone, address =self.lsWorkers.currentItem().text().split(' ')
#Delete the item from the database :
conn = sqlite3.connect("worker_book.db")
c = conn.cursor()
try:
#delete the row where you find the same id
tmp=(id,'')
c.execute(f"DELETE FROM workers WHERE id in {tmp}")
except Exception as err:
print("deletion not completed : ",err)
else:
print("deletion completed")
conn.commit()
finally:
c.close()
conn.close()
#Delete the item from the worker list:
self.lsWorkers.takeItem(clicked)
def modify_add_it(self,name,id,post_address,phone,address):
# Forming the row
ch = name + ' ' + id + ' ' + post_address + ' ' + phone + ' ' + address
# creating the email pattern :
pattern_email = "[a-zA-Z0-9]+[@][a-zA-Z]+[.][a-zA-Z]+"
# creating the phone pattern:
pattern_phone = "[+][0-9]{1,3}[0-9]"
# handling the exceptions
if not (re.findall(pattern_email, address)) or not (re.findall(pattern_phone, phone)):
if not (re.findall(pattern_email, address)): # if EmailAddressFormatException :
# change the color of the text to red!
self.inMail.clear()
self.inMail.setStyleSheet("color: rgb(255, 0, 0);")
self.inMail.setText(address)
if not (re.findall(pattern_phone, phone)): # if PhoneNumberFormatException :
# change the color of the text to red!
self.inPhone.clear()
self.inPhone.setStyleSheet("color: rgb(255, 0, 0);")
self.inPhone.setText(phone)
else: # if all the items are in the right format
# add the line into the lsWorkers
self.lsWorkers.addItem(ch)
# reset the widgets
self.inMail.clear()
self.inMail.setStyleSheet("color: rgb(0, 0, 0);")
self.inPhone.clear()
self.inPhone.setStyleSheet("color: rgb(0, 0, 0);")
self.inAdd.clear()
self.inName.clear()
self.inID.clear()
def modify_it(self):
try:
if self.lsWorkers.currentRow() != -1: #if an item is selected in the workers list and not modified yet
# Grab the selected row or current row
c = self.lsWorkers.currentRow()
#form the items
name, id, post_address, phone, address =self.lsWorkers.currentItem().text().split(' ')
#put back the items to their corresponsing widgets
self.inName.setText(str(name))
self.inID.setText(str(id))
self.inPhone.setText(str(phone))
self.inAdd.setText(str(post_address))
self.inMail.setText(str(address))
#remove the item from the list
self.lsWorkers.takeItem(self.lsWorkers.currentRow())
else:
#if an item is modified and to be returned to the listbox
# Grab the Item from the widgets:
name = self.inName.text()
id = self.inID.text()
post_address = self.inAdd.text()
address = self.inMail.text()
phone = self.inPhone.text()
print(phone)
#add them to the workers list box:
self.modify_add_it(name,id,post_address,str(phone),address)
# reset the current row to -1
self.lsWorkers.setCurrentRow(-1)
except Exception as err :
print("the action was not completed: ",err)
else:
print("Action successfully completed")
def edit_it(self):
try:
if self.lsWorkers.currentRow() != -1: # if an item is selected in the workers list and not modified yet
# Grab the selected row or current row
c = self.lsWorkers.currentRow()
# form the items
name, id, post_address, phone, address = self.lsWorkers.currentItem().text().split(' ')
# put back the items to their corresponding widgets
self.inName.setText(str(name))
self.inID.setText(str(id))
self.inPhone.setText(str(phone))
self.inAdd.setText(str(post_address))
self.inMail.setText(str(address))
# remove the item from the list
self.lsWorkers.takeItem(self.lsWorkers.currentRow())
#remove the row from the database:
conn = sqlite3.connect("worker_book.db")
c = conn.cursor()
try:
# delete the row where you find the same id
tmp = (id, '')
c.execute(f"DELETE FROM workers WHERE id in {tmp}")
except Exception as err:
print("removing from the DB not completed : ", err)
else:
print("removing completed")
conn.commit()
finally:
c.close()
conn.close()
else:
# if an item is modified and to be returned to the listbox
# Grab the Item from the widgets:
name = self.inName.text()
id = self.inID.text()
post_address = self.inAdd.text()
address = self.inMail.text()
phone = self.inPhone.text()
# add them to the workers list box:
self.modify_add_it(name, id, post_address, phone, address)
#save it in the database
try:
conn = sqlite3.connect("worker_book.db")
c = conn.cursor()
c.execute("INSERT INTO workers VALUES(?,?,?,?,?)",(name,id,post_address,str(phone),address))
except Exception as err:
print("Error while inserting Data",err)
else:
print("insert completed")
conn.commit()
finally:
# c.execute("SELECT * from workers")
# print(c.fetchall())
c.close()
conn.close()
# reset the current row to -1
self.lsWorkers.setCurrentRow(-1)
except Exception as err:
print("the action was not completed: ", err)
else:
print("Action successfully completed")
def add_it(self):
# Grab the Items from the text Boxes:
name = self.inName.text()
id= self.inID.text()
post_address=self.inAdd.text()
address= self.inMail.text()
phone=self.inPhone.text()
self.modify_add_it(name,id,post_address,str(phone),address)
#add the row to the database:
try:
conn = sqlite3.connect("worker_book.db")
c = conn.cursor()
c.execute("INSERT INTO workers VALUES(?,?,?,?,?)", (name, id, post_address, str(phone), address))
except Exception as err:
print("Error while inserting Data",err)
else:
print("insert completed")
conn.commit()
finally:
# c.execute("SELECT * from workers")
# print(c.fetchall())
c.close()
conn.close()
def retranslateUi(self, MainWindow):
_translate = QtCore.QCoreApplication.translate
MainWindow.setWindowTitle(_translate("MainWindow", "Workers"))
self.label.setText(_translate("MainWindow", "Name:"))
self.label_2.setText(_translate("MainWindow", "ID code:"))
self.label_3.setText(_translate("MainWindow", "Address:"))
self.label_4.setText(_translate("MainWindow", "Phone number:"))
self.label_5.setText(_translate("MainWindow", "Email:"))
self.inPhone.setText(_translate("MainWindow", "+36301234567"))
self.btnAdd.setText(_translate("MainWindow", "Add"))
self.btnEdit.setText(_translate("MainWindow", "Edit"))
self.btnModify.setText(_translate("MainWindow", "Modify"))
self.btnDelete.setText(_translate("MainWindow", "Delete"))
self.label_6.setText(_translate("MainWindow", "List of persons:"))
if __name__ == "__main__":
import sys
app = QtWidgets.QApplication(sys.argv)
MainWindow = QtWidgets.QMainWindow()
ui = Ui_MainWindow()
ui.setupUi(MainWindow)
#create a database
conn = sqlite3.connect("worker_book.db")
c=conn.cursor()
# create a table inside the database
c.execute("""CREATE TABLE workers(
Name text,
id text,
Postal text,
phone_num text,
Email text)""")
#saving and closing the database
conn.commit()
conn.close()
MainWindow.show()
ui.show_it()
sys.exit(app.exec_())
ui.show_it()