-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathetc.py
170 lines (143 loc) · 4.34 KB
/
etc.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
from tkinter import *
from openpyxl import load_workbook
# Limpia formulario
def limpiar():
pass
def collect_data():
return [fecha_entry.get(),
n_op_entry.get(),
codigo_entry.get(),
programado_entry.get(),
efectivo_entry.get(),
defectuosos_entry.get(),
hora_inicio_op_entry.get(),
hora_termino_op_entry.get(),
dotacion_entry.get(),
hhee_entry.get(),
paros_programados_entry.get(),
paros_por_fallas_entry.get(),
descripcion_pp_entry.get(),
descripcion_pnp_entry.get()]
# Guarda info en excel
def guardar():
data = collect_data()
file_name = "Registro Datos.xlsx"
wb = load_workbook(file_name)
ws = wb["BD"]
row = ws.max_row + 1
for column in range(2, 16):
ws.cell(row=row, column=column).value = data[column-2]
wb.template = False
wb.save(file_name)
# crear ventana (con barra de título)
ventana = Tk()
# Titulo
titulo = Label(ventana, text="Formulario")
titulo.pack()
# Fecha
fecha = Frame(ventana)
fecha.pack()
fecha_label = Label(fecha, text="Fecha")
fecha_label.pack(side=LEFT)
fecha_entry = Entry(fecha)
fecha_entry.pack()
# Número de operación
n_op = Frame(ventana)
n_op.pack()
n_op_label = Label(n_op, text="N° OP")
n_op_label.pack(side=LEFT)
n_op_entry = Entry(n_op)
n_op_entry.pack()
# Código
codigo = Frame(ventana)
codigo.pack()
codigo_label = Label(codigo, text="Código")
codigo_label.pack(side=LEFT)
codigo_entry = Entry(codigo)
codigo_entry.pack()
# Cantidad programada
programado = Frame(ventana)
programado.pack()
programado_label = Label(programado, text="Programado")
programado_label.pack(side=LEFT)
programado_entry = Entry(programado)
programado_entry.pack()
# Efectivo
efectivo = Frame(ventana)
efectivo.pack()
efectivo_label = Label(efectivo, text="Efectivo")
efectivo_label.pack(side=LEFT)
efectivo_entry = Entry(efectivo)
efectivo_entry.pack()
# Defectuosos
defectuosos = Frame(ventana)
defectuosos.pack()
defectuosos_label = Label(defectuosos, text="Defectuosos")
defectuosos_label.pack(side=LEFT)
defectuosos_entry = Entry(defectuosos)
defectuosos_entry.pack()
# Hora Inicio OP
hora_inicio_op = Frame(ventana)
hora_inicio_op.pack()
hora_inicio_op_label = Label(hora_inicio_op, text="Hora Inicio OP")
hora_inicio_op_label.pack(side=LEFT)
hora_inicio_op_entry = Entry(hora_inicio_op)
hora_inicio_op_entry.pack()
# Hora Término OP
hora_termino_op = Frame(ventana)
hora_termino_op.pack()
hora_termino_op_label = Label(hora_termino_op, text="Hora Término OP")
hora_termino_op_label.pack(side=LEFT)
hora_termino_op_entry = Entry(hora_termino_op)
hora_termino_op_entry.pack()
# Dotación
dotacion = Frame(ventana)
dotacion.pack()
dotacion_label = Label(dotacion, text="Dotación")
dotacion_label.pack(side=LEFT)
dotacion_entry = Entry(dotacion)
dotacion_entry.pack()
# HHEE
hhee = Frame(ventana)
hhee.pack()
hhee_label = Label(hhee, text="HHEE")
hhee_label.pack(side=LEFT)
hhee_entry = Entry(hhee)
hhee_entry.pack()
# Paros Programados
paros_programados = Frame(ventana)
paros_programados.pack()
paros_programados_label = Label(paros_programados, text="Paros Programados")
paros_programados_label.pack(side=LEFT)
paros_programados_entry = Entry(paros_programados)
paros_programados_entry.pack()
# Paros por Fallas
paros_por_fallas = Frame(ventana)
paros_por_fallas.pack()
paros_por_fallas_label = Label(paros_por_fallas, text="Paros por Fallas")
paros_por_fallas_label.pack(side=LEFT)
paros_por_fallas_entry = Entry(paros_por_fallas)
paros_por_fallas_entry.pack()
# Descripción PP
descripcion_pp = Frame(ventana)
descripcion_pp.pack()
descripcion_pp_label = Label(descripcion_pp, text="Descripción PP")
descripcion_pp_label.pack(side=LEFT)
descripcion_pp_entry = Entry(descripcion_pp)
descripcion_pp_entry.pack()
# Descripción PnP
descripcion_pnp = Frame(ventana)
descripcion_pnp.pack()
descripcion_pnp_label = Label(descripcion_pnp, text="Descripción PnP")
descripcion_pnp_label.pack(side=LEFT)
descripcion_pnp_entry = Entry(descripcion_pnp)
descripcion_pnp_entry.pack()
# marco para agrupar pregunta y respuesta
botones = Frame(ventana)
botones.pack()
limpiar = Button(botones, text="Limpiar", command=limpiar)
limpiar.pack(side=LEFT)
guardar = Button(botones, text="Guardar", command=guardar)
guardar.pack()
# mostrar ventana y esperar cierre (click en botón X)
ventana.mainloop()