-
Notifications
You must be signed in to change notification settings - Fork 0
/
configurar.py
382 lines (320 loc) · 12.7 KB
/
configurar.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
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
from tkinter import Label
from tkinter import Entry
from tkinter import Frame
from tkinter import IntVar
from tkinter import Button
from tkinter import Toplevel
from tkinter import StringVar
from tkinter import BooleanVar
from tkinter import LabelFrame
from tkinter import messagebox
from tkinter import filedialog
from tkinter import Radiobutton
from tkinter import Checkbutton
from tkcalendar import Calendar
from datetime import datetime
from base_exp import importacion
from base_exp import exportacion
from decri import encriptar
from os import path
ruta1 = path.abspath(__file__)
ruta2 = path.split(ruta1)
archivo = ruta2[0] + "/config"
textedu = """Por correccion de errores, dudas o sugerencias no duden en
contactarme al mail: due204@gmail.com"""
def configuracion():
def lectura():
# Lectura del archivo de configuracion
a = open(archivo, "r")
dato = a.readlines()
a.close()
return dato
def menu_uno():
def guardar_datos():
# Guardamos los datos en el archico de configuracion
a = open(archivo, "r").readlines()
a[0] = "ruta_boleta:" + ruta.get() + "\n"
a[1] = "nombre_1:" + nombre1.get() + "\n"
a[2] = "nombre_2:" + nombre2.get() + "\n"
a[3] = "direccion_1:" + direccion1.get() + "\n"
a[4] = "direccion_2:" + direccion2.get() + "\n"
a[5] = "celular_1:" + telefono.get() + "\n"
a[6] = "navegadoor_1:" + navegador.get() + "\n"
b = open(archivo, "w")
b.writelines(a)
b.close()
toor.quit()
toor.destroy()
def guradar_ruta():
# Seleccionamos el directorio
directorio = filedialog.askdirectory()
if directorio:
print(directorio)
# Seteamos el directiorio
ruta.set(directorio)
# Variables
ruta = StringVar()
nombre1 = StringVar()
nombre2 = StringVar()
direccion1 = StringVar()
direccion2 = StringVar()
telefono = StringVar()
navegador = StringVar()
# Seateamos las variables
atur = lectura()
atur0 = atur[0].lstrip("ruta_boleta:").rstrip("\n")
atur1 = atur[1].lstrip("nombre_1:").rstrip("\n")
atur2 = atur[2].lstrip("nombre_2:").rstrip("\n")
atur3 = atur[3].lstrip("direccion_1:").rstrip("\n")
atur4 = atur[4].lstrip("direccion_2:").rstrip("\n")
atur5 = atur[5].lstrip("celular_1:").rstrip("\n")
atur6 = atur[6].lstrip("navegadorr_1:").rstrip("\n")
ruta.set(atur0)
nombre1.set(atur1)
nombre2.set(atur2)
direccion1.set(atur3)
direccion2.set(atur4)
telefono.set(atur5)
navegador.set(atur6)
texto_a = Label(toor, text="Configurar la ruta de las boletas en pdf")
texto_a.place(x=50, y=0)
entrada0 = Entry(toor, width=37, textvariable=ruta)
entrada0.place(x=10, y=40)
boton0 = Button(toor, text="Seleccionar", command=guradar_ruta)
boton0.bind("<Return>", guradar_ruta) # Esto es para el enter
boton0.place(x=315, y=37)
texto_b = Label(
toor,
text="Configuracion de la boleta generada en pdf",
)
texto_b.place(x=50, y=80)
texto1 = Label(toor, text="Nombre 1 de la orden: ")
texto1.place(x=10, y=120)
entrada1 = Entry(toor, width=30, textvariable=nombre1)
entrada1.place(x=165, y=120)
texto2 = Label(toor, text="Nombre 2 de la orden: ")
texto2.place(x=10, y=160)
entrada2 = Entry(toor, width=30, textvariable=nombre2)
entrada2.place(x=165, y=160)
texto3 = Label(toor, text="Direccion 1 de la orden")
texto3.place(x=10, y=200)
entrada3 = Entry(toor, width=30, textvariable=direccion1)
entrada3.place(x=165, y=200)
texto4 = Label(toor, text="Direccion 2 de la orden")
texto4.place(x=10, y=240)
entrada4 = Entry(toor, width=30, textvariable=direccion2)
entrada4.place(x=165, y=240)
texto5 = Label(toor, text="Numero de telefono")
texto5.place(x=10, y=280)
entrada5 = Entry(toor, width=30, textvariable=telefono)
entrada5.place(x=165, y=280)
pdfs = Checkbutton(
toor,
text="Abrir pdfs en el navegador",
variable=navegador,
)
pdfs.place(x=0, y=330)
boton1 = Button(toor, text="Guardar", command=guardar_datos)
boton1.bind("<Return>", guardar_datos) # Esto es para el enter
boton1.place(x=330, y=310)
boton3 = Button(toor, text="Backup", command=menu_dos)
boton3.bind("<Return>", menu_dos) # Esto es para el enter
boton3.place(x=330, y=348)
texto7 = Label(toor, text=textedu)
texto7.place(x=10, y=410)
toor.mainloop()
def menu_dos():
frame1 = Frame(toor)
frame1.config(width=425, height=500)
label3 = Label(frame1, text="Backup...")
label3.place(x=150, y=220)
for i in range(-300, 1):
frame1.place(x=i, y=0)
frame1.update()
label3.destroy()
def guardar_dat(*argus):
# Guardamos los datos en el archivo de configuracion
a = open(archivo, "r").readlines()
if fecha.get() == 3:
fechaa = cal.get_date().split("/")
a[7] = "dias:" + str(fechaa[0]) + "\n"
else:
a[7] = "dias:" + str(dias.get()) + "\n"
a[8] = "fecha:" + str(fecha.get()) + "\n"
a[9] = "guardar:" + str(chequeo1.get()) + "\n"
a[10] = "enviar:" + str(chequeo2.get()) + "\n"
a[11] = "usuario:" + str(usuario.get()) + "\n"
if contras.get():
a[12] = "passwd:" + encriptar(str(contras.get())) + "\n"
out = open(archivo, "w")
out.writelines(a)
out.close()
atur12 = atur[12].lstrip("passwd:").rstrip("\n")
if chequeo2.get():
# Enviar el mail
if usuario.get() and contras.get():
if "@gmail.com" in usuario.get():
pasar_menu()
else:
messagebox.showinfo(
message=f"{usuario.get()}\nNo es correo de Gmail",
title="Correo invalido",
)
elif usuario.get() and atur12:
if "@gmail.com" in usuario.get():
pasar_menu()
else:
messagebox.showinfo(
message=f"{usuario.get()}\nNo es correo de Gmail",
title="Correo invalido",
)
else:
messagebox.showinfo(
message="Usuario y/o contraseña de Gmail incorrectas",
title="Error",
)
else:
pasar_menu()
def pasar_menu():
frame1 = Frame(toor)
frame1.config(width=425, height=500)
label3 = Label(frame1, text="Guardar...")
label3.place(x=150, y=220)
for i in range(-300, 1):
frame1.place(x=i, y=0)
frame1.update()
label3.destroy()
menu_uno()
# Fechas para el calendario
now = datetime.now()
año = int(now.strftime("%Y"))
mes = int(now.strftime("%m"))
dia = int(now.strftime("%d"))
# Leemos las variables desde el archivo
atur = lectura()
atur7 = atur[7].lstrip("dias:").rstrip("\n")
atur8 = atur[8].lstrip("fecha:").rstrip("\n")
atur9 = atur[9].lstrip("gurdar:").rstrip("\n")
atur10 = atur[10].lstrip("enviar:").rstrip("\n")
atur11 = atur[11].lstrip("usuario:").rstrip("\n")
# atur12 = atur[12].lstrip("passwd:").rstrip("\n")
# ############### Frames ###############3
# #######################################
frame_cal = LabelFrame(toor, text="Calendario", padx=50)
frame_cal.place(x=40, y=0)
frame_cuanto = LabelFrame(toor, text="¿Cuantas veces?")
frame_cuanto.place(x=10, y=230)
frame_dias = LabelFrame(toor, text="¿Que dias?", pady=11)
frame_dias.place(x=190, y=230)
frame_check = Frame(toor, padx=50)
frame_check.place(x=10, y=330)
frame_mail = Frame(toor)
frame_mail.place(x=10, y=360)
frame_db = LabelFrame(toor, text="Base de datos", padx=5)
frame_db.place(x=10, y=440)
# ############### Widgets ###############
# #######################################
# Calendario
cal = Calendar(
frame_cal,
selectmode="day",
year=año,
month=mes,
day=dia,
)
cal.pack(pady=20)
# cantidad de veces en que se va a hacer la copia
fecha = IntVar()
fecha.set(atur8)
fec1 = Radiobutton(
frame_cuanto,
text="Una vez al dia",
variable=fecha,
value=1,
)
fec1.pack(anchor="w")
fec2 = Radiobutton(
frame_cuanto,
text="Una vez a la semana",
variable=fecha,
value=2,
)
fec2.pack(anchor="w")
fec3 = Radiobutton(
frame_cuanto,
text="Una vez al mes",
variable=fecha,
value=3,
)
fec3.pack(anchor="w")
# Dias en que se va a hacer la copia
dias = IntVar()
dias.set(atur7)
dia1 = Radiobutton(frame_dias, text="Lun", value=0, variable=dias)
dia1.grid(row=0, column=0)
dia2 = Radiobutton(frame_dias, text="Mar", value=1, variable=dias)
dia2.grid(row=0, column=1)
dia3 = Radiobutton(frame_dias, text="Mie", value=2, variable=dias)
dia3.grid(row=0, column=2)
dia4 = Radiobutton(frame_dias, text="Jue", value=3, variable=dias)
dia4.grid(row=0, column=3)
dia5 = Radiobutton(frame_dias, text="Vie", value=4, variable=dias)
dia5.grid(row=1, column=0)
dia6 = Radiobutton(frame_dias, text="Sab", value=5, variable=dias)
dia6.grid(row=1, column=1)
dia7 = Radiobutton(frame_dias, text="Dom", value=6, variable=dias)
dia7.grid(row=1, column=2)
# Opciones de guardado y envio
chequeo1 = BooleanVar()
chequeo2 = BooleanVar()
chequeo1.set(atur9)
chequeo2.set(atur10)
check1 = Checkbutton(
frame_check,
text="Guardar copia",
variable=chequeo1,
)
check1.grid(row=0, column=0)
check2 = Checkbutton(
frame_check,
text="Enviar copia al mail",
variable=chequeo2,
)
check2.grid(row=0, column=1)
# User y pass del mail
usuario = StringVar()
contras = StringVar()
usuario.set(atur11)
# contras.set(atur12)
label_mail = Label(
frame_mail,
text="Utilice un correo de Gmail previamente configurado",
)
label_mail.grid(row=0, column=0, sticky="w", columnspan=4)
label_user = Label(frame_mail, text="Usuario")
label_user.grid(row=1, column=0, sticky="w")
entri_user = Entry(frame_mail, textvariable=usuario)
entri_user.grid(row=1, column=1, sticky="w")
label_cont = Label(frame_mail, text="contraseña")
label_cont.grid(row=2, column=0, sticky="w")
entri_pass = Entry(frame_mail, show="*", textvariable=contras)
entri_pass.grid(row=2, column=1, pady=3, sticky="w")
# Importar y exportar copia de seguridad
boton_exp = Button(frame_db, text="Exportar", command=exportacion)
boton_exp.bind("<Return>", exportacion) # Esto es para el enter
boton_exp.pack(side="left")
boton_imp = Button(frame_db, text="Importar", command=importacion)
boton_imp.bind("<Return>", importacion) # Esto es para el enter
boton_imp.pack(side="right")
boton_guar = Button(toor, text="Volver", command=pasar_menu)
boton_guar.bind("<Return>", pasar_menu) # Esto es para el enter
boton_guar.place(x=330, y=420)
boton_vole = Button(toor, text="Guardar", command=guardar_dat)
boton_vole.bind("<Return>", guardar_dat) # Esto es para el enter
boton_vole.place(x=330, y=460)
toor.mainloop()
toor = Toplevel() # Creamos una ventana
toor.title("Configurar Titita") # Titulo de la ventana
toor.geometry("425x500") # Tamaño de la ventana
toor.resizable(False, False) # Evitamos modificar la ventana
menu_uno()