-
Notifications
You must be signed in to change notification settings - Fork 0
/
EXE.py
52 lines (38 loc) · 881 Bytes
/
EXE.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
from app import *
from venda import *
comandos = """
================ Comandos ================
exit : Sair
login : Login do sistema
creditos : Acessa tela creditos
estoque : acessa estoque
config : Acessar configurações
app : Acessa App
================ -------- ================
"""
tentativa = 0
while True:
print(comandos)
ent = "estoque"
if ent == None:
ent = input("Digite o módulo a EXECUTAR ==> ")
else:
if tentativa > 0:
break
tentativa+=1
if ent == "exit":
break
elif ent == "login":
Login().execute()
elif ent == "creditos":
Tela_Creditos().execute()
elif ent == "estoque":
Cadastro_Produtos().execute()
elif ent == "config":
from config import *
App_Config().execute()
elif ent == "app":
App().execute()
else:
print("Comando não reconhecido!")
continue