-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpages.py
652 lines (526 loc) · 28.9 KB
/
pages.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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
# ============================================================================================================================================
import flet as ft
from database import Frota, conexao_bd, Alugueis, Historico, Clientes, Financeiro
import widgets as wd
import utilities as ut
# ============================================================================================================================================
# ============================================================================================================================================
# ============================================================================================================================================
""" FUNÇÃO DA PÁGINA FROTA ONDE TODOS OS ELEMENTOS SÃO CRIADOS, ARMAZENADOS E ENVIADOS PARA RENDERIZAÇÃO """
# ============================================================================================================================================
def page_frota(page, rail):
def view_frota():
cabecario = [
ft.DataColumn(ft.Text("ID")),
ft.DataColumn(ft.Text("Placa")),
ft.DataColumn(ft.Text("Marca")),
ft.DataColumn(ft.Text("Modelo")),
ft.DataColumn(ft.Text("Vencimento Documento")),
ft.DataColumn(ft.Text("Vencimento Seguro")),
ft.DataColumn(ft.Text("Troca de Óleo")),
ft.DataColumn(ft.Text("Observações")),
ft.DataColumn(ft.Text("Cor")),
ft.DataColumn(ft.Text("Status"))]
itens = Frota.mostrar_frota(page)
return wd.criar_datarow(cabecario, itens)
page.update()
placa = ft.TextField(label="Placa*", hint_text="Informe a placa do veículo", autofocus=True)
marca = ft.TextField(label="Marca", hint_text="Informe a Marca do veículo")
modelo = ft.TextField(label="Modelo", hint_text="Informe o Modelo do veículo")
documento = ft.TextField(label="Vencimento do Documento", hint_text="Informe a data da documentação", prefix_icon="CALENDAR_MONTH_OUTLINED")
seguro = ft.TextField(label="Vencimento Seguro", hint_text="Informe a data do seguro", prefix_icon="CALENDAR_MONTH_OUTLINED")
oleo = ft.TextField(label="Última Troca de Óleo", hint_text="Informe a última troca de Óleo", prefix_icon="CALENDAR_MONTH_OUTLINED")
obs = ft.TextField(label="Observações", hint_text="Informe as observações")
cor = ft.TextField(label="Cor do Veículo", hint_text="Informe a cor do veículo", prefix_icon="COLOR_LENS_OUTLINED")
status = ft.Dropdown(
label="Status*",
hint_text="Escolha o status do veiculo",
options=[
ft.dropdown.Option("Disponivel"),
ft.dropdown.Option("Indisponivel"),
],
border=ft.border.all(0.7, "red"),
)
obs_veiculo = ft.Text("Atenção, O Status do seu veículo afeta diretamente na possibilidade aluguel dele!", color="red", weight=ft.FontWeight.W_600)
def abrir_modal(e):
page.dialog = modal
modal.open = True
page.update()
def fechar_modal(e):
modal.open = False
page.update()
def add_carro(e):
if not placa.value:
placa.error_text = "Este campo é obrigatório"
abrir_modal(e)
return
if not status.value:
status.error_text = "Este campo é obrigatório"
abrir_modal(e)
return
campos_data = [documento, seguro, oleo]
lista = []
for data in campos_data:
data_valor = ut.data_filtro(data.value, data)
lista.append(data_valor)
if not data_valor:
abrir_modal(e)
return
documento_valor, seguro_valor, oleo_valor = lista
fechar_modal(e)
Frota.salvar_frota(placa.value, marca.value, modelo.value, documento_valor, seguro_valor, oleo_valor, obs.value, cor.value, status.value)
page.update()
def atualizar(e):
page.clean()
page.add(page_frota(page, rail))
campos_modal = ft.Column(controls=[placa, marca, modelo, documento, seguro, oleo, obs, cor, status, obs_veiculo], height=500, width=800, scroll=ft.ScrollMode.ALWAYS)
titulo = "Adicionar Carro na Frota: "
modal = wd.criar_modal(titulo, campos_modal, fechar_modal, add_carro)
return ft.Row(
[
rail,
ft.VerticalDivider(width=1),
ft.Column(
[
ft.Row([
ft.OutlinedButton("Adicionar Carro", icon="ADD_CIRCLE", style=ft.ButtonStyle(shape=ft.RoundedRectangleBorder(radius=0)), on_click=abrir_modal),
ft.OutlinedButton("Atualizar Tabela", icon="REFRESH", style=ft.ButtonStyle(shape=ft.RoundedRectangleBorder(radius=0)), on_click=atualizar),
]),
view_frota(),
],
alignment=ft.MainAxisAlignment.START,
expand=True,
scroll=ft.ScrollMode.ALWAYS,
),
],
vertical_alignment=ft.CrossAxisAlignment.START,
expand=True,
)
# ============================================================================================================================================
""" FUNÇÃO DA PÁGINA ALUGUÉIS ONDE TODOS OS ELEMENTOS SÃO CRIADOS, ARMAZENADOS E ENVIADOS PARA RENDERIZAÇÃO """
# ============================================================================================================================================
def page_aluguel(page, rail):
def view_aluguel():
cabecario = [
ft.DataColumn(ft.Text("ID")),
ft.DataColumn(ft.Text("ID - Frota")),
ft.DataColumn(ft.Text("Nome")),
ft.DataColumn(ft.Text("Endereço")),
ft.DataColumn(ft.Text("Identidade")),
ft.DataColumn(ft.Text("Data do Aluguel")),
ft.DataColumn(ft.Text("Data de Devolução")),
ft.DataColumn(ft.Text("Observações")),
ft.DataColumn(ft.Text("Valor do Aluguel (US$)")),
ft.DataColumn(ft.Text("Valor Pago (US$)")),
ft.DataColumn(ft.Text("Placa do Carro")),]
itens = Alugueis.mostrar_alugueis(page)
return wd.criar_datarow(cabecario, itens)
page.update()
nome = ft.TextField(label="Nome do Locatário*", hint_text="Informe o nome completo", autofocus=True)
endereco = ft.TextField(label="Endereço do Locatário", hint_text="Informe o endereço", prefix_icon="LOCATION_ON_OUTLINED")
identidade = ft.TextField(label="Identificação", hint_text="Informe um meio de Identificação")
data_retirada = ft.TextField(label="Data do Aluguel", hint_text="Informe a data que foi alugado", prefix_icon="CALENDAR_MONTH_OUTLINED")
data_devolucao= ft.TextField(label="Data da Devolução", hint_text="Informe a data que o veículo foi devolvido", prefix_icon="CALENDAR_MONTH_OUTLINED")
valor = ft.TextField(label="Valor Aluguel*", hint_text="Informe o valor do aluguel", prefix_text="US$ ", prefix_icon="MONETIZATION_ON_OUTLINED")
valor_pago = ft.TextField(label="Valor Pago*", hint_text="Informe o valor já pago", prefix_text="US$ ", prefix_icon="MONETIZATION_ON_OUTLINED")
obs = ft.TextField(label="Observações", hint_text="Observações adicionais")
frota_id = ft.Dropdown(
label="Veiculo - Placa*",
hint_text="Escolha o veiculo alugado (Pela Placa)",
options=[])
frota_id.options = [ft.dropdown.Option(id, placa) for id, placa in Frota.carros_frota('id, placa', 'status', 'Disponivel')]
obs_veiculo = ft.Text("Os veículos acima são apenas aqueles presentes na sua frota com status disponível!", color="red", weight=ft.FontWeight.W_600)
campos_modal = ft.Column(controls=[nome, endereco, identidade,
data_retirada, data_devolucao,
valor, valor_pago, obs,
frota_id, obs_veiculo],
height=500, width=800, scroll=ft.ScrollMode.ALWAYS)
def abrir_modal(e):
page.dialog = modal
modal.open = True
page.update()
def fechar_modal(e):
modal.open = False
page.update()
def add_aluguel(e):
if not nome.value:
nome.error_text = "Este campo é obrigatório"
abrir_modal(e)
return
if not frota_id.value:
frota_id.error_text = "Este campo é obrigatório"
abrir_modal(e)
return
campos_valor = [valor, valor_pago]
lista_valor = []
for valores in campos_valor:
valor_vrf = ut.vrf_numerico(valores.value, valores)
lista_valor.append(valor_vrf)
if valor_vrf is False:
abrir_modal(e)
return
valor_aluguel_vrf, valor_pago_vrf = lista_valor
campos_data = [data_retirada, data_devolucao]
lista_data = []
for datas in campos_data:
data_valor = ut.data_filtro(datas.value, datas)
lista_data.append(data_valor)
if not data_valor:
abrir_modal(e)
return
data_retirada_valor, data_devolucao_valor = lista_data
fechar_modal(e)
Alugueis.adicionar_aluguel(nome.value, endereco.value, identidade.value, data_retirada_valor, data_devolucao_valor, obs.value, valor_aluguel_vrf, valor_pago_vrf, frota_id.value)
page.update()
def atualizar(e):
page.clean()
page.add(page_aluguel(page, rail))
titulo = "Adicionar Aluguel"
modal = wd.criar_modal(titulo, campos_modal, fechar_modal, add_aluguel)
return ft.Row(
[
rail,
ft.VerticalDivider(width=1),
ft.Column(
[
ft.Row([ # Nova linha para os botões
ft.OutlinedButton("Adicionar Aluguel", icon="ADD_CIRCLE", style=ft.ButtonStyle(shape=ft.RoundedRectangleBorder(radius=0)), on_click=abrir_modal),
ft.OutlinedButton("Atualizar Tabela", icon="REFRESH", style=ft.ButtonStyle(shape=ft.RoundedRectangleBorder(radius=0)), on_click=atualizar),
]),
view_aluguel(),
],
alignment=ft.MainAxisAlignment.START,
expand=True,
scroll=ft.ScrollMode.ALWAYS,),],
vertical_alignment=ft.CrossAxisAlignment.START,
expand=True,
)
# ============================================================================================================================================
""" FUNÇÃO DA PÁGINA HISTÓRICO ONDE TODOS OS ELEMENTOS SÃO CRIADOS, ARMAZENADOS E ENVIADOS PARA RENDERIZAÇÃO """
# ============================================================================================================================================
def page_historico(page, rail):
def view_historico():
cabecario = [
ft.DataColumn(ft.Text("ID")),
ft.DataColumn(ft.Text("Nome")),
ft.DataColumn(ft.Text("Endereço")),
ft.DataColumn(ft.Text("Identidade")),
ft.DataColumn(ft.Text("Data do Aluguel")),
ft.DataColumn(ft.Text("Data de Devolução")),
ft.DataColumn(ft.Text("Observações")),
ft.DataColumn(ft.Text("Valor do Aluguel (US$)")),
ft.DataColumn(ft.Text("Valor Pago (US$)")),]
itens = Historico.mostrar_historico(page)
return wd.criar_datarow(cabecario, itens)
page.update()
return ft.Row(
[
rail,
ft.VerticalDivider(width=1),
ft.Column(
[
ft.Row([ # Nova linha para os botões
ft.Text("Abaixo estão todos aluguéis já feitos:", font_family="Roboto", weight=ft.FontWeight.W_600, size=20),
]),
view_historico(),
],
alignment=ft.MainAxisAlignment.START,
expand=True,
scroll=ft.ScrollMode.ALWAYS,),],
vertical_alignment=ft.CrossAxisAlignment.START,
expand=True,
)
# ============================================================================================================================================
""" FUNÇÃO DA PÁGINA CLIENTES ONDE TODOS OS ELEMENTOS SÃO CRIADOS, ARMAZENADOS E ENVIADOS PARA RENDERIZAÇÃO """
# ============================================================================================================================================
def page_clientes(page, rail):
def view_clientes():
cabecario = [
ft.DataColumn(ft.Text("ID")),
ft.DataColumn(ft.Text("Nome")),
ft.DataColumn(ft.Text("Endereço")),
ft.DataColumn(ft.Text("Identidade")),]
itens = Clientes.mostrar_clientes(page)
return wd.criar_datarow(cabecario, itens)
page.update()
return ft.Row(
[
rail,
ft.VerticalDivider(width=1),
ft.Column(
[
ft.Row([ # Nova linha para os botões
ft.Text("Abaixo estão todos os clientes que já alugaram um veículo:", font_family="Roboto", weight=ft.FontWeight.W_600, size=20),
]),
view_clientes(),
],
alignment=ft.MainAxisAlignment.START,
expand=True,
scroll=ft.ScrollMode.ALWAYS,),],
vertical_alignment=ft.CrossAxisAlignment.START,
expand=True,
)
# ============================================================================================================================================
""" FUNÇÃO DA PÁGINA FINANCEIRO ONDE TODOS OS ELEMENTOS SÃO CRIADOS, ARMAZENADOS E ENVIADOS PARA RENDERIZAÇÃO """
# ============================================================================================================================================
def page_financeiro(page, rail):
def view_geral():
cabecario = [
ft.DataColumn(ft.Text("Entrada (US$)")),
ft.DataColumn(ft.Text("Saída (US$)")),
ft.DataColumn(ft.Text("Valor Bruto (US$)")),
ft.DataColumn(ft.Text("Valor Líquido (US$)")),
]
itens = Financeiro.mostrar_financeiro(page)
return wd.criar_datarow(cabecario, itens)
def atualizar(e):
page.clean()
page.add(page_financeiro(page, rail))
page.update()
return ft.Row(
[
rail,
ft.VerticalDivider(width=1),
ft.Column(
[
ft.Row([
ft.OutlinedButton("Atualizar Tabela", icon="REFRESH", style=ft.ButtonStyle(shape=ft.RoundedRectangleBorder(radius=0)), on_click=atualizar),
]),
view_geral(),
ft.Text("Info: Esta tabela é composta pela junção das Tabelas de Dívidas + Lucros!", color="red", weight=ft.FontWeight.BOLD, size=16),
ft.Text("Para mais informações sobre as tabelas e seus cálculos, consulte o menu 'AJUDA' no canto superior direito!", color="red", weight=ft.FontWeight.BOLD, size=16)
],
alignment=ft.MainAxisAlignment.START,
expand=True,
scroll=ft.ScrollMode.ALWAYS)],
vertical_alignment=ft.CrossAxisAlignment.START,
expand=True,
)
# ============================================================================================================================================
""" FUNÇÃO DA PÁGINA LUCROS ONDE TODOS OS ELEMENTOS SÃO CRIADOS, ARMAZENADOS E ENVIADOS PARA RENDERIZAÇÃO """
# ============================================================================================================================================
def page_financeiro_aluguel(page, rail):
def view_financeiro_aluguel():
cabecario = [
ft.DataColumn(ft.Text("ID")),
ft.DataColumn(ft.Text("Entradas (US$)")),
ft.DataColumn(ft.Text("Placa")),
ft.DataColumn(ft.Text("Data do Aluguel")),
ft.DataColumn(ft.Text("Lucros Administração (US$)")),
ft.DataColumn(ft.Text("Bruto Empresa (US$)")),
ft.DataColumn(ft.Text("Lucros Empresa (US$)"))]
itens = Financeiro.mostrar_financeiro_aluguel(page)
return wd.criar_datarow(cabecario, itens)
def views_total():
cabecario2 = [
ft.DataColumn(ft.Text("Entradas Totais (US$)")),
ft.DataColumn(ft.Text("Saídas Totais (US$)")),
ft.DataColumn(ft.Text("Lucro Administração Total (US$)")),
ft.DataColumn(ft.Text("Lucro Empresa Total (US$)"))]
itens2 = Financeiro.financeiro_aluguel_total()
return wd.criar_datarow(cabecario2, itens2)
def atualizar(e):
page.clean()
page.add(page_financeiro_aluguel(page, rail))
page.update()
return ft.Row(
[
rail,
ft.VerticalDivider(width=1),
ft.Column([ft.Row([ft.OutlinedButton("Atualizar Tabela", icon="REFRESH", style=ft.ButtonStyle(shape=ft.RoundedRectangleBorder(radius=0)), on_click=atualizar)]),
ft.Text("Dados Financeiros de cada Aluguel:", size=20, weight=ft.FontWeight.BOLD),
view_financeiro_aluguel(),
ft.Text("\nDados Financeiros Totais de Aluguel:", size=20, weight=ft.FontWeight.BOLD),
views_total()
],
alignment=ft.MainAxisAlignment.START,
expand=True,
scroll=ft.ScrollMode.ALWAYS)
],
vertical_alignment=ft.CrossAxisAlignment.START,
expand=True,)
# ============================================================================================================================================
""" FUNÇÃO DA PÁGINA DÍVIDAS ONDE TODOS OS ELEMENTOS SÃO CRIADOS, ARMAZENADOS E ENVIADOS PARA RENDERIZAÇÃO """
# ============================================================================================================================================
def page_dividas(page, rail):
def view_dividas():
cabecario = [
ft.DataColumn(ft.Text("ID")),
ft.DataColumn(ft.Text("Entradas (US$)")),
ft.DataColumn(ft.Text("Saídas (US$)")),
ft.DataColumn(ft.Text("Tipo")),
ft.DataColumn(ft.Text("Observações"))
]
itens = Financeiro.mostrar_dividas(page)
return wd.criar_datarow(cabecario, itens)
def views_dividas_total():
cabecario2 = [
ft.DataColumn(ft.Text("Entrada Total (US$)")),
ft.DataColumn(ft.Text("Saída Total (US$)")),
ft.DataColumn(ft.Text("Líquido Total (US$)"))
]
itens2 = Financeiro.dividas_total()
return wd.criar_datarow(cabecario2, itens2)
page.update()
entradas = ft.TextField(label="Entradas", hint_text=" Informe as entradas", autofocus=True, prefix_text="US$ ", prefix_icon="MONETIZATION_ON_OUTLINED")
gastos = ft.TextField(label="Saídas", hint_text=" Informe as saídas", prefix_text="US$ - ", prefix_icon="MONETIZATION_ON_OUTLINED")
tipo = ft.Dropdown(
label="Tipo do Gasto*",
hint_text="Escolha o tipo do gasto",
options=[
ft.dropdown.Option("Aluguel"),
ft.dropdown.Option("Outros"),
],
border=ft.border.all(0.7),
)
obs = ft.TextField(label="Observações", hint_text="Informações adicionais")
texto_obs_dividas = ("\nObservação: Você pode adicionar apenas a entrada e/ou saída!"
"\n\nInfo: Ao Adicionar tipo de gasto como aluguel, esse gasto será creditado na tabela financeira de lucros como uma saída!")
obs_dividas = ft.Text(texto_obs_dividas, color="red", weight=ft.FontWeight.W_600)
def abrir_modal(e):
page.dialog = modal
modal.open = True
page.update()
def fechar_modal(e):
modal.open = False
page.update()
def add_financeiro(e):
if not tipo.value:
tipo.error_text = "Este campo é obrigatório"
abrir_modal(e)
return
if entradas.value and tipo.value == "Aluguel":
tipo.error_text = "Aluguel não pode ser utilizado como o Tipo para ENTRADAS, apenas SAÍDAS."
abrir_modal(e)
return
campos_financeiro = [entradas, gastos]
lista_financeiro = []
for valores_financeiro in campos_financeiro:
valor_vrf = ut.vrf_numerico(valores_financeiro.value, valores_financeiro, True)
if valor_vrf is False:
abrir_modal(e)
return
lista_financeiro.append(valor_vrf)
entradas_valor, gastos_valor = lista_financeiro
fechar_modal(e)
conexao = conexao_bd()
Financeiro.adicionar_dividas(entradas_valor, gastos_valor, tipo.value, obs.value, conexao)
page.update()
def atualizar(e):
page.clean()
page.add(page_dividas(page, rail))
campos_modal = ft.Column(controls=[entradas, gastos, tipo, obs, obs_dividas], height=300, width=800, scroll=ft.ScrollMode.ALWAYS)
titulo = "Adicionar Valores"
modal = wd.criar_modal(titulo, campos_modal, fechar_modal, add_financeiro)
return ft.Row(
[
rail,
ft.VerticalDivider(width=1),
ft.Column(
[ft.Row([ft.OutlinedButton("Adicionar Valores", icon="ADD_CIRCLE", style=ft.ButtonStyle(shape=ft.RoundedRectangleBorder(radius=0)), on_click=abrir_modal),
ft.OutlinedButton("Atualizar Tabela", icon="REFRESH", style=ft.ButtonStyle(shape=ft.RoundedRectangleBorder(radius=0)), on_click=atualizar),]),
ft.Text("Dados Financeiros Unitários:", size=20, weight=ft.FontWeight.BOLD),
view_dividas(),
ft.Text("\nDados Financeiros Totais:", size=20, weight=ft.FontWeight.BOLD),
views_dividas_total()
],
alignment=ft.MainAxisAlignment.START,
expand=True,
scroll=ft.ScrollMode.ALWAYS,
),
],
vertical_alignment=ft.CrossAxisAlignment.START,
expand=True,
)
# ============================================================================================================================================
""" FUNÇÃO DA PÁGINA AJUDA ONDE TODOS OS ELEMENTOS SÃO CRIADOS, ARMAZENADOS E ENVIADOS PARA RENDERIZAÇÃO """
# ============================================================================================================================================
def page_ajuda(rail):
# Título e Texto Geral
titulo_tabelas = ft.Text("\nSobre as tabelas:", weight=ft.FontWeight.BOLD, size=30)
texto_geral = (
"Obs: As tabelas foram feitas levando em consideração a necessidade da sua empresa em específico."
" Se necessitar de configurações diferentes, entre em contato clicando no botão esquerdo superior!"
)
texto1 = ft.Text(texto_geral, weight=ft.FontWeight.W_500, size=14)
# Seção Tabela de Dívidas
subtitulo1 = ft.Text("\nTabela de Dívidas:", weight=ft.FontWeight.W_700, size=16)
texto_tabela_dividas = (
"A tabela de dívidas é composta por 4 colunas: Entradas, Saídas, Tipo e Observações."
" Nesta tabela, você pode adicionar entradas e saídas de dinheiro, mas ela é especialmente feita para as saídas."
"\n\nTipo Aluguel:"
"\n Ao adicionar um gasto com o tipo 'ALUGUEL', esse gasto será creditado na tabela financeira de lucros como um gasto,"
" reajustando o seu lucro líquido."
"\n Atenção: Ao escolher o tipo de gasto, tenha em mente que o TIPO 'ALUGUEL' é exclusivo para a adição de 'SAÍDAS/GASTOS/DÍVIDAS',"
" não podendo ser utilizado como TIPO para quando forem valores de 'ENTRADAS/SALDOS'."
"\n\nTipo Outros:"
"\n Ao adicionar um gasto com o tipo 'OUTROS', esse gasto não será creditado na tabela financeira de lucros, apenas na Tabela Financeira Geral."
"\n Atenção: Ao escolher o tipo de gasto, o TIPO 'OUTROS' pode ser utilizado para 'ENTRADAS/SALDOS' e 'SAÍDAS/GASTOS/DÍVIDAS'."
)
texto2 = ft.Text(texto_tabela_dividas)
# Seção Tabela de Lucros
subtitulo2 = ft.Text("\nTabela de Lucros:", weight=ft.FontWeight.W_700, size=16)
texto_tabela_alugueis = (
"A tabela de Lucro também chamada de Tabela de Aluguéis é dividida em: Entradas, Placa, Lucros Administração, Bruto Empresa e Lucros Empresa."
" Nesta tabela, terá os valores para cada aluguel que você tiver feito separadamente, cada aluguel é identificado pela placa do carro alugado,"
" e cada aluguel tem seus valores de entrada, lucro de administração, bruto da empresa e lucro da empresa, onde:"
"\n\nEntradas e Bruto Empresa:"
"\n É o valor que o cliente pagou pelo aluguel do veículo total."
"\n\nLucros Administração:"
"\n É o valor que a administração ganha em cima do valor do aluguel bruto, neste caso configurado como: 30%."
"\n Cálculo -> (30 / 100) * Entrada"
"\n\nLucros Empresa:"
"\n É o valor bruto subtraído do lucros da administração, ou seja, o líquido de cada aluguel."
"\n Cálculo -> Entrada - Lucros Administração"
"\n\nAo final da tabela, temos os valores totais de cada coluna somadas, te trazendo uma perspectiva geral dos aluguéis, onde:"
"\n\nEntradas Totais:"
"\n A soma de todas as entradas de aluguéis."
"\n\nSaídas Totais:"
"\n A soma de todas as saídas/gastos adicionadas na tabela de dívidas, que tiverem o tipo 'ALUGUEL'."
"\n\nLucro Administração Total:"
"\n A soma de todos os lucros de administração de cada aluguel."
"\n\nLucro Empresa Total:"
"\n A soma de todos os lucros da empresa de cada aluguel subtraído da soma de todas as saídas e gastos totais."
"\n Cálculo -> Lucro Empresa [O lucro empresa já inclui a subtração dos valores da administração] - Saídas Totais"
)
texto3 = ft.Text(texto_tabela_alugueis)
# Seção Tabela Geral
subtitulo3 = ft.Text("\nTabela Financeiro Geral:", weight=ft.FontWeight.W_700, size=16)
texto_tabela_geral = (
"A tabela de Financeiro Geral é dividida em: Entradas, Saída, Valor Bruto e Valor Líquido."
" Nesta Tabela teremos a visão geral de todo o financeiro, uma junção das tabelas de Lucros e Dívidas onde:"
"\n\nEntradas e Valor Bruto:"
"\n São os valores de todos aluguéis da tabela de lucros + valores de todas as entradas da tabela de dívidas."
"\n Cálculo -> Entradas totais aluguéis + Entradas totais de outros"
"\n\nSaídas:"
"\n São os valores de todas as dívidas da tabela de dívidas, sejam elas do tipo aluguel ou não."
"\n\nValor Líquido:"
"\n Os valores líquidos desta tabela são a subtração das duas colunas anteriores, de saídas e Entradas"
"\n Cálculo -> Entrada - Saídas"
)
texto4 = ft.Text(texto_tabela_geral)
return ft.Row(
[
rail,
ft.VerticalDivider(width=1),
ft.Column(
[
titulo_tabelas,
texto1,
subtitulo1,
texto2,
subtitulo2,
texto3,
subtitulo3,
texto4
],
alignment=ft.MainAxisAlignment.START,
expand=True,
scroll=ft.ScrollMode.ALWAYS,
),
],
vertical_alignment=ft.CrossAxisAlignment.START,
expand=True
)
# ============================================================================================================================================
# ============================================================================================================================================