-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetting.py
More file actions
451 lines (430 loc) · 20.5 KB
/
setting.py
File metadata and controls
451 lines (430 loc) · 20.5 KB
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
"Developer: Krishna Aggarwal & Dhruv Kalra; Class-section: 12th-A; RollNo. : 16 & 10"
"Submodule:- Setting (completed)"
def run(mycursor, mydb):
import main_menu
from time import sleep
import setting_module
from printing_tool import formatting
import csv
cont = 'y'
while cont == 'y':
main_menu.setting_menu()
print("Enter your choice(1-6): ")
choice = input('➥ ')
# ---/Account/--choice-->
if choice == '1':
print('\nAccount present-->')
mycursor.execute('SELECT * FROM ACCOUNT;')
data = mycursor.fetchall()
L = []
rows = []
for i in data:
for j in i:
L.append(j)
rows.append(L)
L = []
if rows == []:
print('No account currently.')
else:
column = []
query = 'DESC ACCOUNT;'
mycursor.execute(query)
data = mycursor.fetchall()
for i in data:
for j in i:
column.append(j)
break
formatting(column, rows)
inner_loop = 'y'
while inner_loop == 'y':
print('What you want?')
print('1.Update status')
print('2.Add account')
print('3.Remove account')
print('4.Back')
print('Enter your choice(1-4):')
choice = input('➥ ')
# CODE TO UPDATE STATUS
if choice == '1':
try:
value = input('Enter ACCOUNT ID:')
value=int(value);value=str(value)
mycursor.execute(f'SELECT * FROM ACCOUNT WHERE ID={value};')
data =mycursor.fetchall()
if data==[]:
print(f'::No ACCOUNT with ID {value}::')
else:
mycursor.execute(f'UPDATE ACCOUNT SET STATUS=\'ACTIVE\' WHERE ID={value};');mydb.commit()
mycursor.execute(f'UPDATE ACCOUNT SET STATUS=\'DEACTIVE\' WHERE ID<>{value};');mydb.commit()
print('STATUS UPDATED.')
except:
mydb.rollback()
print('::Invalid Value Input Detected::')
key = input('Press ENTER key to contniue:')
print('')
# CODE TO ADD ACCOUNT
elif choice == '2':
try:
setting_module.create_account(mydb,mycursor)
inner_loop='n'
except:
print('::Something Went Wrong::Pls retry::')
key = input('Press ENTER key to contniue:')
print('')
# CODE TO REMOVE ACCOUNT
elif choice == '3':
try:
condition = input('Enter the ID:')
condition = int(condition);condition = str(condition)
mycursor.execute(f'SELECT STATUS FROM ACCOUNT WHERE ID={condition};')
data = mycursor.fetchall()
if data==[]:
print(f'::No ACCOUNT with ID {condition}::')
else:
for i in data:
for j in i:
check_status=j
query = f'DELETE FROM ACCOUNT WHERE ID={condition};'
mycursor.execute(query)
mydb.commit()
print(f'**ACCOUNT WITH ID {condition} DELETED SUCCESSFULLY**')
if check_status.upper()=='ACTIVE':
mycursor.execute(f'SELECT * FROM ACCOUNT;')
data = mycursor.fetchall()
if data==[]:
setting_module.create_account(mydb,mycursor)
else:
for i in data:
for j in i:
account_id=j
break
break
mycursor.execute(f'UPDATE ACCOUNT SET STATUS=\'ACTIVE\' WHERE ID={account_id};');mydb.commit()
print('STATUS UPDATED.')
except:
print('::Invalid Value Input Detected::')
key = input('Press ENTER key to contniue:')
print('')
# CODE TO GO BACK
elif choice == '4':
inner_loop = 'n'
print('Going back...');sleep(1)
break
else:
try:
choice=int(choice)
print('::Invalid option::')
except:
print('::Invalid Value Input Detected::')
key = input('Press ENTER key to contniue:')
print('')
# ---/BackUp/--choice-->
elif choice == '2':
inner_loop = 'y'
while inner_loop == 'y':
print('Which you want?')
print('1.Employee')
print('2.Stock House')
print('3.Billing')
print('4.Back')
print("Enter your choice(1-4): ")
choice = input('➥ ')
# CODE TO DISPLAY EMPLOYEE DETAILS BACKUP DATA
if choice == '1':
inner_choice='y'
while inner_choice.upper()=='Y':
row=[]
with open('Employee_details_copy.csv','r') as file:
read=csv.reader(file)
if setting_module.isNotEmpty():
file.seek(0)
field=next(read)
value=input('Enter the DATE(YYYY-MM-DD): ')
for i in read:
if i!=[]:
if i[0]==value:
row.append(i)
if row!=[]:
formatting(field,row)
else:
print(f'::No Backup found on DATE {value}::')
while True:
inner_choice=input("Do you want to search more data(y/n)? ")
if inner_choice.upper()=='Y':
inner_choice='y'
break
elif inner_choice.upper()=='N':
inner_choice='n';inner_loop='n'
break
else:
print('::Invalid Option::')
else:
print('NO BACKUP')
inner_choice='n';inner_loop='n'
key = input('Press ENTER key to contniue:')
print('')
# CODE TO DISPLAY STOCK HOUSE DETAILS BACKUP DATA
elif choice == '2':
try:
inner_choice='y'
while inner_choice.upper()=='Y':
query = f'SELECT * FROM STOCK_HOUSE_COPY;'
mycursor.execute(query)
data = mycursor.fetchall()
if data==[]:
print('::NO BACKUP::')
else:
value = input('Enter the date (YYYY-MM-DD): ')
search_date=value
value = '\''+value+'\''
query = f'SELECT * FROM STOCK_HOUSE_COPY WHERE CDATE={value};'
mycursor.execute(query)
data = mycursor.fetchall()
L = []
row = []
for i in data:
for j in i:
L.append(j)
row.append(L)
L = []
if row == []:
print(f'::No Backup found on {value}::')
else:
row=[];date=[];new_L=[]
date.append(search_date)
for i in data:
for j in i:
L.append(j)
L=L[1:]
new_L=date+L
row.append(new_L)
L = []
column = []
query = 'DESC STOCK_HOUSE_COPY;'
mycursor.execute(query)
data = mycursor.fetchall()
for i in data:
for j in i:
column.append(j)
break
formatting(column, row)
while True:
#continuation
inner_choice=input("Do you want to search more data(y/n)? ")
if inner_choice.upper()=='Y':
inner_choice='y'
break
elif inner_choice.upper()=='N':
inner_choice='n';inner_loop='n'
break
else:
print('::Invalid Option::')
except:
print('::Invalid input detected::')
key = input('Press ENTER key to contniue:')
print('')
# CODE TO DISPLAY BILLING DETAILS BACKUP DATA
elif choice == '3':
try:
inner_choice='y'
while inner_choice.upper()=='Y':
query = f'SELECT * FROM BILLING_DETAILS_COPY;'
mycursor.execute(query)
data = mycursor.fetchall()
if data==[]:
print('::NO BACKUP::')
else:
value = input('Enter the Date(yyyy/mm/dd):')
search_date=value
value = '\''+value+'\''
query = f'SELECT * FROM BILLING_DETAILS_COPY WHERE CDATE={value};'
mycursor.execute(query)
data = mycursor.fetchall()
L = []
row = []
for i in data:
for j in i:
L.append(j)
row.append(L)
L = []
if row == []:
print(f'::No Backup found on {value}::')
else:
row=[];date=[]
date.append(search_date)
for i in data:
for j in i:
L.append(j)
L=L[1:]
new_L=date+L
row.append(new_L)
L = []
column = []
query = 'DESC BILLING_DETAILS_COPY;'
mycursor.execute(query)
data = mycursor.fetchall()
for i in data:
for j in i:
column.append(j)
break
formatting(column, row)
while True:
#continuation
inner_choice=input("Do you want to search more data(y/n)? ")
if inner_choice.upper()=='Y':
inner_choice='y'
break
elif inner_choice.upper()=='N':
inner_choice='n';inner_loop='n'
break
else:
print('::Invalid Option::')
except:
print('::Invalid input detected::Pls check::')
key = input('Press ENTER key to contniue:')
print('')
# BACK
elif choice == '4':
inner_loop = 'n'
print('Going back.....')
else:
print('::Invalid option::')
key = input('Press ENTER key to contniue:')
print('')
# ---/Bin/--choice-->
elif choice == '3':
inner_loop = 'y'
while inner_loop == 'y':
print('Which Bin you want to see?')
print('1.Employee')
print('2.Stock House')
print('3.Billing')
print('4.Back')
print("Enter your choice(1-4): ")
choice = input('➥ ')
# CODE TO DISPLAY EMPLOYEE DETAILS BIN DATA
if choice == '1':
row=[]
c='_bin'
with open('Employee_details_bin.csv','r') as file:
read=csv.reader(file)
if setting_module.isNotEmpty(c):
file.seek(0)
field=next(read)
for i in read:
if i!=[]:
row.append(i)
formatting(field,row)
else:
print('::NO DATA FOUND IN BIN::')
key = input('Press ENTER key to contniue:')
print('')
# CODE TO DISPLAY STOCK HOUSE DETAILS BACKUP DATA
elif choice == '2':
mycursor.execute('SELECT * FROM STOCK_HOUSE_BIN;')
data = mycursor.fetchall()
L = []
rows = []
for i in data:
for j in i:
L.append(j)
rows.append(L)
L = []
if rows == []:
print('::NO DATA FOUND IN BIN::')
else:
column = []
query = 'DESC STOCK_HOUSE_BIN;'
mycursor.execute(query)
data = mycursor.fetchall()
for i in data:
for j in i:
column.append(j)
break
formatting(column, rows)
key = input('Press ENTER key to contniue:')
print('')
# CODE TO DISPLAY BILLING DETAILS BACKUP DATA
elif choice == '3':
mycursor.execute('SELECT * FROM BILLING_DETAILS_BIN;')
data = mycursor.fetchall()
L = []
rows = []
for i in data:
for j in i:
L.append(j)
rows.append(L)
L = []
if rows == []:
print('::NO DATA FOUND IN BIN::')
else:
column = []
query = 'DESC BILLING_DETAILS_BIN;'
mycursor.execute(query)
data = mycursor.fetchall()
for i in data:
for j in i:
column.append(j)
break
formatting(column, rows)
key = input('Press ENTER key to contniue:')
print('')
# BACK
elif choice == '4':
inner_loop = 'n'
cont='y'
print('Going back....')
else:
print('::Invalid option::')
key = input('Press ENTER key to contniue:')
print('')
# ---/AboutUs/--choice-->
elif choice == '4':
with open('aboutUs.txt','r') as about:
about.seek(0)
r=about.read()
print(r)
print()
key = input('Press ENTER key to contniue:')
print('')
#--/Factory Reset/--choice-->
elif choice == '5':
confirm=input('Confirm to reset(y/n):')
if confirm.upper()=='Y':
print('Ok! Resetting...')
file_data=['ID','NAME','WORKING HOURS','SALARY','INFORMATION']#official
file_data2=['DDATE','ID','NAME','WORKING HOURS','SALARY','INFORMATION']#bin
file_data3=['CDATE','ID','NAME','WORKING HOURS','SALARY','INFORMATION']#copy
mycursor.execute('TRUNCATE TABLE billing_details;');mydb.commit()
mycursor.execute('TRUNCATE TABLE billing_details_copy;');mydb.commit()
mycursor.execute('TRUNCATE TABLE billing_details_bin;');mydb.commit()
mycursor.execute('TRUNCATE TABLE stock_house;');mydb.commit()
mycursor.execute('TRUNCATE TABLE stock_house_copy;');mydb.commit()
mycursor.execute('TRUNCATE TABLE stock_house_bin;');mydb.commit()
with open('Employee_details.csv','w') as file1:
write=csv.writer(file1)
write.writerow(file_data)
with open('Employee_details_copy.csv','w') as file1:
write=csv.writer(file1)
write.writerow(file_data3)
with open('Employee_details_bin.csv','w') as file1:
write=csv.writer(file1)
write.writerow(file_data2)
print('Software reset completed....')
sleep(1)
else:
print('Aborting process....')
sleep(1)
# ---/Exit/--choice-->
elif choice == '6':
print('Going back....')
sleep(2)
cont = 'n'
else:
try:
choice=int(choice)
print('::Invalid option::')
except:
print('::Invalid Value Input Detected::')
key = input('Press ENTER key to contniue:')
print('')