-
Notifications
You must be signed in to change notification settings - Fork 8
/
finalProject.c
577 lines (543 loc) · 15.7 KB
/
finalProject.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
// This program only run on gcc compiler.
/*
Departmental store management system to insert, display, delete,update and sale product
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define USERNAME "admin"
#define PASSWORD "admin123"
#define MAX 20
typedef struct items
{
char product_code[MAX];
char product_name[MAX];
int rate;
int quantity;
float weight;
char description[30];
} ITEM;
ITEM item;
// function to check if the given product code is available
int isCodeAvailable(char code[])
{
FILE *file;
file = fopen("Record.txt", "r");
while (!feof(file))
{
fread(&item, sizeof(item), 1, file);
if (strcmp(code, item.product_code) == 0)
{
fclose(file);
return 1;
}
}
fclose(file);
return 0;
}
// Function to check the quentity during the sale product.
int isProductAvailable(int quantity)
{
FILE *file;
file = fopen("Record.txt", "r");
while (!feof(file))
{
fread(&item, sizeof(item), 1, file);
if (item.quantity >= quantity)
{
fclose(file);
return 1;
}
}
fclose(file);
return 0;
}
// function to check the choice is integer or not
int get_int(int input)
{
char ch;
while (scanf("%d", &input) != 1)
{
while ((ch = getchar()) != '\n')
{
}
// system("clear");
printf("\033[1;31m");
printf("\n\v\t\t\t\t\t\tMust be positive integer.\n");
printf("\033[0m");
printf("\t\t\t\t\tEnter Positive integer value, such as 1,2,3,4: ");
}
return input;
}
int check_rate()
{
int input;
char ch;
while (scanf("%d", &input) != 1)
{
while ((ch = getchar()) != '\n')
{
}
// system("clear");
printf("\033[1;31m");
printf("\n\v\t\t\t\t\t\tRate be positive Integer.\n");
printf("\033[0m");
printf("\t\t\t\t\tEnter rate of the product in positive integer: ");
}
return input;
}
//function to insert the product to the file.
void addProduct()
{
printf("\v\v\t\t\t\t\t\t\tAdd Product\n");
printf("\t\t\t\t\t\t************************\n");
FILE *file;
char code[MAX];
char x[4] = {0};
int a;
file = fopen("Record.txt", "ab");
printf("\n\t\t\t\t\tEnter the \" end \" to exit for here");
printf("\n\t\t\t\t\tEnter Product code: ");
scanf("%s", code);
// scanf("%s", x);
if (strcmp(code, "end") == 0)
{
system("clear");
options();
}
int available;
available = isCodeAvailable(code); // return 1 if code id found and return 0 if the code is not available.
if (available == 1)
{
system("clear");
printf("\033[1;31m");
printf("\n\v\t\t\t\t\t\t* Product is already there.\n");
printf("\033[0m");
options();
}
strcpy(item.product_code, code); // copy the code to the structure item
// fflush(stdin);
// printf("%s", item.product_code);
// printf("%s", code);
printf("\t\t\t\t\tEnter Product Name: ");
scanf("%s", item.product_name);
printf("\n\t\t\t\t\tEnter Product Rate: ");
a = check_rate();
item.rate = a;
printf("\n\t\t\t\t\tEnter Quantity: ");
scanf("%d", &item.quantity);
printf("\n\t\t\t\t\tEnter product Weight(in gram): ");
scanf("%f", &item.weight);
printf("\n\t\t\t\t\tEnter product descriptions: ");
scanf(" %s", item.description);
// writing structure to a file
fwrite(&item, sizeof(item), 1, file);
fclose(file);
} // End of addproduct function
void display()
{
printf("\v\v\t\t\t\t\t\t\tAvailable Products\n");
printf("\t\t\t\t\t\t***************************\n");
FILE *file;
int count = 0;
file = fopen("Record.txt", "rb");
printf("\t\t\t------------------------------------------------------------------------------------------------------\n");
printf("\t\t\tCODE\t||\tNAME\t||\tRATE\t||\tQUANTITY\t||\tWEIGHT\t||\tDESCRIPTION\n");
printf("\t\t\t------------------------------------------------------------------------------------------------------\n");
if (file == NULL)
{
printf("\t\t\t\tNo Product is inserted.");
options();
}
while (fread(&item, sizeof(item), 1, file))
{
printf("\t\t\t%s\t||\t%s\t||\t%d\t||\t %d\t\t||\t%.2f\t||\t%s \n", item.product_code, item.product_name, item.rate, item.quantity, item.weight, item.description);
count++;
}
printf("\t\t\t------------------------------------------------------------------------------------------------------\n");
if (count == 0)
{
system("clear");
printf("\033[1;31m");
printf("\n\v\t\t\t\t\t\t* Product is not available.\n");
printf("\033[0m");
}
fclose(file);
} // End of display functions
void close_app()
{
char choice;
printf("\n Do you want to close the applications?(Y/y)");
scanf("%s", &choice);
if (choice == 'Y' || choice == 'y')
{
exit(0);
}
}
// search function start
void search()
{
FILE *file;
char code[MAX], product[MAX];
int available;
// if (file == NULL)
// {
// printf("\t\t\t\tNo Product is inserted.");
// options();
// }
printf("\v\t\t\t\t\tEnter \"end\" for back to menu.\n");
printf("\v\t\t\t\t\tEnter the Product code to search: ");
scanf("%s", code);
if (strcmp(code, "end") == 0)
{
system("clear");
options();
}
system("clear");
printf("\v\v\t\t\t\t\t\tProduct information\n");
printf("\t\t\t\t\t\t**********************\n");
available = isCodeAvailable(code);
if (available == 0)
{
system("clear");
system("clear");
printf("\033[1;31m");
printf("\n\t\t\t\t\t\tProduct code is not found.\n");
printf("\033[0m");
}
else
{
file = fopen("Record.txt", "rb");
while (fread(&item, sizeof(item), 1, file))
{
strcpy(product, item.product_code);
if (strcmp(product, code) == 0)
{
printf("\n\t\t\t\t\t\tProduct Code: %s", item.product_code);
printf("\n\t\t\t\t\t\tName of Product: %s", item.product_name);
printf("\n\t\t\t\t\t\tRate of Product(RS): %d", item.rate);
printf("\n\t\t\t\t\t\tProduct Weight: %.2f", item.weight);
printf("\n\t\t\t\t\t\tProduct Description: %s\n", item.description);
}
}
fclose(file);
}
} // end of the search function
// Delete function start
void deleteRecord()
{
// printf("\v\v\t\t\t\t\t\t\tDelete Product\n");
// printf("\t\t\t\t\t\t************************\n");
FILE *file1, *file2;
char code[MAX], product[MAX];
int available;
file1 = fopen("Record.txt", "rb");
// if (file1 == NULL)
// {
// printf("\t\t\t\tNo Product is inserted.");
// options();
// }
display();
printf("\n\t\t\t\t\t\tEnter the Product code to delete: ");
scanf("%s", code);
system("clear");
available = isCodeAvailable(code);
if (available == 0)
{
system("clear");
printf("\033[1;31m");
printf("\n\v\t\t\t\t\t\t* Product is not available.\n");
printf("\033[0m");
}
else
{
file2 = fopen("tempfile.txt", "wb");
while (fread(&item, sizeof(item), 1, file1))
{
strcpy(product, item.product_code);
if (strcmp(product, code) != 0)
{
fwrite(&item, sizeof(item), 1, file2);
}
}
fclose(file1);
fclose(file2);
file1 = fopen("Record.txt", "wb");
file2 = fopen("tempfile.txt", "rb");
while (fread(&item, sizeof(item), 1, file2))
{
fwrite(&item, sizeof(item), 1, file1);
}
printf("\n\v\t\t\t\t\t\tProduct deleted sucessfully!!\n\n");
fclose(file1);
fclose(file2);
}
} // end of delete file
// Function to delete the Products.
void updateProduct()
{
printf("\v\v\t\t\t\t\t\t\tUpdate Product\n");
printf("\t\t\t\t\t\t************************\n");
FILE *file1, *file2;
char code[MAX], product[MAX];
int available;
// if (file1 == NULL)
// {
// printf("\t\t\t\tNo Product is inserted.");
// options();
// }
printf("enter the Product code to update the record:");
scanf("%s", code);
available = isCodeAvailable(code);
if (available == 0)
{
system("clear");
printf("\033[1;31m");
printf("\n\v\t\t\t\t\t\t* no Product is found for update.\n");
printf("\033[0m");
}
else
{
file1 = fopen("Record.txt", "rb");
file2 = fopen("tempfile.txt", "wb");
while (fread(&item, sizeof(item), 1, file1))
{
strcpy(product, item.product_code);
if (strcmp(product, code) != 0)
{
fwrite(&item, sizeof(item), 1, file2);
}
else
{
printf("\n Updating data for the privious product %s\n", code);
// printf("Enter new product code: ");
// scanf("%s", item.product_code);
// fflush(stdin);
printf("enter Product Name: ");
scanf("%s", item.product_name);
printf("Enter Product Rate: ");
scanf("%d", &item.rate);
printf("Enter Quantity: ");
scanf("%d", &item.quantity);
printf("Enter weight: ");
scanf("%f", item.weight);
printf("enter product descriptions: ");
scanf("%s", item.description);
printf("\n\n");
fwrite(&item, sizeof(item), 1, file2);
}
}
fclose(file1);
fclose(file2);
file1 = fopen("Record.txt", "wb");
file2 = fopen("tempfile.txt", "rb");
while (fread(&item, sizeof(item), 1, file2))
{
fwrite(&item, sizeof(item), 1, file1);
}
fclose(file1);
fclose(file2);
}
} //end of update file.
void login()
{
printf("\v\v\t\t\t\t\t\t\tLogin \n");
printf("\t\t\t\t\t\t************************\n");
char username[15], password[10];
// loginAgain:
//system("clear");
printf("\v\v\t\t\tEnter username: ");
scanf("%s", username);
printf("\t\t\tEnter password: ");
scanf("%s", password);
while (1)
{
if ((strcmp(USERNAME, username)) == 0 && (strcmp(PASSWORD, password)) == 0)
{
system("clear");
printf("\033[1;32m");
printf("\t\t\t\t\tLogin successfully!!");
printf("\033[0m");
//printf("\v\v\t\t\t--Welcome to the Hritik Departmental Store--\n");
options();
}
else
{
system("clear");
printf("\033[1;31m");
printf("\n\t\t\tsorry you enter the worng information.\n");
printf("\n\t\t\tPlease try again.\n");
printf("\033[0m");
// goto loginAgain;
login();
break;
}
}
} //end of login function
// start main funcion
int main()
{
login();
system("clear");
return 0;
} // end of main
void saleProduct()
{
printf("\v\v\t\t\t\t\t\t\tSale Product\n");
printf("\t\t\t\t\t\t************************\n");
char x[4] = {0}; // for item code
int q = 0, size = 0, i = 1;
int total = 0, gtotal = 0;
FILE *file;
// if (file == NULL)
// {
// printf("\t\t\tno product is found.");
// options();
// }
file = fopen("Record.txt", "r+b");
rewind(file);
// system("clear");
// dbill();
int availableC, availableQ;
printf("\t\t\t\t\tEnter \" end \" to finish input");
int qty = item.quantity;
while (1)
{
printf(" ");
printf(" ");
printf("\n\v\t\t\t\tEnter Item Code:");
// printf("\n\v\vEnter Item Code:");
scanf("%s", x);
if (strcmp(x, "end") == 0)
{
system("clear");
break;
}
availableC = isCodeAvailable(x);
if (availableC == 0)
{
system("clear");
printf("\033[1;31m");
printf("\n\v\t\t\t\t\t\t* no Product is found.\n");
printf("\033[0m");
options();
}
printf("\t\t\t\tEnter Quantity:");
scanf("%d", &q);
// printf("item%d", item.quantity);
// printf("beg%d", qty);
qty = qty - q;
if (qty < 0)
{
system("clear");
printf("\033[1;31m");
system("clear");
printf("\n\t\t\t\t\t\t* Out of stock.\n");
printf("\033[0m");
break;
}
// printf("qqqq%d", qty);
// availableQ = isProductAvailable(q);
// if (availableQ == 0)
// {
// // system("clear");
// system("clear");
// printf("\033[1;31m");
// printf("\n\v\t\t\t\t\t\t* This product has 0 quantity.");
// printf("\033[0m");
// options();
// }
rewind(file);
while (fread(&item, sizeof(item), 1, file))
{
if ((strcmp(item.product_code, x) == 0))
{
total = item.rate * q;
printf("\n\t\t\t%d ", i);
printf("\t\t\t%s ", item.product_name);
printf("\t\t\t%d ", q);
printf("\t\t\t%d ", item.rate);
printf("\t\t\t%d ", total);
gtotal = gtotal + total;
size = sizeof(item);
item.quantity = item.quantity - q;
i++;
fseek(file, -size, SEEK_CUR);
fwrite(&item, sizeof(item), 1, file);
break;
}
}
}
if (gtotal != 0)
{
// system("clear");
printf("\n\v\t\t\t\t\t\tTOTAL AMOUNT = NRs. %d", gtotal);
}
fclose(file);
// options();
}
// display of the bill.
// void dbill()
// {
// int i;
// for (i = 1; i <= 10; i++)
// printf("-");
// printf(" HRITIK DEPARTMENTAL STORE");
// for (i = 1; i <= 10; i++)
// printf("-");
// printf("\n\n");
// printf("CUSTOMER'S BILL\n");
// printf("SN. Item Name Quantity Rate Total\n");
// }
void options()
{
printf("\v\n\v\t\t\t\t\t\t\t\t--Hritik Departmental Store--\n");
printf("\t\t\t\t\t\t\t\t**********************************\n");
int num, choice;
while (1)
{
printf("\n\t\t\t\t\t\t\t\t\t1. Insert\n\t\t\t\t\t\t\t\t\t2. Display");
printf("\n\t\t\t\t\t\t\t\t\t3. Search\n\t\t\t\t\t\t\t\t\t4. Delete\n\t\t\t\t\t\t\t\t\t5. Update");
printf("\n\t\t\t\t\t\t\t\t\t6. close\n\t\t\t\t\t\t\t\t\t7. Sale product\n\n");
printf("\t\t\t\t\t\t\t\t\tEnter your choice: ");
choice = get_int(num);
switch (choice)
{
case 1:
system("clear");
addProduct();
system("clear");
break;
case 2:
system("clear");
display();
break;
case 3:
system("clear");
search();
break;
case 4:
system("clear");
deleteRecord();
break;
case 5:
system("clear");
updateProduct();
break;
case 6:
system("clear");
close_app();
break;
case 7:
system("clear");
saleProduct();
break;
default:
system("clear");
printf("\033[1;31m");
printf("\t\t* Invalid choice.\n");
printf("\033[0m");
break;
} // end of switch
}
}