-
Notifications
You must be signed in to change notification settings - Fork 1
/
insertarEnfermedades.py
46 lines (36 loc) · 1.82 KB
/
insertarEnfermedades.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
from tkinter import *
import connection as con
import customtkinter as ct
from errorMessage import ErrorMessage
class insertarEnfermedades:
def __init__(self, parent):
self.parent = parent
self.win = Toplevel(parent)
self.win.title("Ingresar enfermedad nueva")
etiTitle = ct.CTkLabel(self.win, text="Ingresar enfermedad nueva", font=("Arial", 20, "bold"))
# id de transferencia es serial.
etiNombreEnfermedad = ct.CTkLabel(self.win, text="Nombre de la enfermedad")
inputNombreEnfermedad = ct.CTkEntry(self.win, width=200)
etiSintomas = ct.CTkLabel(self.win, text="Sintomas")
inputSintomas = ct.CTkEntry(self.win, width=200)
buttonSignup = ct.CTkButton(self.win, text="Registrar", command= lambda: self.insert_enfermedades(inputNombreEnfermedad, inputSintomas ), width=100)
buttonClose = ct.CTkButton(self.win, text="Close", command= lambda: self.close(), width=100)
etiTitle.pack(pady=5)
etiNombreEnfermedad.pack(pady=5)
inputNombreEnfermedad.pack(pady=5)
etiSintomas.pack(pady=5)
inputSintomas.pack(pady=5)
buttonSignup.pack(pady=5)
buttonClose.pack(pady=5)
self.win.geometry("600x1000")
def insert_enfermedades(self, inputNombreEnfermedad, inputSintomas):
query = r"""insert into enfermedades (nombre_enf, sintomas) values('""" + inputNombreEnfermedad.get() + r"""', '""" + inputSintomas.get() + r"""');"""
results = con.connect(query)
if (results == ""):
mensaje = "Se ha registrado correctamente"
ErrorMessage(self.win, mensaje=mensaje)
else:
mensaje = "Ha ocurrido un error al registrar"
ErrorMessage(self.win, mensaje=mensaje)
def close(self):
self.win.destroy()