-
Notifications
You must be signed in to change notification settings - Fork 3
/
pizzeria.py
115 lines (98 loc) · 3.21 KB
/
pizzeria.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
# Desafio 6 Modulo 3
import funciones
import masa
import salsa
# import suma_ingredientes
import ingredientes as funcion_agregar_eliminar
ingredientes = ["Queso"]
orden = {
"masa": "Masa Tradicional",
"salsa": "Salsa de Tomate",
"ingredientes": ingredientes,
}
# lista_ingredientes = ['Tomate','Champiñones','Aceituna','Cebolla','Pollo','Jamon','Carne','Tocino','Queso']
# agregar=[]
print("************************")
print("Bienvenidos Pizzeria JAT")
print("************************")
print("Orden Básica:")
funciones.mostrar(orden, ingredientes)
while True:
opcion = input(
"""Seleccione
1. Cambiar tipo de Masa
2. Cambiar tipo de Salsa
3. Agregar Ingredientes
4. Eliminar Ingredientes
5. Consultar ingredientes de la pizza
6. Ordenar con los Ingredientes Actuales
0. Cancelar pedido.
> """
)
if opcion == "1":
eleccion = input(
"""Escoja el tipo de Masa:
T). Tradicional
D). Delgada
B). Bordes de Queso
> """
).upper()
orden = masa.tipo_masa(orden, eleccion)
aux = input("--->Presione ENTER para continuar")
elif opcion == "2":
eleccion = input(
"""Seleccione su tipo de Salsa:
T). Tomate
A). Alfredo
B). Barbecue
P). Pesto
> """
).upper()
orden = salsa.tipo_salsa(orden, eleccion)
elif opcion == "3":
# ingredientes.agregar_ingrediente()
# i=1
# for elemento in lista_ingredientes:
# print(f"{i}). {lista_ingredientes[i-1]}")
# i=i+
# 1). Tomate
# 2). Champiñones
# 3). Aceituna
# 4). Cebolla
# 5). Pollo
# 6). Jamón
# 7). Carne
# 8). Tocino
# 9). Queso
# > '''))
# ingredientes = agregar_ingredientes(ingredientes,lista_ingredientes,eleccion)
ingredientes = funcion_agregar_eliminar.agregar_ingrediente(ingredientes)
elif opcion == "4":
# eleccion = int(input('''Seleccione qué ingrediente quitar:
# 1). Tomate
# 2). Champiñones
# 3). Aceituna
# 4). Cebolla
# 5). Pollo
# 6). Jamón
# 7). Carne
# 8). Tocino
# 9). Queso
# > '''))
# orden = quitar_ingrediente(orden,eleccion)
ingredientes = funcion_agregar_eliminar.eliminar_ingrediente(ingredientes)
elif opcion == "5":
funciones.mostrar(orden, ingredientes)
aux = input("--->Presione ENTER para continuar")
elif opcion == "6":
tiempo = funciones.estimar_tiempo(ingredientes)
print(f"Su Pizza estará lista en {tiempo} minutos")
ordenar = input("Desea ordenar ahora S/N: ").upper()
if ordenar == "S":
print("Gracias por comprar en Pizza JAT")
print("Disfrute su Pizza!!!!!!")
exit()
aux = input("--->Presione Enter para continuar")
elif opcion == "0":
print("Su pedido ha sido cancelado. Gracias por Preferirnos Pizza JAT")
exit()