-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
430 lines (317 loc) · 14.5 KB
/
main.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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
from tkinter import *
from tkinter import Tk, ttk
from tkinter import messagebox
# importando Pillow
from PIL import Image, ImageTk
# importando barra de progresso do Tkinter
from tkinter.ttk import Progressbar
# importando matplotlib
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
import matplotlib.pyplot as plt
from matplotlib.figure import Figure
# tkcalendar
from tkcalendar import Calendar, DateEntry
from datetime import date
# importando funcoes da view
from front import bar_valores,pie_valores, inserir_categoria, ver_categoria, inserir_receita, inserir_gastos,tabela ,deletar_gastos ,deletar_receitas
# cores
co0 = "#2e2d2b" # Preta
co1 = "#feffff" # branca
co2 = "#4fa882" # verde
co3 = "#38576b" # valor
co4 = "#403d3d" # letra
co5 = "#e06636"
co6 = "#038cfc"
co7 = "#3fbfb9"
co8 = "#263238"
co9 = "#e9edf5"
colors = ['#5588bb', '#66bbbb','#99bb55', '#ee9944', '#444466', '#bb5555']
# criando janela
janela = Tk()
janela.title()
janela.geometry('900x650')
janela.configure(background=co9)
janela.resizable(width=FALSE, height=FALSE)
style= ttk.Style(janela)
style.theme_use("clam")
# criando frames para divisao da tela
frameCima = Frame(janela, width=1043, height=50, bg=co1, relief="flat")
frameCima.grid(row=0,column=0)
frameMeio = Frame(janela, width=1043, height=361, bg=co1, pady=20, relief="raised")
frameMeio.grid(row=1,column=0, pady=1,padx=0, sticky=NSEW)
frameBaixo = Frame(janela, width=1043, height=300, bg=co1,relief="flat")
frameBaixo.grid(row=2,column=0, pady=0,padx=10, sticky=NSEW)
# Trabalhando no frame Cima
# acessando a imagem
app_img = Image.open('Log.png')
app_img = app_img.resize((45,45))
app_img = ImageTk.PhotoImage(app_img)
app_logo = Label(frameCima, image=app_img, text=" Orçamento pessoal", width=900, compound=LEFT, padx=5, relief=RAISED, anchor=NW, font=('Verdana 20 bold'), bg=co1, fg=co4,)
app_logo.place(x=0, y=0)
app_logo.image = app_img
# definindo tree como global
global tree
# funcao inserir categoria
def inserir_categoria_b():
nome = e_categoria.get
lista_inserir = [nome]
for i in lista_inserir:
if i=='':
messagebox.showerror('Erro', 'Preencha todos os campos')
return
# passando para a funcao inserir gastos presente na view
inserir_categoria(lista_inserir())
messagebox.showinfo('Sucesso', 'Os dados foram inseridos com sucesso')
e_categoria.delete(0,'end')
# Pegando os valores da categoria
categorias_funcao = ver_categoria()
categoria = []
for i in categorias_funcao:
categoria.append(i[1])
# atualizando a lista de categorias
combo_categoria_despesas['values'] = (categoria)
# funcao inserir Despesas
def inserir_receitas_b():
nome = combo_categoria_despesas.get()
data = e_cal_despesas.get()
quantia = e_valor_despesas.get()
lista_inserir = [nome, data, quantia]
for i in lista_inserir:
if i=='':
messagebox.showerror('Erro', 'Preencha todos os campos')
return
# chamando a funcao inserir Despesas presente na view
inserir_gastos(lista_inserir())
messagebox.showinfo('Sucesso', 'Os dados foram inseridos com sucesso')
combo_categoria_despesas.delete(0,'end')
e_cal_despesas.delete(0,'end')
e_valor_despesas.delete(0,'end')
# atualizando dados
mostrar_renda()
percentagem()
grafico_bar()
resumo()
grafico_pie()
# funcao deletar
def deletar_dados():
try:
treev_dados = tree.focus()
treev_dicionario = tree.item(treev_dados)
treev_lista = treev_dicionario['values']
valor = treev_lista[0]
nome = treev_lista[1]
if nome =='Receita':
deletar_receitas([valor])
messagebox.showinfo('Sucesso', 'Os dados foram deletados com sucesso')
# atualizando dados
mostrar_renda()
percentagem()
grafico_bar()
resumo()
grafico_pie()
else:
deletar_gastos([valor])
messagebox.showinfo('Sucesso', 'Os dados foram deletados com sucesso')
# atualizando dados
mostrar_renda()
percentagem()
grafico_bar()
resumo()
grafico_pie()
except IndexError:
messagebox.showerror('Error', 'Selecione um dos dados na tabela')
# percentagem ---------------
def percentagem():
l_name = Label(frameMeio, text="Porcentagem da Receita gasta", height=1,anchor=NW, font=('Verdana 12'), bg=co1, fg=co4)
l_name.place(x=7, y=5)
style = ttk.Style()
style.theme_use('default')
style.configure("black.Horizontal.TProgressbar", background= '#daed6b')
style.configure("TProgressbar", thickness=25)
bar = Progressbar(frameMeio, length=180,style='black.Horizontal.TProgressbar')
bar.place(x=10, y=35)
bar['value'] = 65
valor = 65
l_percentagem = Label(frameMeio, text="{:,.2f}%".format(valor), anchor=NW, font=('Verdana 12'), bg=co1, fg=co4)
l_percentagem.place(x=200, y=35)
# funcao para grafico bars -----------------
def grafico_bar():
lista_categorias = ['Renda', 'Despesas', 'Saldo']
lista_valores = bar_valores()
# faça figura e atribua objetos de eixo
figura = plt.Figure(figsize=(4, 3.45), dpi=60)
ax = figura.add_subplot(111)
# ax.autoscale(enable=True, axis='both', tight=None)
ax.bar(lista_categorias, lista_valores, color=colors, width=0.9)
# create a list to collect the plt.patches data
c = 0
# set individual bar lables using above list
for i in ax.patches:
# get_x pulls left or right; get_height pushes up or down
ax.text(i.get_x()-.001, i.get_height()+.5,
str("{:,.0f}".format(lista_valores[c])), fontsize=17, fontstyle='italic', verticalalignment='bottom',color='dimgrey')
c += 1
ax.set_xticklabels(lista_categorias,fontsize=16)
ax.patch.set_facecolor('#ffffff')
ax.spines['bottom'].set_color('#CCCCCC')
ax.spines['bottom'].set_linewidth(1)
ax.spines['right'].set_linewidth(0)
ax.spines['top'].set_linewidth(0)
ax.spines['left'].set_color('#CCCCCC')
ax.spines['left'].set_linewidth(1)
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
ax.spines['left'].set_visible(False)
ax.tick_params(bottom=False, left=False)
ax.set_axisbelow(True)
ax.yaxis.grid(False, color='#EEEEEE')
ax.xaxis.grid(False)
canva = FigureCanvasTkAgg(figura, frameMeio)
canva.get_tk_widget().place(x=10, y=70)
# funcao de resumo total
def resumo():
valor = bar_valores()
l_linha = Label(frameMeio, text="", width=215, height=1, anchor=NW, font=('Arial 1'), bg='#545454')
l_linha.place(x=309,y=52)
l_sumario = Label(frameMeio, text="Total Renda Mensal ".upper(), anchor=NW, font=('Verdana 12'), bg=co1, fg='#228b22')
l_sumario.place(x=309,y=35)
l_sumario = Label(frameMeio, text="R$ {:,.2f}".format(valor[0]), anchor=NW, font=('arial 17'), bg=co1, fg='#545454')
l_sumario.place(x=309,y=70)
l_linha = Label(frameMeio, text="", width=215, height=1, anchor=NW, font=('Arial 1'), bg='#545454')
l_linha.place(x=309,y=132)
l_sumario = Label(frameMeio, text="Total Despesas Mensais ".upper(), anchor=NW, font=('Verdana 12'), bg=co1, fg='#228b22')
l_sumario.place(x=309,y=115)
l_sumario = Label(frameMeio, text="R$ {:,.2f}".format(valor[1]), anchor=NW, font=('arial 17'), bg=co1, fg='#545454')
l_sumario.place(x=309,y=150)
l_linha = Label(frameMeio, text="", width=215, height=1, anchor=NW, font=('Arial 1'), bg='#545454')
l_linha.place(x=309,y=207)
l_sumario = Label(frameMeio, text="Total Saldo da Caixa ".upper(), anchor=NW, font=('Verdana 12'), bg=co1, fg='#228b22')
l_sumario.place(x=309,y=190)
l_sumario = Label(frameMeio, text="R$ {:,.2f}".format(valor[2]), anchor=NW, font=('arial 17'), bg=co1, fg='#545454')
l_sumario.place(x=309,y=220)
frame_gra_pie = Frame(frameMeio, width=580, height=250, bg=co2)
frame_gra_pie.place(x=415, y=5)
# funcao grafico pie
def grafico_pie():
# faça figura e atribua objetos de eixo
figura = plt.Figure(figsize=(5, 3), dpi=90)
ax = figura.add_subplot(111)
lista_valores = pie_valores()[1]
lista_categorias = pie_valores()[1]
# only "explode" the 2nd slice (i.e. 'Hogs')
explode = []
for i in lista_categorias:
explode.append(0.05)
ax.pie(lista_valores, explode=explode, wedgeprops=dict(width=0.2), autopct='%1.1f%%', colors=colors,shadow=True, startangle=90)
ax.legend(lista_categorias, loc="center right", bbox_to_anchor=(1.55, 0.50))
canva_categoria = FigureCanvasTkAgg(figura, frame_gra_pie)
canva_categoria.get_tk_widget().grid(row=0, column=0)
percentagem()
grafico_bar()
resumo()
grafico_pie()
# Criando frames dentro do Frame Baixo
frame_renda = Frame(frameBaixo, width=300, height=250, bg=co1)
frame_renda.grid(row=0,column=0)
frame_operacoes = Frame(frameBaixo, width=220, height=250, bg=co1)
frame_operacoes.grid(row=0,column=1, padx=5)
frame_configuracao = Frame(frameBaixo, width=220, height=250, bg=co1)
frame_configuracao.grid(row=0,column=2, padx=5)
# Tabela Renda Mensal ------------------------
app_tabela = Label(frameMeio, text="Tabela Receitas e Despesas", anchor=NW, font=('Verdana 12'), bg=co1, fg=co4,)
app_tabela.place(x=5, y=309)
# funcao para mostrar_renda
def mostrar_renda():
# creating a treeview with dual scrollbars
tabela_head = ['#Id','Categoria','Data','Quantia']
lista_itens = tabela()
global tree
tree = ttk.Treeview(frame_renda, selectmode="extended",columns=tabela_head, show="headings")
# vertical scrollbar
vsb = ttk.Scrollbar(frame_renda, orient="vertical", command=tree.yview)
# horizontal scrollbar
hsb = ttk.Scrollbar(frame_renda, orient="horizontal", command=tree.xview)
tree.configure(yscrollcommand=vsb.set, xscrollcommand=hsb.set)
tree.grid(column=0, row=0, sticky='nsew')
vsb.grid(column=1, row=0, sticky='ns')
hsb.grid(column=0, row=1, sticky='ew')
hd=["center","center","center", "center"]
h=[30,100,100,100]
n=0
for col in tabela_head:
tree.heading(col, text=col.title(), anchor=CENTER)
# adjust the column's width to the header string
tree.column(col, width=h[n],anchor=hd[n])
n+=1
for item in lista_itens:
tree.insert('', 'end', values=item)
mostrar_renda()
# Configuracoes Despesas -------------
l_info = Label(frame_operacoes, text='Insira novas despesas', height=1, anchor=NW, font=('Verdana 10 bold'), bg=co1, fg=co4)
l_info.place(x=10, y=10)
# categoria -------------
l_categoria = Label(frame_operacoes, text='Categoria', height=1, anchor=NW, font=('Ivy 10'), bg=co1, fg=co4)
l_categoria.place(x=10, y=40)
# Pegando categorias
categoria_funcao = ver_categoria()
categoria = []
for i in categoria_funcao:
categoria.append(i[1])
combo_categoria_despesas = ttk.Combobox(frame_operacoes, width=10, font=('Ivy 10'))
combo_categoria_despesas['values'] = (categoria)
combo_categoria_despesas.place(x=110, y=41)
# despesas -------------
l_cal_despesas = Label(frame_operacoes, text='Data', height=1, anchor=NW, font=('Ivy 10'), bg=co1, fg=co4)
l_cal_despesas.place(x=10, y=70)
e_cal_despesas = DateEntry(frame_operacoes, width=12, background='darkblue', foreground='white', borderwidth=2, year=2023)
e_cal_despesas.place(x=110, y=71)
# Valor -------------
l_valor_despesas = Label(frame_operacoes, text='Quantia Total', height=1, anchor=NW, font=('Ivy 10'), bg=co1, fg=co4)
l_valor_despesas.place(x=10, y=100)
e_valor_despesas = Entry(frame_operacoes, width=14, justify='left', relief='solid')
e_valor_despesas.place(x=110, y=101)
# Botao Inserir
img_add_despesas = Image.open('button-add.png')
img_add_despesas = img_add_despesas.resize((17,17))
img_add_despesas = ImageTk.PhotoImage(img_add_despesas)
botao_inserir_despesas = Button(frame_operacoes,command=inserir_categoria_b, image=img_add_despesas, text=" Adicionar".upper(), width=80, compound=LEFT, anchor=NW, font=('Ivy 7 bold'), bg=co1, fg=co0, overrelief=RIDGE)
botao_inserir_despesas.place(x=110, y=131)
# Botao Excluir
l_excluir = Label(frame_operacoes, text='Excluir ação', height=1, anchor=NW, font=('Ivy 10 bold'), bg=co1, fg=co4)
l_excluir.place(x=10, y=190)
img_delete = Image.open('button-remove.png')
img_delete = img_delete.resize((17,17))
img_delete = ImageTk.PhotoImage(img_delete)
botao_deletar = Button(frame_operacoes,command=deletar_dados, image=img_delete, text=" Deletar".upper(), width=80, compound=LEFT, anchor=NW, font=('Ivy 7 bold'), bg=co1, fg=co0, overrelief=RIDGE)
botao_deletar.place(x=110, y=190)
# Configuracoes Receitas
l_info = Label(frame_configuracao, text='Insira novas receitas', height=1, anchor=NW, font=('Verdana 10 bold'), bg=co1, fg=co4)
l_info.place(x=10, y=10)
# calendario -------------
l_cal_receitas = Label(frame_configuracao, text='Data', height=1, anchor=NW, font=('Ivy 10'), bg=co1, fg=co4)
l_cal_receitas.place(x=10, y=40)
e_cal_receitas = DateEntry(frame_configuracao, width=12, background='darkblue', foreground='white', borderwidth=2, year=2023)
e_cal_receitas.place(x=110, y=41)
# Valor -------------
l_valor_receitas = Label(frame_configuracao, text='Quantia Total', height=1, anchor=NW, font=('Ivy 10'), bg=co1, fg=co4)
l_valor_receitas.place(x=10, y=70)
e_valor_receitas = Entry(frame_configuracao, width=14, justify='left', relief='solid')
e_valor_receitas.place(x=110, y=71)
# Botao Inserir
img_add_receitas = Image.open('button-add.png')
img_add_receitas = img_add_receitas.resize((17,17))
img_add_receitas = ImageTk.PhotoImage(img_add_receitas)
botao_inserir_receitas = Button(frame_configuracao,command=inserir_categoria_b, image=img_add_receitas, text=" Adicionar".upper(), width=80, compound=LEFT, anchor=NW, font=('Ivy 7 bold'), bg=co1, fg=co0, overrelief=RIDGE)
botao_inserir_receitas.place(x=110, y=111)
# Operacao Nova Categoria ------------
l_info = Label(frame_configuracao, text='Categoria', height=1, anchor=NW, font=('Verdana 10 bold'), bg=co1, fg=co4)
l_info.place(x=10, y=160)
e_categoria = Entry(frame_configuracao, width=14, justify='left', relief='solid')
e_categoria.place(x=110, y=160)
# Botao Inserir
img_add_categoria = Image.open('button-add.png')
img_add_categoria = img_add_categoria.resize((17,17))
img_add_categoria = ImageTk.PhotoImage(img_add_categoria)
botao_inserir_despesas = Button(frame_configuracao,command=inserir_categoria_b, image=img_add_categoria, text=" Adicionar".upper(), width=80, compound=LEFT, anchor=NW, font=('Ivy 7 bold'), bg=co1, fg=co0, overrelief=RIDGE)
botao_inserir_despesas.place(x=110, y=190)
janela.mainloop()