-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainConsultora.py
41 lines (39 loc) · 1.18 KB
/
mainConsultora.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
import os
import time
from viewConsultora import menuStatus, menuGestionTrajadores, menuGestionReportes, finalizo
from persistenciaTrabajadores import recuperarTrabajadores
try:
listaTrabajadores = recuperarTrabajadores()
except:
listaTrabajadores = []
# main
while True:
os.system("cls")
print("################################################")
print("# PROYECTO CONSULTORA #")
print("################################################")
print("")
print("\t[1] GESTION DE TRABAJADORES")
print("\t[2] REPORTES")
print("\t[3] CAMBIAR STATUS DE TRABAJADOR")
print("\t[0] SALIR")
print("")
while True:
try:
option = int(input(">>> INGRESE UNA OPCION: "))
break
except:
print("LA OPCION NO ES VALIDA")
if option == 1:
menuGestionTrajadores(listaTrabajadores)
elif option == 2:
menuGestionReportes(listaTrabajadores)
elif option == 3:
menuStatus(listaTrabajadores)
elif option == 0:
finalizo()
break
else:
print("")
print(">>> OPCION INVALIDA <<<")
time.sleep(1)