-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
982 lines (818 loc) · 26.6 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
#include <stdio.h>
#include <stdlib.h>
#include<string.h>
#include <math.h>
#include <time.h>
#include<windows.h>
//* structs ***🧑🦰🧑🦰
typedef struct
{
int jour;
int mois;
int annee;
} date;
date getDateToday () {
time_t now = time(NULL);
struct tm *gm_time = localtime(&now);
date today ;
today.jour = gm_time->tm_mday;
today.mois = gm_time->tm_mon+1;
today.annee = gm_time->tm_year+1900;
return today;
}
// Produit struct
typedef struct
{
long long int code;
char nom[20];
float prix;
float prix_ttc;
int quantite;
} Produit;
// acheter struct
typedef struct
{
long long int code_achate;
long long int code_proudit;
date date_achate;
int qt_achate;
} Achat;
Achat ListAchat[1000];
Produit ListProudit[1000];
int lengthListProduit =0;
int lengthListAchat =0;
//dynamic list
Produit* ListProuditdynamic;
int ListProuditdynamicSize =1 ;
void afficheDynamicListProduit();
void AjouterUnProduitDynamic(){
int index = ListProuditdynamicSize-1;
ListProuditdynamic = (Produit *)realloc(ListProuditdynamic, ListProuditdynamicSize++);
Produit pr ;
printf("\n***********Ajouter Produit************** %d\n");
printf("veuillez entrer le code du produit : ");
scanf("%lld",&pr.code );
printf("veuillez entrer le nom du produit : ");
scanf("%s",&pr.nom );
printf("veuillez entrer le prix du produit : ");
scanf("%f",&pr.prix );
pr.prix_ttc = pr.prix +pr.prix*15/100;
printf("veuillez entrer le quantite du produit : ");
scanf("%d",&pr.quantite );
printf("\n***********@bien Ajouter@************** %d\n");
printf("\n");
ListProuditdynamic[index] = pr;
printf(" index =>%d, code : %lld nom : %s prix : %f quantite : %d",index,
ListProuditdynamic[index].code,ListProuditdynamic[index].nom,ListProuditdynamic[index].prix,ListProuditdynamic[index].quantite);
// ListProuditdynamicSize++;
afficheDynamicListProduit();
}
void afficheDynamicListProduit()
{
for (int i = 0; i < ListProuditdynamicSize; i++)
{
printf("les information =>%lld , %s , %f , %f , %d \n",ListProuditdynamic[i].code,
ListProuditdynamic[i].nom,ListProuditdynamic[i].prix ,ListProuditdynamic[i].prix_ttc,ListProuditdynamic[i].quantite);
}
}
typedef struct
{
char *cin;
char *nom;
char *prenom;
} client;
int main();
//* global varibales 🧾🧾
//! arrays
//! enums and ints
enum sort {ascending , descending};
void saveDataToFileProduit(){
FILE* fProduittr;
fProduittr = fopen("produits","w");
//* if the file doesn't exist"s it will be created
for (int i = 0; i <lengthListProduit ; i++)
{
fprintf(fProduittr,"%lld %s %f %f %d \n",ListProudit[i].code,ListProudit[i].nom,ListProudit[i].prix
,ListProudit[i].prix_ttc,ListProudit[i].quantite);
}
fclose(fProduittr);
}
void saveDataToFileAchate(){
FILE* fAchate;
fAchate = fopen("achates","w");
//* if the file doesn't exist"s it will be created
for (int i = 0; i <lengthListAchat ; i++)
{
fprintf(fAchate,"%lld %lld %d%d%d %d \n",ListAchat[i].code_achate,ListAchat[i].code_proudit,ListAchat[i].date_achate.jour
,ListAchat[i].date_achate.mois,ListAchat[i].date_achate.annee,ListAchat[i].qt_achate);
}
fclose(fAchate);
}
void loadDataFromFileProduit(FILE *f)
{
Produit p ;
int index =0;
while (fscanf(f,"%lld%s%f%f%d",&p.code,p.nom,&p.prix,&p.prix_ttc,&p.quantite) != EOF)
{
ListProudit[index] = p ;
index++;
}
lengthListProduit = index;
}
void loadDataFromFileAchat(FILE *f)
{
Achat a ;
int index =0;
while (fscanf(f,"%lld%lld%d%d%d%d",&a.code_achate,&a.code_proudit,&a.date_achate.jour,&a.date_achate.mois,&a.date_achate.annee,&a.qt_achate) != EOF)
{
ListAchat[index] = a ;
index++;
}
lengthListAchat = index;
}
//random Data
void listProduitdeTest(){
lengthListProduit =20;
Produit c1 = {6118000060154 ,"GLUCOR",200,230,20};
Produit c2 = {6118000241324 ,"REVOCIR",100,115,10};
Produit c3 = {6118000070573 ,"LISASPIN",140,230,20};
Produit c4 = {6118000061106 ,"ASPEGIC_ENF",200,340,4};
Produit c5 = {6118000060857 ,"SURGAM",20,25,10};
Produit c6 = {6118000061243 ,"EXACYL",10,12,50};
Produit c7 = {6118001141357 ,"ZENTEL",340.34,365.,11};
Produit c8 = {6118000022251 ,"ZYLORIC",30,33,1};
Produit c9 = {6118001081288 ,"XATRAL",222,250,2};
Produit c10 ={6118001182657 ,"AMIKLIN",230,280,2};
Produit c11 ={6118000071136 ,"DIPICOR",123,140,100};
Produit c12 ={6118000180043 ,"AMODEX",222,234,45};
Produit c13 ={6118000030102 ,"AXIMYCINE",33,44,7};
Produit c14 ={6118000161059 ,"CLAMOXYL",44,50,23};
Produit c15 ={6118000161189 ,"PENAMOX",23,44,4};
Produit c16 ={6118000160038 ,"AMOXIL",44,66,11};
Produit c17 ={6118000160359 ,"CLAMOXYL",66,88,99};
Produit c18 ={6118000160724 ,"PENAMOX",210,230,30};
Produit c19 ={6118000031161 ,"AXIMYCINE",122,255,37};
Produit c20 ={6118001200818 ,"FUCITHALMIC",140,160,55};
ListProudit[0] = c1;
ListProudit[1] = c2;
ListProudit[2] = c3;
ListProudit[3] = c4;
ListProudit[4] = c5;
ListProudit[5] = c6;
ListProudit[6] = c7;
ListProudit[7] = c8;
ListProudit[8] = c9;
ListProudit[9] = c10;
ListProudit[10] = c11;
ListProudit[11] = c12;
ListProudit[12] = c13;
ListProudit[13] = c14;
ListProudit[14] = c15;
ListProudit[15] = c16;
ListProudit[16] = c17;
ListProudit[17] = c18;
ListProudit[18] = c19;
ListProudit[19] = c20;
};
void listAchatDeTest(){
lengthListAchat =9;
date d1 = {17,9,2022};
date d2 = {17,9,2022};
date d3 = {17,9,2022};
date d4 = {17,9,2022};
date d5 = {17,9,2022};
date d6 = {17,9,2022};
date todayMe= getDateToday();
Achat a1 = {1,6118000061106,d1,5};
Achat a2 = {2,6118000180043,d2,3};
Achat a3 = {3,6118000031161,d3,2};
Achat a4 = {4,6118000061106,todayMe,4};
Achat a5 = {5,6118000180043,todayMe,1};
Achat a6 = {6,6118000160038,todayMe,4};
Achat a7 = {7,6118000060154,d6,2};
Achat a8 = {8,6118000241324,d5,1};
Achat a9 ={9,6118001200818,todayMe,3};
ListAchat[0]=a1;
ListAchat[1]=a2;
ListAchat[2]=a3;
ListAchat[3]=a4;
ListAchat[4]=a5;
ListAchat[5]=a6;
ListAchat[6]=a7;
ListAchat[7]=a8;
ListAchat[8]=a9;
// ListAchat[9]=a10;
}
//constants
// ** function Produits
void AfficheUnProduit(long long int codePr){
int found =0;
int posOfTheProudit=-1;
for (int i = 0; i < 20 ; i++)
{
if (ListProudit[i].code==codePr)
{
found = 1;
posOfTheProudit =i;
break;
}
}
if(found==1){
printf("code :%lld || nom : %s || prix : %.2f || prix ttc : %.2f || quantite : %d \n",ListProudit[posOfTheProudit].code,ListProudit[posOfTheProudit].nom,ListProudit[posOfTheProudit].prix,ListProudit[posOfTheProudit].prix_ttc,ListProudit[posOfTheProudit].quantite);
}
else{
printf("the proudct is not exits");
}
}
void AfficheProduitDansPosition(int posOfTheProudit){
printf("code :%lld || nom : %s || prix : %.2f || prix ttc : %.2f || quantite : %d \n",ListProudit[posOfTheProudit].code,ListProudit[posOfTheProudit].nom,ListProudit[posOfTheProudit].prix,ListProudit[posOfTheProudit].prix_ttc,ListProudit[posOfTheProudit].quantite);
}
long long int RechercheUnProduit(long long int codePr){
int found =0;
int posOfTheProudit=-1;
for (int i = 0; i < 20 ; i++)
{
if (ListProudit[i].code==codePr)
{
found = 1;
return posOfTheProudit =i;
break;
}
}
return 0;
}
int RechercheUnProduitPos(long long int codePr){
int posOfTheProudit=-1;
for (int i = 0; i < 20 ; i++)
{
if (ListProudit[i].code==codePr)
{
return posOfTheProudit =i;
break;
}
}
return posOfTheProudit;
}
void Alimenterlestock(){
long long int code ;
int quantite;
printf("\t\t Alimenter le stock");
printf("svp introduit le code produit :");
scanf("%lld",&code);
printf("svp introduit le code quantite à ajouter :");
scanf("%d",&quantite);
int posOfThePr= RechercheUnProduit(code);
ListProudit[posOfThePr].quantite =ListProudit[posOfThePr].quantite+quantite;
if (posOfThePr==-1)
{
printf("Produit is not exit ");
}else{
AfficheProduitDansPosition(posOfThePr);
}
}
void AfficheToutLesProduit(){
printf("-------------------------- list des proudit ---------------------------- \n");
for (int i = 0; i < lengthListProduit; i++)
{
printf(" code :%lld || nom : %s || prix : %.2f || prix ttc : %.2f || quantite : %d \n",ListProudit[i].code,ListProudit[i].nom,ListProudit[i].prix,ListProudit[i].prix_ttc,ListProudit[i].quantite);
}
printf("--------------------------------------------------------\n");
}
//affiche Tout les Poudit As table
void AfficheToutLesProduitAsTable(){
printf("code \t\t nom \t\t prix \t\t\t prix ttc quantite\n");
printf("-------------------------------------------------------------------------------\n");
for (int i = 0; i < lengthListProduit; i++)
{
printf("%lld \t %s \t %.2f DH \t\t %.2f DH %d\n",ListProudit[i].code,ListProudit[i].nom,ListProudit[i].prix,ListProudit[i].prix_ttc,ListProudit[i].quantite);
printf("----------------------------------------------------------------------------\n");
}
}
void AfficheToutLesAchatAsTable(){
printf("code achate \t\t code produit \t\t date achate \t\t\t quantite\n");
printf("-------------------------------------------------------------------\n");
for (int i = 0; i < lengthListAchat; i++)
{
printf("%lld \t %lld \t %d/%d/%d \t\t %d \n",ListAchat[i].code_achate,ListAchat[i].code_proudit,ListAchat[i].date_achate.jour,ListAchat[i].date_achate.mois
,ListAchat[i].date_achate.annee,ListAchat[i].qt_achate);
printf("-------------------------------------------------------------------\n");
}
}
void supprimerUnProduit(){
long long int code ;
printf("\t\t Supprimer un produits \n");
printf("svp introduit le code produit :");
scanf("%lld",&code);
int posCodePrSupprimer = RechercheUnProduitPos(code);
if(posCodePrSupprimer==-1)
{
printf("ce produit n'existe pas");
}
for (int i = posCodePrSupprimer; i < lengthListProduit; i++)
{
ListProudit[i] = ListProudit[i+1];
lengthListProduit--;
printf("bien Supprimer %s",ListProudit[i].nom);
}
}
//account sort function
void triProduitParPrix(){
int posmin = 0;
Produit temp ;
for (int j = 0; j < lengthListProduit; j++)
{
for (int i = 1; i < lengthListProduit; i++)
{
if (ListProudit[i].prix>ListProudit[i-1].prix)
{
temp = ListProudit[i];
ListProudit[i] = ListProudit[i-1];
ListProudit[i-1] = temp;
}
}
}
}
void triParOrderAphabetiqueCroissant(){
char C;
int counter =0;
Produit temp;
for (C = 'A'; C <= 'Z'; ++C)
{
for (int i = 0; i < 20; i++)
{
char cc = C;
char firstword =ListProudit[i].nom[0];
if (cc==firstword )
{
temp = ListProudit[i];
ListProudit[i] = ListProudit[counter];
ListProudit[counter] = temp;
counter++;
}
}
}
for (C = 'a'; C <= 'z'; ++C)
{
for (int i = 0; i < 20; i++)
{
char cc = C;
char firstword =ListProudit[i].nom[0];
if (cc==firstword )
{
temp = ListProudit[i];
ListProudit[i] = ListProudit[counter];
ListProudit[counter] = temp;
counter++;
}
}
}
}
//menu
void minMax(){
float max_prix = ListProudit[0].prix;
int max_pos =0;
float min_prix = ListProudit[0].prix;
int min_pos =0;
for (int i = 0; i < 20; i++)
{
if (min_prix>ListProudit[i].prix)
{
min_prix = ListProudit[i].prix;
min_pos = i;
}
if (max_prix<ListProudit[i].prix)
{
max_prix = ListProudit[i].prix;
max_pos = i;
}
}
printf("max prix est %s =>%.2f DH \n",ListProudit[max_pos].nom,max_prix);
printf("min prix est %s =>%.2f DH \n ",ListProudit[min_pos].nom,min_prix);
}
// Etat du stock: permet d’afficher les produits dont la quantité est inférieure à 3.
void etatStock(int infarieureA){
for (int i = 0; i < 20; i++)
{
if(ListProudit[i].quantite<infarieureA){
AfficheProduitDansPosition(i);
}
}
}
void AjouterProduit(int NbrProduit){
Produit pr ;
int c = 0;
for (int i = 0; i < NbrProduit; i++)
{
printf("***********Ajouter Produit************** %d\n", i+1);
printf("veuillez entrer le code du produit : ");
scanf("%lld",&pr.code );
int pos = RechercheUnProduitPos(pr.code);
if (pos==-1)
{
printf("veuillez entrer le nom du produit : ");
scanf("%s",&pr.nom );
printf("veuillez entrer le prix du produit : ");
scanf("%f",&pr.prix );
pr.prix_ttc = pr.prix +pr.prix*15/100;
printf("veuillez entrer le quantite du produit : ");
scanf("%d",&pr.quantite );
printf("bien Ajouter \n");
printf("\n");
ListProudit[lengthListProduit] = pr;
AfficheProduitDansPosition(lengthListProduit);
lengthListProduit ++;
}else
{
printf("produit deja exsit\n");
}
}
printf("\n");
while (c != 10)
{
printf("==");
c++;
Sleep(500);
}
// main();
}
int menu(){
int nbr ;
printf("\n");
printf("\t\t\t ==========================\n");
printf("\t\t\t Gestion de Pharmacie \n");
printf("\t\t\t ==========================\n");
printf("\n");
printf("\t\t\t1-Ajouter un nouveau produit.\n\n");
Sleep(100);
printf("\t\t\t2-Ajouter plusieurs nouveaux produits.\n\n");
Sleep(100);
printf("\t\t\t3-Lister tous les produits.\n\n");
Sleep(100);
printf("\t\t\t4-Acheter produits.\n\n");
Sleep(100);
printf("\t\t\t5-Recherche les produits.\n\n");
Sleep(100);
printf("\t\t\t6-Etat du stock.\n\n");
Sleep(100);
printf("\t\t\t7-Alimenter le stock.\n\n");
Sleep(100);
printf("\t\t\t8-Supprimer les produits par code.\n\n");
Sleep(100);
printf("\t\t\t9-Stasitique de vente.\n\n");
Sleep(100);
printf("\t\t\t10-Exit.\n\n");
Sleep(100);
printf("\t\t\t11-Bouns.\n\n");
Sleep(100);
printf("\t\t\tchoisi une service: ");
Sleep(100);
scanf(" %d",&nbr);
system("cls");
return nbr;
}
//function for back to the main page
void backTomenu(){
printf("\n");
char re;
printf("return y/n :");
scanf(" %c",&re);
printf("\n %c",re);
if (re=='y')
{
system("cls");
main();
}
}
void printAchat();
void Bouns();
void totalprixJourneeCourante()
{
float totalprix=0;
for (int i = 0; i < lengthListAchat; i++)
{
for (int j = 0; j < lengthListProduit; j++)
{
if (ListProudit[j].code== ListAchat[i].code_proudit && getDateToday().jour == ListAchat[i].date_achate.jour
&& getDateToday().mois == ListAchat[i].date_achate.mois && getDateToday().annee == ListAchat[i].date_achate.annee )
{
totalprix += ListProudit[j].prix_ttc*ListAchat[i].qt_achate;
}
}
}
printf("total prix pour c'est jour %d/%d/%d est %.2f DH \n",getDateToday().jour,getDateToday().mois,getDateToday().annee,totalprix);
}
void moyenneprixJourneeCourante()
{
float totalprix=0;
int count_produit =0 ;
printf("\n");
printf("%d \n",count_produit);
for (int i = 0; i < lengthListAchat; i++)
{
for (int j = 0; j < lengthListProduit; j++)
{
if (ListProudit[j].code== ListAchat[i].code_proudit && getDateToday().jour == ListAchat[i].date_achate.jour
&& getDateToday().mois == ListAchat[i].date_achate.mois && getDateToday().annee == ListAchat[i].date_achate.annee )
{
totalprix += ListProudit[j].prix_ttc*ListAchat[i].qt_achate;
count_produit += ListAchat[i].qt_achate;
}
}
}
printf("total = %f \n",totalprix);
printf("count produit = %d \n",count_produit);
float avg = totalprix/count_produit;
printf("moynne prix pour c'est jour %d/%d/%d est %.2f DH \n",getDateToday().jour,getDateToday().mois,getDateToday().annee,avg);
printf("vous avez vendu cette quantite de produits %d \n",count_produit);
}
Produit MinMaxProduit(int minOrMax)
{
Produit maxProduit=ListProudit[0];
Produit minProduit =ListProudit[0];
int count_produit =0 ;
for (int i = 0; i < lengthListAchat; i++)
{
for (int j = 0; j < lengthListProduit; j++)
{
if (ListProudit[j].code== ListAchat[i].code_proudit && getDateToday().jour == ListAchat[i].date_achate.jour
&& getDateToday().mois == ListAchat[i].date_achate.mois && getDateToday().annee == ListAchat[i].date_achate.annee )
{
if(maxProduit.prix_ttc<ListProudit[j].prix_ttc){
maxProduit = ListProudit[j];
}
if(minProduit.prix_ttc>ListProudit[j].prix_ttc){
minProduit = ListProudit[j];
}
}
}
}
if (minOrMax ==0 )
{
return minProduit;
}
else{
return maxProduit;
}
}
void printAchat(){
for (int i = 0; i < 10; i++)
{
printf("%lld =>%lld=> %d/%d/%d => %d \n",ListAchat[i].code_achate,ListAchat[i].code_proudit,ListAchat[i].date_achate.jour
,ListAchat[i].date_achate.mois,ListAchat[i].date_achate.annee,ListAchat[i].qt_achate);
}
}
void Statistiquedevente(){
printf("\t\t -1 Afficher le total des prix des produits vendus en journee courante \n");
printf("\t\t -2 Afficher la moyenne des prix des produits vendus en journee courante \n");
printf("\t\t -3 Afficher le Min des prix des produits vendus en journee courante \n");
printf("\t\t -4 Afficher le Max des prix des produits vendus en journee courante \n");
printf("\t\t 5- affiche tout les produit vende en jounne courante\n");
Produit minProduit = MinMaxProduit(0);
Produit maxProduit = MinMaxProduit(1);
int choix ;
printf("chosier un choix");
scanf("%d",&choix);
switch (choix)
{
case 1:
// minMax();
totalprixJourneeCourante();
backTomenu();
break;
case 2 :
moyenneprixJourneeCourante();
backTomenu();
case 3:
// minMax();
printf("\t Min des prix des produits %lld vendus en journee courante %s => prix est %.2f",minProduit.code,minProduit.nom,minProduit.prix_ttc);
backTomenu();
break;
case 4 :
printf("\t Max des prix des produits %lld vendus en journee courante %s => prix est %.2f",maxProduit.code,maxProduit.nom,maxProduit.prix_ttc);
backTomenu();
break;
case 5 :
AfficheToutLesAchatAsTable();
backTomenu();
default:
break;
}
}
void tiket(Achat achatProudit,Produit pr);
void Acheterproduit(){
int r = rand();
time_t now = time(NULL);
struct tm *gm_time = localtime(&now);
long long int codeachat = gm_time->tm_hour+gm_time->tm_sec+gm_time->tm_mday+r;
Achat achterpr ;
achterpr.code_achate =codeachat;
printf("svp entre le code de produit vender ");
scanf("%lld",&achterpr.code_proudit);
long long int posoftheProudct = RechercheUnProduitPos(achterpr.code_proudit);
if (posoftheProudct==-1)
{
printf("ce produit il n'existe pas");
}
else
{
achterpr.date_achate =getDateToday();
printf("svp introduit le code produit et la quantite a deduire");
scanf("%d",&achterpr.qt_achate);
if (ListProudit[posoftheProudct].quantite<achterpr.qt_achate)
{
printf("il n'y a pas assez de produits pour vous reste de stock(%d)",ListProudit[posoftheProudct].quantite);
}
else{
printf("ListProudit[posoftheProudct].quantite= %d\n",ListProudit[posoftheProudct].quantite);
ListProudit[posoftheProudct].quantite =ListProudit[posoftheProudct].quantite-achterpr.qt_achate;
printf("ListProudit[posoftheProudct].quantite = %d\n",ListProudit[posoftheProudct].quantite);
ListAchat[lengthListAchat] = achterpr;
lengthListAchat++;
tiket(achterpr,ListProudit[posoftheProudct]);
}
}
}
void tiket(Achat achatProudit,Produit pr){
printf("Tiket ");
printf("\n");
printf("=============================================");
printf("\n");
printf("code d'achat : %lld\n",achatProudit.code_achate);
printf("code d produit achate : %lld\n",achatProudit.code_proudit);
printf("date : %d/%d/%d\n",achatProudit.date_achate.jour,achatProudit.date_achate.mois,achatProudit.date_achate.annee);
printf("quantite x %d \n",achatProudit.qt_achate);
float total = pr.prix_ttc*achatProudit.qt_achate;
printf("total prix :%f ",total);
printf("\n");
printf("=============================================");
printf("\n");
}
void rechecheParQuantite(){
printf(" donner les Quantite svp : ");
int qtttn ;
scanf("%d",&qtttn);
for (int i = 0; i < lengthListProduit; i++)
{
if (ListProudit[i].quantite==qtttn)
{
AfficheUnProduit(ListProudit[i].code);
}
}
};
void RechercherlesproduitsPar(){
printf("\t\t 1-par code \n");
printf("\t\t 2-par Quantite \n");
int choix;
scanf("%d",&choix);
switch (choix)
{
case 1:
printf("Recherche les produits donner les number svp : ");
long long int codePr ;
scanf("%lld",&codePr);
AfficheUnProduit(codePr);
break;
case 2:
rechecheParQuantite();
default:
break;
}
};
//****** main function 🎁🎁
int main(){
ListProuditdynamic =
(Produit*)malloc(ListProuditdynamicSize*sizeof(Produit));
int nbr = menu();
switch (nbr)
{
case 1:
AjouterProduit(1);
backTomenu();
break;
case 2:
printf("Entre les number de produit ");
int nbrPr ;
scanf("%d",&nbrPr);
AjouterProduit(nbr);
backTomenu();
break;
case 3:
printf("\t\t 1-lister tous les produits selon lordre alphabetique croissant du nom \n");
printf("\t\t 2-lister tous les produits selon lordre decroissant du prix. \n");
printf("\t\t 3-retour au menu \n");
int choixlister ;
printf("\t\t");
scanf("%d",&choixlister);
if (choixlister==1)
{
triParOrderAphabetiqueCroissant();
AfficheToutLesProduitAsTable();
backTomenu();
}
else if (choixlister==2)
{
triProduitParPrix();
AfficheToutLesProduitAsTable();
backTomenu();
}
else{
system("cls");
main();
}
//case break
break;
case 4:
printf("\t\t Acheter produit \n");
Acheterproduit();
backTomenu();
break;
case 5:
RechercherlesproduitsPar();
backTomenu();
break;
case 6:
etatStock(3);
backTomenu();
break;
case 7:
Alimenterlestock();
backTomenu();
break;
case 8:
supprimerUnProduit();
backTomenu();
break;
case 9:
// 9-Stasitique de vente
Statistiquedevente();
backTomenu();
break;
case 10:
saveDataToFileAchate();
saveDataToFileProduit();
exit(0);
break;
case 11 :
Bouns();
backTomenu();
default:
printf("entrer correct choix.");
break;
}
}
void Bouns(){
//start the projet
FILE* fProduittr;
FILE* fAchat;
//modes :r=> read
fProduittr = fopen("produits","r");
fAchat = fopen("achates","r");
int nbr ;
printf("\t\t\t 1-random Data (list Produit de Test).\n\n");
// Sleep(200);
printf("\t\t\t 2-random Data. (list Achat De Test)\n\n");
printf("\t\t\t 3-Ajouter a dynamic array.\n\n");
printf("\t\t\t 4-Affiche a dynamic array.\n\n");
printf("\t\t\t 5-Enregistrer dans un fichier.\n\n");
printf("\t\t\t 6-charger les donnees des fichiers.\n\n");
// Sleep(200);
printf("\t\t\tchoisi une service: ");
scanf("%d",&nbr);
switch (nbr)
{
case 1:
listProduitdeTest();
backTomenu();
break;
case 2:
listAchatDeTest();
printAchat();
backTomenu();
break;
case 3:
printf("entre le number de produit cree");
int numberPr ;
scanf("%d",&numberPr);
for (int i = 0; i < numberPr; i++)
{
AjouterUnProduitDynamic();
}
main();
break;
case 4 :
afficheDynamicListProduit();
backTomenu();
break;
case 5 :
saveDataToFileProduit();
saveDataToFileAchate();
break;
case 6 :
loadDataFromFileProduit(fProduittr);
loadDataFromFileAchat(fAchat);
default:
backTomenu();
break;
}
system("cls");
}