-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpessoa.py
215 lines (167 loc) · 6.88 KB
/
pessoa.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
from tkinter.constants import BOTH, END, LEFT, RIGHT, Y
# from Testes.teste import popup_showinfo
import tkinter as tk
from tkinter import ttk, Label, Button, Entry, Menu, Toplevel, Scrollbar,Listbox,Frame
from functools import partial
import banco
import time
from tkinter.messagebox import showinfo
import pandas as pd
from pandastable import Table
"""
LISTA DE CORREÇÃO
FUNCAO BOTAO CONSULTA: CRIAR UMA NOVA COLUNA "CARGO" PARA OS USUÁRIOS (Pode ser integer ou sting)
"""
def CadastroPessoa():
Pessoa = tk.Tk()
style = ttk.Style(Pessoa)
style.theme_use('clam')
Pessoa.geometry('800x600')
Pessoa.title("Cadastro de Pessoas")
lblNomePessoa = ttk.Label(Pessoa, text='Nome:')
lblNomePessoa.grid(column=0, row=1)
txtNomePessoa = ttk.Entry(Pessoa, width=50)
txtNomePessoa.grid(column=1, row=1)
lblEmail = ttk.Label(Pessoa, text='E-mail:')
lblEmail.grid(column=0, row=3)
txtEmail = ttk.Entry(Pessoa, width=50)
txtEmail.grid(column=1, row=3)
lbldatanascimento = ttk.Label(Pessoa, text='Data de Nascimento:')
lbldatanascimento.grid(column=0, row=5)
txtdatanascimento = ttk.Entry(Pessoa, width=50)
txtdatanascimento.grid(column=1, row=5)
lblSetor = ttk.Label(Pessoa, text='Setor:')
lblSetor.grid(column=0, row=7)
txtSetor = ttk.Entry(Pessoa, width=50)
txtSetor.grid(column=1, row=7)
labelResult = ttk.Label(Pessoa)
labelResult.grid(row=10, column=1)
btnIncluir = ttk.Button(Pessoa, text='Incluir', command = partial(FuncaoButtonCadastro, txtNomePessoa, txtEmail, txtdatanascimento, txtSetor,labelResult))
btnIncluir.grid(column=1, row=9)
def ConsultaPessoa():
'''
A função deve conseguir consultar pessoas pelo nome, pelo email ou pelos 2.
* Caso não seja inserido nenhum informação e clicado no botão "Consultar" deve retornar a lista de todos.
** A consulta sem preenchumento dos parâmetros só deve ser permitido enquanto não haver muitos registros de pessoas no sistema
'''
Pessoa = tk.Tk()
Pessoa.geometry('800x600')
Pessoa.title("Consultando Pessoas")
lblNomePessoa = ttk.Label(Pessoa, text='Nome:')
lblNomePessoa.grid(column=0, row=1)
txtNomePessoa = ttk.Entry(Pessoa, width=50)
txtNomePessoa.grid(column=1, row=1)
lblEmail = ttk.Label(Pessoa, text='E-mail:')
lblEmail.grid(column=0, row=3)
txtEmail = ttk.Entry(Pessoa, width=50)
txtEmail.grid(column=1, row=3)
labelResult = ttk.Label(Pessoa)
labelResult.grid(row=7, column=1)
btnIncluir = ttk.Button(Pessoa, text='Consultar', command = partial(FuncaoButtonConsulta,
txtNomePessoa,
txtEmail, labelResult))
btnIncluir.grid(column=1, row=6)
def FuncaoButtonCadastro(nome, email,data, cod, labelResult):
if checkfill(nome,email,data,cod):
showinfo("Campo Vazio", "Os campos não foram preenchidos corretamente")
# labelResult.config(text="Nome ou Cargo ou Email não foi preenchido. Favor verificar")
if checkdatanascimento(data.get())!=1: showinfo("Erro 3","Data de nascimento inválida!")
if checkcodsetor(cod.get())!=1: showinfo("Erro 4", "Código do setor deve ser um inteiro")
if checknome(nome.get())!=1: showinfo("Erro 5","Nome não deve conter caractere especial ou número!")
else:
if mask(email.get())==1:
resultado = banco.salvarpessoa(nome.get(), email.get(), data.get(), cod.get(), labelResult)
if resultado == 1:
showinfo("Cadastro Sucesso", "Usuario cadastrado com sucesso")
# labelResult.config(text="Usuario cadastrado com sucesso")
elif resultado == 0:
showinfo("Erro 1", "Usuario já existe na tabela")
# labelResult.config(text="Usuário já existe na tabela")
else:
showinfo("Erro 2", "E-mail inválido")
# labelResult.config(text="Dominio email invalido")
return
def FuncaoButtonConsulta(nome, email, labelResult):
if checknomeconsulta(nome.get())!=1:
if mask(email.get())!=1:
showinfo ("Erro 2", "E-mail inválido")
showinfo("Erro 5","Nome não deve conter caractere especial ou número!")
return
if mask(email.get())==1:
pessoas = banco.ConsultaPessoa(nome.get(), email.get(), labelResult)
colunas = getColumnName()
# print(colunas)
# print(list(pessoas[0]))
listaPessoa = []
for i in range(0,len(pessoas)):
listaPessoa.append(list(pessoas[i]))
df = pd.DataFrame(listaPessoa, columns=colunas)
if pessoas != None:
root = tk.Tk()
style = ttk.Style(root)
style.theme_use('clam')
root.geometry('800x600')
root.title("Lista de Pessoas")
f = Frame(root)
f.pack(fill=BOTH,expand=1)
pt = Table(f, dataframe=df)
pt.show()
else:
showinfo("Window", "resultado não encontrado")
# labelResult.config(text= "resultado não encontrado")
else:
showinfo("Erro 2", "E-mail inválido")
# labelResult.config(text="Dominio email invalido")
return
## RETORNA COLUNAS DA TABELA (TODAS)
def getColumnName():
COLUMN_NAME = banco.QueryColumnPessoa()
colunas_tabela = []
if COLUMN_NAME != None:
for i in COLUMN_NAME:
colunas_tabela.append(i[3])
return colunas_tabela
else:
return []
def checkfill(nome, email, data, cod):
return nome.get()=='' or email.get()=='' or data.get()=='' or cod.get()==''
def mask(s):
lo = s.find('@')
return checkDomain(s, lo) == 1
def checkDomain(s, lo):
dominio_email = s[lo:]
return dominio_email == '@empresa.com.br'
def checkcodsetor(cod):
return cod.isdigit()
def checknomeconsulta(nome):
nome_splitado = nome.split(' ')
nome_completo = ''
if nome == '': return 1
for i in nome_splitado:
nome_completo = nome_completo + str.upper(list(i)[0])
nome_completo = nome_completo + str.lower(i[1:])
if str.isalpha(nome_completo):
return 1
else:
return 0
def checknome(nome):
nome_splitado = nome.split(' ')
nome_completo = ''
for i in nome_splitado:
nome_completo = nome_completo + str.upper(list(i)[0])
nome_completo = nome_completo + str.lower(i[1:])
if str.isalpha(nome_completo):
return 1
else:
return 0
def checkdatanascimento(data):
import datetime
date_string = data.replace('/','-')
date_format = '%d-%m-%Y'
try:
date_obj = datetime.datetime.strptime(date_string, date_format)
print(date_obj,'Deu certo')
except ValueError:
print("Incorrect data format, should be DD-MM-YYYY")
return 0
return 1