-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.c
2423 lines (2133 loc) · 68 KB
/
main.c
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
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include <string.h>
#include <conio.h>
#include <ctype.h>
#include <time.h> /*Biblioteca para trabalhar com data */
#define ARQUIVO_PRODUTO "produto.txt"
#define ARQUIVO_CLIENTE "cliente.txt"
#define ARQUIVO_FUNCIONARIO "funcionario.txt"
#define ARQUIVO_FORNECEDOR "fornecedor.txt"
#define ARQUIVO_GASTOS_1 "gastoUnidade1.txt"
#define ARQUIVO_GASTOS_2 "gastoUnidade2.txt"
#define ARQUIVO_GASTOS_3 "gastoUnidade3.txt"
#define ARQUIVO_VENDA_1 "Venda1.txt"
#define ARQUIVO_VENDA_2 "Venda2.txt"
#define ARQUIVO_VENDA_3 "Venda3.txt"
#define SAIR '0'
/**
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Sistema de gestão e controle financeiro para uma pizzaria.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Autores: Gabriel Fernandes Lemos,
Erik Hideyuki Yoshimoto Seki,
Gabriel Franco Garcia Rodrigues de Paula,
Matheus Nunes Nepomuceno,
Clayton Belarmino da Silva,
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Data de inicio: 01/10/2019
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
**/
char *MenuPrincipal[]={
"1. Cadastros",
"2. Vendas",
"3. Relatórios",
"4. Opções",
"0. Sair",
NULL /* ACABARAM AS OPÇÕES*/
};
char *MenuPrincipalUsuario[]={
"1. Cadastros",
"2. Vendas",
"3. Opções",
"0. Sair",
NULL /* ACABARAM AS OPÇÕES*/
};
char *MenuCadastro[]={
"1. Produtos",
"2. Clientes",
"3. Funcionarios",
"4. Fornecedor",
"5. Gastos",
"6. Voltar",
"0. Sair",
NULL /* ACABARAM AS OPÇÕES*/
};
char *MenuCadastroUsuario[]={
"1. Produtos",
"2. Clientes",
"3. Fornecedor",
"4. Voltar",
"0. Sair",
NULL /* ACABARAM AS OPÇÕES*/
};
char *MenuProduto[]={
"1. Inserir produto",
"2. Alterar produto",
"3. Apagar produto",
"4. Listar produtos",
"5. Voltar",
"0. Sair",
NULL /* ACABARAM AS OPÇÕES*/
};
char *MenuCliente[]={
"1. Inserir cliente",
"2. Alterar cliente",
"3. Apagar cliente",
"4. Listar clientes",
"5. Voltar",
"0. Sair",
NULL /* ACABARAM AS OPÇÕES*/
};
char *MenuFuncionario[]={
"1. Inserir funcionario",
"2. Alterar funcionario",
"3. Apagar funcionario",
"4. Listar funcionario",
"5. Voltar",
"0. Sair",
NULL /* ACABARAM AS OPÇÕES*/
};
char *MenuFornecedor[]={
"1. Inserir fornecedor",
"2. Alterar fornecedor",
"3. Apagar fornecedor",
"4. Listar fornecedor",
"5. Voltar",
"0. Sair",
NULL /* ACABARAM AS OPÇÕES*/
};
char *MenuVendas[]={
"1. Gerar nova venda",
"2. Listar vendas",
"3. Fazer cancelamento de venda",
"4. Voltar",
"0. Sair",
NULL /* ACABARAM AS OPÇÕES*/
};
char *MenuOpcoes[]={
"1. Sobre",
"2. Manual",
"3. Voltar",
NULL /* ACABARAM AS OPÇÕES*/
};
char *MenuGastos[]={
"1. Inserir Gastos",
"2. Alterar Gastos",
"3. Apagar Gastos",
"4. Consultar Gastos",
"5. Voltar",
NULL
};
char *MenuGastosUnidade[]={
"1. Unidade 1",
"2. Unidade 2",
"3. Unidade 3",
"4. Voltar",
NULL
};
char *MenuRelatorios[]={
"1. Sabores mais vendidos por unidade",
"2. Faturamento mensal",
"3. Faturamento total",
"4. Voltar",
"0. Sair",
NULL /* ACABARAM AS OPÇÕES*/
};
typedef struct Produto{
char nomeProduto[30];
int quantidadeProduto;
float valorPromocaoProduto, valorVendaProduto, valorCustoProduto;
char status; /* '*' indica que o produto está apagado*/
}Produto;
typedef struct Cliente{
char nomeCliente[50],cpfCliente[14], rgCliente[12], celularCliente[14], emailCliente[50], enderecoCliente[100], observacaoCliente[1000];
char status; /* '*' indica que o produto está apagado*/
}Cliente;
typedef struct Funcionario{
float salarioFuncionario;
char cpfFuncionario[14], rgFuncionario[12], celularFuncionario[13], emailFuncionario[100], enderecoFuncionario[100], nomeFuncionario[100];
char status; /* '*' indica que o produto está apagado*/
}Funcionario;
typedef struct Fornecedor{
char nomeFornecedor[50],cnpjFornecedor[14], rgFornecedor[12], celularFornecedor[14], emailFornecedor[50], enderecoFornecedor[100], observacaoFornecedor[1000];
char status; /* '*' indica que o produto está apagado*/
}Fornecedor;
typedef struct Gastos{
char tipo[50];
int unidadeGasto;
float valorGasto;
char status; /* '*' indica que o produto está apagado*/
}Gastos;
typedef struct Venda{
char nomeCliente[30], nomeProduto[30];
int quantidadeProduto;
float valorUnitarioProduto, total;
char status; /* '*' indica que o produto está apagado*/
}Venda;
FILE *fp; /*variável global pois é útil ao longo do programa*/
/*Variáveis para trabalhar com vendas*/
Produto ProdutoVendido;
Cliente ClienteEscolhido;
int quantidade;
long int idProdutoVenda;
float total;
/* lê os valores inseridos pelo usuário*/
void Ler_Gastos(Gastos *g){
int opcaoDigitada=0;
do{
system("cls");
printf("Escolha uma unidade para inserir o gasto: \n\n 1- Unidade 1 \n 2- Unidade 2 \n 3- Unidade 3 \n");
printf ("\n Escolha a opção (1,2,3): ");
scanf("%d",&g->unidadeGasto);
}while((g->unidadeGasto< 1) || (g->unidadeGasto > 3));
system("cls");
printf("Digite o valor dos gastos: ");
scanf("%f",&g->valorGasto);
system("cls");
fflush(stdin);
printf("Digite o tipo de gasto: ");
gets(g->tipo);
system("cls");
fflush(stdin);
}
void Ler_Produto(Produto *p){
int opcaoDigitada = 0;
printf("Digite o nome do produto: ");
gets(p->nomeProduto);
system("cls");
printf("Digite a quantidade: ");
scanf("%d",&p->quantidadeProduto);
system("cls");
printf("Digite o valor de custo: ");
scanf("%f",&p->valorCustoProduto);
system("cls");
printf("Digite o valor de venda: ");
scanf("%f",&p->valorVendaProduto);
system("cls");
printf("Digite o valor de promoção (Se não houver promoção repita o valor de venda): ");
scanf("%f",&p->valorPromocaoProduto);
system("cls");
p->status = ' ';
fflush(stdin);
}
void Ler_Cliente(Cliente *c){
printf("Digite o nome do cliente: ");
gets(c->nomeCliente);
system("cls");
printf("Digite o CPF do cliente: ");
gets(c->cpfCliente);
system("cls");
printf("Digite o RG do cliente: ");
gets(c->rgCliente);
system("cls");
printf("Digite o celular do cliente: ");
gets(c->celularCliente);
system("cls");
printf("Digite o email do cliente: ");
gets(c->emailCliente);
system("cls");
printf("Digite o endereço do cliente: ");
gets(c->enderecoCliente);
system("cls");
printf("Digite o observação do cliente: ");
gets(c->observacaoCliente);
system("cls");
c->status = ' ';
fflush(stdin);
}
void Ler_Funcionario(Funcionario *f){
printf("Digite o nome do funcionario: ");
gets(f->nomeFuncionario);
system("cls");
printf("Digite o CPF do funcionario: ");
gets(f->cpfFuncionario);
system("cls");
printf("Digite o RG do funcionario: ");
gets(f->rgFuncionario);
system("cls");
printf("Digite o celular do funcionario: ");
gets(f->celularFuncionario);
system("cls");
printf("Digite o email do funcionario: ");
gets(f->emailFuncionario);
system("cls");
printf("Digite o endereço do funcionario: ");
gets(f->enderecoFuncionario);
system("cls");
printf("Digite o salario do funcionario: ");
scanf("%f",&f->salarioFuncionario);
system("cls");
f->status = ' ';
fflush(stdin);
}
void Ler_Fornecedor(Fornecedor *f){
printf("Digite o nome do fornecedor: ");
gets(f->nomeFornecedor);
system("cls");
printf("Digite o CPF/CNPJ do fornecedor: ");
gets(f->cnpjFornecedor);
system("cls");
printf("Digite o RG do fornecedor: ");
gets(f->rgFornecedor);
system("cls");
printf("Digite o celular do fornecedor: ");
gets(f->celularFornecedor);
system("cls");
printf("Digite o email do fornecedor: ");
gets(f->emailFornecedor);
system("cls");
printf("Digite o endereço do fornecedor: ");
gets(f->enderecoFornecedor);
system("cls");
printf("Digite o observação do fornecedor: ");
gets(f->observacaoFornecedor);
system("cls");
f ->status = ' ';
fflush(stdin);
}
void Atribuir_Valores_Venda(Venda *v){
strcpy(v->nomeCliente,ClienteEscolhido.nomeCliente);
strcpy(v->nomeProduto,ProdutoVendido.nomeProduto);
v->quantidadeProduto = quantidade;
v->valorUnitarioProduto = ProdutoVendido.valorPromocaoProduto;
v->total = total;
v->status = ' ';
fflush(stdin);
}
/*Mostra na tela os produtos existentes nos arquivos*/
void Mostrar_Gastos(Gastos g){
printf("Tipo de gasto: %-30s \n",g.tipo);
printf("Valor do gasto: %10.2f\n",g.valorGasto);
printf("=-=-=-=-=-=-=-=\n");
}
void Mostrar_Venda(Venda v){
printf("Cliente: %s \n",v.nomeCliente);
printf("Produto: %s \n",v.nomeProduto);
printf("Valor unitário: %2.f \n",v.valorUnitarioProduto);
printf("Quantidade: %d \n", v.quantidadeProduto);
printf("Total: %2.f\n", v.total);
printf("-=-=-=-=-=-=-=-=-=-=\n");
}
void Mostrar_Produto(Produto p){
printf("Nome: %-30s \n",p.nomeProduto);
printf("Quantidade do produto: %3d \n",p.quantidadeProduto);
printf("Valor de venda: %10.2f\n",p.valorVendaProduto);
printf("Valor de custo: %10.2f\n",p.valorCustoProduto);
printf("Valor de promoção: %10.2f\n",p.valorPromocaoProduto);
printf("=-=-=-=-=-=-=\n");
}
void Mostrar_Cliente(Cliente c){
printf("Nome: %-30s \n",c.nomeCliente);
printf("CPF: %-30s \n",c.cpfCliente);
printf("RG: %-30s \n",c.rgCliente);
printf("Celular: %-30s \n",c.celularCliente);
printf("Email: %-30s \n",c.emailCliente);
printf("Endereço: %-30s \n",c.enderecoCliente);
printf("Observação: %-30s \n",c.observacaoCliente);
printf("=-=-=-=-=-=-=\n");
}
void Mostrar_Funcionario(Funcionario f){
printf("Nome: %-30s \n",f.nomeFuncionario);
printf("CPF: %-30s \n",f.cpfFuncionario);
printf("RG: %-30s \n",f.rgFuncionario);
printf("Celular: %-30s \n",f.celularFuncionario);
printf("Email: %-30s \n",f.emailFuncionario);
printf("Endereço: %-30s \n",f.enderecoFuncionario);
printf("Salário: %10.2f\n",f.salarioFuncionario);
printf("=-=-=-=-=-=-=\n");
}
void Mostrar_Fornecedor(Fornecedor f){
printf("Nome: %-30s \n",f.nomeFornecedor);
printf("CPF/CNPJ: %-30s \n",f.cnpjFornecedor);
printf("RG: %-30s \n",f.rgFornecedor);
printf("Celular: %-30s \n",f.celularFornecedor);
printf("Email: %-30s \n",f.emailFornecedor);
printf("Endereço: %-30s \n",f.enderecoFornecedor);
printf("Observação: %-30s \n",f.observacaoFornecedor);
printf("=-=-=-=-=-=-=\n");
}
/*Adiciona valores ao arquivo*/
void Adiciona_Gasto(Gastos g){
fseek(fp, 0L, SEEK_END);
if(fwrite(&g, sizeof(g), 1, fp)!=1)
printf("Adicionar Gasto: Falhou a escrita de gastos");
}
void Adiciona_Venda(Venda v){
fseek(fp, 0L, SEEK_END);
if(fwrite(&v, sizeof(v), 1, fp)!=1)
printf("Adicionar Venda: Falhou a escrita de venda");
}
void Adiciona_Produto(Produto p){
fseek(fp, 0L, SEEK_END);
if(fwrite(&p, sizeof(p), 1, fp)!=1)
printf("Adicionar Produto: Falhou a escrita do produto");
}
void Adiciona_Cliente(Cliente p){
fseek(fp, 0L, SEEK_END);
if(fwrite(&p, sizeof(p), 1, fp)!=1)
printf("Adicionar Cliente: Falhou a escrita do produto");
}
void Adiciona_Funcionario(Funcionario f){
fseek(fp, 0L, SEEK_END);
if(fwrite(&f, sizeof(f), 1, fp)!=1)
printf("Adicionar funcionario: Falhou a escrita do funcionario");
}
void Adiciona_Fornecedor(Fornecedor f){
fseek(fp, 0L, SEEK_END);
if(fwrite(&f, sizeof(f), 1, fp)!=1)
printf("Adicionar Fornecedor: Falhou a escrita do fornecedor");
}
/*Verificar se o arquivo já existe. Se não existir, ele é criado
se já existir, abre-o em modo de leitura e escrita (r+b)*/
void AbrirArquivoGastos1(){
fp=fopen(ARQUIVO_GASTOS_1,"r+b");
if(fp == NULL){
fp=fopen(ARQUIVO_GASTOS_1,"w+b");
if(fp==NULL){
printf("Erro: Impossível criar arquivo de gastos\n");
exit(1);
}
}
}
void AbrirArquivoGastos2(){
fp=fopen(ARQUIVO_GASTOS_2,"r+b");
if(fp == NULL){
fp=fopen(ARQUIVO_GASTOS_2,"w+b");
if(fp==NULL){
printf("Erro: Impossível criar arquivo de gastos\n");
exit(1);
}
}
}
void AbrirArquivoGastos3(){
fp=fopen(ARQUIVO_GASTOS_3,"r+b");
if(fp == NULL){
fp=fopen(ARQUIVO_GASTOS_3,"w+b");
if(fp==NULL){
printf("Erro: Impossível criar arquivo de gastos\n");
exit(1);
}
}
}
void AbrirArquivoProduto(){
fp= fopen(ARQUIVO_PRODUTO, "r+b"); //tentar abrir
if(fp==NULL){
fp = fopen(ARQUIVO_PRODUTO, "w+b"); // criar o arquivo
if(fp==NULL){
printf("Erro fatal: impossível criar arquivo de produtos\n");
exit(1);
}
}
}
void AbrirArquivoCliente(){
fp= fopen(ARQUIVO_CLIENTE, "r+b"); //tentar abrir
if(fp==NULL){
fp = fopen(ARQUIVO_CLIENTE, "w+b"); // criar o arquivo
if(fp==NULL){
printf("Erro fatal: impossível criar arquivo de clientes\n");
exit(1);
}
}
}
void AbrirArquivoFuncionario(){
fp= fopen(ARQUIVO_FUNCIONARIO, "r+b"); //tentar abrir
if(fp==NULL){
fp = fopen(ARQUIVO_FUNCIONARIO, "w+b"); // criar o arquivo
if(fp==NULL){
printf("Erro fatal: impossível criar arquivo de funcionario\n");
exit(1);
}
}
}
void AbrirArquivoFornecedor(){
fp= fopen(ARQUIVO_FORNECEDOR, "r+b"); //tentar abrir
if(fp==NULL){
fp = fopen(ARQUIVO_FORNECEDOR, "w+b"); // criar o arquivo
if(fp==NULL){
printf("Erro fatal: impossível criar arquivo de fornecedor\n");
exit(1);
}
}
}
void AbrirArquivoVenda1(){
fp= fopen(ARQUIVO_VENDA_1, "r+b"); //tentar abrir
if(fp==NULL){
fp = fopen(ARQUIVO_VENDA_1, "w+b"); // criar o arquivo
if(fp==NULL){
printf("Erro fatal: impossível criar arquivo de venda\n");
exit(1);
}
}
}
void AbrirArquivoVenda2(){
fp= fopen(ARQUIVO_VENDA_2, "r+b"); //tentar abrir
if(fp==NULL){
fp = fopen(ARQUIVO_VENDA_2, "w+b"); // criar o arquivo
if(fp==NULL){
printf("Erro fatal: impossível criar arquivo de venda\n");
exit(1);
}
}
}
void AbrirArquivoVenda3(){
fp= fopen(ARQUIVO_VENDA_3, "r+b"); //tentar abrir
if(fp==NULL){
fp = fopen(ARQUIVO_VENDA_3, "w+b"); // criar o arquivo
if(fp==NULL){
printf("Erro fatal: impossível criar arquivo de venda\n");
exit(1);
}
}
}
/*Exibe a data do dia */
void FuncaoExibirData(){
time_t mytime;
mytime = time(NULL);
struct tm tm = *localtime(&mytime);
printf("Data de hoje: %d/%d/%d\n", tm.tm_mday, tm.tm_mon + 1, tm.tm_year + 1900);
}
/* Faz um menu simples com as opções do vetor de strings.
seleciona a opção, usando o primeiro caracter de cada string.
devolve o primeiro caracter da opção.
*/
char FuncoesMenuPrincipal(char *opcoes[]){
int i;
char ch;
while(1){
FuncaoExibirData();
printf("\n\n\n\n\n");
for(i=0; opcoes[i]!=NULL; i++)
printf("\t\t%s\n\n",opcoes[i]);
printf("\n\n\t\tOpção: ");
ch = getchar(); fflush(stdin);
for(i=0; opcoes[i]!= NULL; i++)
if(opcoes[i][0]==ch)
return ch;
}
}
char FuncoesMenuProduto(char *opcoes[]){
int i;
char ch;
while(1){
FuncaoExibirData();
printf("\n\n\n\n\n");
for(i=0; opcoes[i]!=NULL; i++)
printf("\t\t%s\n\n",opcoes[i]);
printf("\n\n\t\tOpção: ");
ch = getchar(); fflush(stdin);
for(i=0; opcoes[i]!= NULL; i++)
if(opcoes[i][0]==ch)
return ch;
}
}
char FuncoesMenuCliente(char *opcoes[]){
int i;
char ch;
while(1){
FuncaoExibirData();
printf("\n\n\n\n\n");
for(i=0; opcoes[i]!=NULL; i++)
printf("\t\t%s\n\n",opcoes[i]);
printf("\n\n\t\tOpção: ");
ch = getchar(); fflush(stdin);
for(i=0; opcoes[i]!= NULL; i++)
if(opcoes[i][0]==ch)
return ch;
}
}
char FuncoesMenuFornecedor(char *opcoes[]){
int i;
char ch;
while(1){
FuncaoExibirData();
printf("\n\n\n\n\n");
for(i=0; opcoes[i]!=NULL; i++)
printf("\t\t%s\n\n",opcoes[i]);
printf("\n\n\t\tOpção: ");
ch = getchar(); fflush(stdin);
for(i=0; opcoes[i]!= NULL; i++)
if(opcoes[i][0]==ch)
return ch;
}
}
char FuncoesMenuFuncionario(char *opcoes[]){
int i;
char ch;
while(1){
FuncaoExibirData();
printf("\n\n\n\n\n");
for(i=0; opcoes[i]!=NULL; i++)
printf("\t\t%s\n\n",opcoes[i]);
printf("\n\n\t\tOpção: ");
ch = getchar(); fflush(stdin);
for(i=0; opcoes[i]!= NULL; i++)
if(opcoes[i][0]==ch)
return ch;
}
}
char FuncoesMenuCadastro(char *opcoes[]){
int i;
char ch;
while(1){
FuncaoExibirData();
printf("\n\n\n\n\n");
for(i=0; opcoes[i]!=NULL; i++)
printf("\t\t%s\n\n",opcoes[i]);
printf("\n\n\t\tOpção: ");
ch = getchar(); fflush(stdin);
for(i=0; opcoes[i]!= NULL; i++)
if(opcoes[i][0]==ch)
return ch;
}
}
char FuncoesMenuVendas(char *opcoes[]){
int i;
char ch;
while(1){
FuncaoExibirData();
printf("\n\n\n\n\n");
for(i=0; opcoes[i]!=NULL; i++)
printf("\t\t%s\n\n",opcoes[i]);
printf("\n\n\t\tOpção: ");
ch = getchar(); fflush(stdin);
for(i=0; opcoes[i]!= NULL; i++)
if(opcoes[i][0]==ch)
return ch;
}
}
char FuncoesMenuOpcoes(char *opcoes[]){
int i;
char ch;
while(1){
FuncaoExibirData();
printf("\n\n\n\n\n");
for(i=0; opcoes[i]!=NULL; i++)
printf("\t\t%s\n\n",opcoes[i]);
printf("\n\n\t\tOpção: ");
ch = getchar(); fflush(stdin);
for(i=0; opcoes[i]!= NULL; i++)
if(opcoes[i][0]==ch)
return ch;
}
}
char FuncoesMenuGastos(char *opcoes[]){
int i;
char ch;
while(1){
FuncaoExibirData();
printf("\n\n\n\n\n");
for(i=0; opcoes[i]!=NULL; i++)
printf("\t\t%s\n\n",opcoes[i]);
printf("\n\n\t\tOpção: ");
ch = getchar(); fflush(stdin);
for(i=0; opcoes[i]!= NULL; i++)
if(opcoes[i][0]==ch)
return ch;
}
}
char FuncoesMenuRelatorios(char *opcoes[]){
int i;
char ch;
while(1){
FuncaoExibirData();
printf("\n\n\n\n\n");
for(i=0; opcoes[i]!=NULL; i++)
printf("\t\t%s\n\n",opcoes[i]);
printf("\n\n\t\tOpção: ");
ch = getchar(); fflush(stdin);
for(i=0; opcoes[i]!= NULL; i++)
if(opcoes[i][0]==ch)
return ch;
}
}
//Faz o CRUD de produto
void InserirProduto(){
system("cls");
Produto x;
Ler_Produto(&x);
Adiciona_Produto(x);
}
void AlterarProduto(){
system("cls");
Produto x;
long int id;
printf("Qual o numero do produto: ");
scanf("%ld", & id); fflush(stdin);
if(fseek(fp, (id-1)*sizeof(Produto), SEEK_SET)!=0){
printf("produto inexistente!!!");
system("pause");
return;
}
if(fread(&x, sizeof(Produto), 1, fp)!= 1){
printf("Problemas na leitura do produto!!!");
system("pause");
return;
}
if(x.status=='*'){
printf("Um produto apagado não pode ser alterado!!! \n\n");
system("pause");
return;
}
printf("\n\n produtos Atuais \n\n");
Mostrar_Produto(x);
printf("\n\n Novos produtos \n\n");
Ler_Produto(&x);
// recuar um produto no arquivo
fseek(fp, -(long) sizeof(Produto), SEEK_CUR);
// reescrever o produto;
fwrite(&x, sizeof(Produto), 1, fp);
fflush(fp); /*despejar os arquivos no disco rígido*/
printf("\nProduto alterado com sucesso!\n");
system("pause");
}
void ApagarProduto(){
system("cls");
Produto x;
long int id;
char resp;
printf("Qual o numero do produto: ");
scanf("%ld", & id); fflush(stdin);
if(fseek(fp, (id - 1)*sizeof(Produto), SEEK_SET)!= 0){
printf("produto inexistente ou problemas no produto!!!");
system("pause");
return;
}
if(fread(&x, sizeof(Produto), 1, fp)!= 1){
printf("Problema na leitura do produto!!!");
system("pause");
return;
}
if(x.status=='*'){
printf("produto já está apagado!!!\n\n");
return;
system("pause");
}
printf("\n\n produtos atuais \n\n");
Mostrar_Produto(x);
printf("\n\n Apagar o produto (s/n)???: ");
resp = getchar();
fflush(stdin);
if(toupper(resp)!= 'S')
return;
x.status= '*';
// recuar um produto no arquivo
fseek(fp, -(long) sizeof(Produto), SEEK_CUR);
// reescrever o produto;
fwrite(&x, sizeof(Produto), 1, fp);
fflush(fp); /*Despejar os arquivos no disco rígido*/
system("cls");
printf("\nProduto exluido com sucesso!\n");
}
void ListarProduto(){
system("cls");
Produto reg;
rewind(fp);
int cont=0;
while(1){
if(fread(®, sizeof(reg), 1, fp)!= 1){
break; /*Sair do laço*/
}else{
cont=cont+1;
}
if(reg.status=='*'){
continue; /*Passa ao próximo*/
}
printf("ID: %d\n", cont);
Mostrar_Produto(reg);
}
}
//Faz inserção e leitura de venda
void InserirVenda(){
system("cls");
Venda v;
Atribuir_Valores_Venda(&v);
Adiciona_Venda(v);
}
void ListarVenda(){
system("cls");
Venda reg;
rewind(fp);
int cont=0;
while(1){
if(fread(®, sizeof(reg), 1, fp)!= 1){
break; /*Sair do laço*/
}else{
cont=cont+1;
}
if(reg.status=='*'){
continue; /*Passa ao próximo*/
}
printf("ID: %d\n", cont);
Mostrar_Venda(reg);
}
}
void ApagarVenda(){
system("cls");
Venda x;
long int id;
char resp;
printf("Qual o numero da venda: ");
scanf("%ld", & id); fflush(stdin);
if(fseek(fp, (id - 1)*sizeof(Venda), SEEK_SET)!= 0){
printf("Venda inexistente ou problemas na venda!!!");
system("pause");
return;
}
if(fread(&x, sizeof(Venda), 1, fp)!= 1){
printf("Problema na leitura da Venda!!!");
system("pause");
return;
}
if(x.status=='*'){
printf("Venda já está apagada!!!\n\n");
system("pause");
return;
}
printf("\n\n Vendas atuais \n\n");
Mostrar_Venda(x);
printf("\n\n Apagar a venda (s/n)???: "); resp = getchar();
fflush(stdin);
if(toupper(resp)!= 'S')return;
x.status= '*';
// recuar um Venda no arquivo
fseek(fp, -(long) sizeof(Venda), SEEK_CUR);
// reescrever a Venda;
fwrite(&x, sizeof(Venda), 1, fp);
fflush(fp); /*Despejar os arquivos no disco rígido*/
system("cls");
printf("\nVenda exluida com sucesso!\n");
}
//Faz inserção e leitura de gasto
void InserirGasto(){
system("cls");
Gastos g;
Ler_Gastos(&g);
Adiciona_Gasto(g);
}
void AlterarGasto(){
system("cls");
Gastos x;
long int id;
printf("Qual o numero de id do gasto: ");
scanf("%ld", & id); fflush(stdin);
if(fseek(fp, (id-1)*sizeof(Gastos), SEEK_SET)!=0){
printf("Gasto inexistente!!!");
system("pause");
return;
}
if(fread(&x, sizeof(Gastos), 1, fp)!= 1){
printf("Problemas na leitura de Gastos!!!");
system("pause");
return;
}
if(x.status=='*'){
printf("Um gasto apagado não pode ser alterado!!! \n\n");
system("pause");
return;
}
printf("\n\n Gastos Atuais \n\n");
Mostrar_Gastos(x);
printf("\n\n Novos Gastos \n\n");
Ler_Gastos(&x);
// recuar um produto no arquivo
fseek(fp, -(long) sizeof(Gastos), SEEK_CUR);
// reescrever o produto;
fwrite(&x, sizeof(Gastos), 1, fp);
fflush(fp); /*despejar os arquivos no disco rígido*/
printf("\nGasto alterado com sucesso!\n");
system("pause");
}
void ApagarGasto(){
system("cls");
Gastos x;
long int id;
char resp;
printf("Qual o numero do id do gasto: ");
scanf("%ld", & id); fflush(stdin);
if(fseek(fp, (id - 1)*sizeof(Gastos), SEEK_SET)!= 0){