-
Notifications
You must be signed in to change notification settings - Fork 0
/
sistemaregistro.py
181 lines (175 loc) · 4.86 KB
/
sistemaregistro.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
import tkinter
import tkinter.dialog
import tkinter.messagebox
import psycopg2
janela = tkinter.Tk()
janela.title("Sistema de Registro de Vendas")
janela.geometry("1400x450")
janela.resizable(False,False)
connection = psycopg2.connect(
host='localhost',
database='revendedor',
user='postgres',
password='admin7841'
)
cursor = connection.cursor()
def cadastrar():
try:
cursor.execute(f"INSERT INTO PRODUTO (codigo,nome,quantidade,preço_unitario) VALUES ('{EntryCodigo.get()}','{EntryNome.get()}','{EntryQuantidade.get()}','{EntryPreço.get()}');"),
connection.commit()
except:
tkinter.messagebox.showerror(title="Erro de Cadastro",message="Ocorreu algum erro! Você colocou os dados corretos? Alguma caixa está vazia?")
def alterar():
try:
cursor.execute(f"UPDATE PRODUTO SET nome='{EntryNome.get()}',quantidade='{EntryQuantidade.get()}',preço_unitario='{EntryPreço.get()}' WHERE codigo='{EntryCodigo.get()}';"),
connection.commit()
except:
tkinter.messagebox.showerror(title="Erro de Alteração",message="Ocorreu algum erro! Você colocou os dados corretos? Alguma caixa está vazia?")
def remover():
try:
cursor.execute(f"DELETE FROM PRODUTO WHERE codigo='{EntryCodigo.get()}';"),
connection.commit()
except:
tkinter.messagebox.showerror(title="Erro de Remoção",message="Ocorreu algum erro! Você colocou os dados corretos? Alguma caixa está vazia?")
def consultar():
try:
ListboxLista.delete(0,tkinter.END)
cursor.execute(f"SELECT * FROM PRODUTO;")
connection.commit()
registros = cursor.fetchall()
for registro in registros:
codigo = registro[0]
nome = registro[1]
quantidade = registro[2]
preço = registro[3]
ListboxLista.insert(tkinter.END,registro[0])
ListboxLista.insert(tkinter.END,registro[1])
ListboxLista.insert(tkinter.END,registro[2])
ListboxLista.insert(tkinter.END,registro[3])
ListboxLista.insert(tkinter.END,"")
except:
tkinter.messagebox.showerror(title="Erro de Consulta",message="Ocorreu algum erro! Tente novamente e preste atenção com as ações...")
LabelTitulo = tkinter.Label(
janela,
width=25,
bg=("#FFF"),
relief=("solid"),
font=("Impact",32),
text=("Operações")
)
LabelCodigo = tkinter.Label(
janela,
font=("Impact",20),
text=("CÓDIGO")
)
LabelNome = tkinter.Label(
janela,
font=("Impact",20),
text=("NOME")
)
LabelQuantidade = tkinter.Label(
janela,
font=("Impact",20),
text=("QUANTIDADE")
)
LabelPreço = tkinter.Label(
janela,
font=("Impact",20),
text=("PREÇO ÚNICO")
)
EntryCodigo = tkinter.Entry(
janela,
width=20,
bg=("#FFF"),
relief=("solid"),
font=("Poppins",14)
)
EntryNome = tkinter.Entry(
janela,
width=20,
bg=("#FFF"),
relief=("solid"),
font=("Poppins",14)
)
EntryQuantidade = tkinter.Entry(
janela,
width=20,
bg=("#FFF"),
relief=("solid"),
font=("Poppins",14)
)
EntryPreço = tkinter.Entry(
janela,
width=20,
bg=("#FFF"),
relief=("solid"),
font=("Poppins",14)
)
ButtonCadastro = tkinter.Button(
janela,
width=11,
bg=("#000"),
fg=("#FFF"),
relief=("solid"),
cursor=("hand2"),
font=('Impact',15),
text=("CADASTRAR"),
command=lambda:cadastrar()
)
ButtonAlterar = tkinter.Button(
janela,
width=11,
bg=("#000"),
fg=("#FFF"),
relief=("solid"),
cursor=("hand2"),
font=('Impact',15),
text=("ALTERAR"),
command=lambda:alterar()
)
ButtonRemover = tkinter.Button(
janela,
width=11,
bg=("#000"),
fg=("#FFF"),
relief=("solid"),
cursor=("hand2"),
font=('Impact',15),
text=("REMOVER"),
command=lambda:remover()
)
ButtonConsultar = tkinter.Button(
janela,
width=11,
bg=("#000"),
fg=("#FFF"),
relief=("solid"),
cursor=("hand2"),
font=('Impact',15),
text=("CONSULTAR"),
command=lambda:consultar()
)
ListboxLista = tkinter.Listbox(
janela,
width=66,
height=12,
bg=("#FFF"),
relief=("solid"),
font=("Impact",15)
)
ListboxLista.insert(tkinter.END,"SISTEMA DE REGISTRO DE VENDAS - LISTA COMPLETA")
LabelTitulo.place(x=40,y=20)
LabelCodigo.place(x=40,y=100)
LabelNome.place(x=40,y=160)
LabelQuantidade.place(x=40,y=220)
LabelPreço.place(x=40,y=280)
EntryCodigo.place(x=210,y=105)
EntryNome.place(x=210,y=165)
EntryQuantidade.place(x=210,y=225)
EntryPreço.place(x=210,y=285)
ButtonCadastro.place(x=40,y=360)
ButtonAlterar.place(x=180,y=360)
ButtonRemover.place(x=320,y=360)
ButtonConsultar.place(x=1205,y=360)
ListboxLista.place(x=600,y=20)
janela.mainloop()