-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
395 lines (331 loc) · 9.14 KB
/
Copy pathmain.cpp
File metadata and controls
395 lines (331 loc) · 9.14 KB
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
#include<iostream>
#include<string.h>
#include<conio.h>
#include<math.h>
using namespace std;
class store
{
private:
char name[20];
float pr;
int quant;
friend void Dispstore(const store storeItems[], int numProducts);
public:
void get();
void show() const;
int stockcheck(char nm[30]);
void withdrawal(int qty);
void refil_product(int qty);
};
class Dealer
{
public:
static void addNewproduct(store storeItems[], int& numProducts);
static void refill_product(store storeItems[], int numProducts);
static void remove_product(store storeItems[], int& numProducts);
};
class Customer
{
public:
static void withdraw(store storeItems[], int numProducts);
};
class emp {
public:
static void refill(store storeItems[], int numProducts);
};
const int MAX_PRODUCTS = 100;
store storeItems[MAX_PRODUCTS];
int numProducts = 0;
// function for buying product
void store::withdrawal(int qty)
{
if (quant >= qty) {
quant -= qty;
cout << "\n\nStock updated.\n";
cout << "\n\nTotal price to be paid: " << pr * qty;
cout << "\n";
} else {
cout << "\n\nInsufficient stock";
cout << "\n";
}
getchar();
}
//function for product refil
void store::refil_product(int qty)
{
quant += qty;
cout << "\n\nStock updated.";
cout << "\n";
getchar();
}
//function for stock check
int store::stockcheck(char nm[30])
{
if (strcmp(nm, name) == 0)
return 0;
else
return 1;
}
void store::get()
{
cin >> name >> pr >> quant;
}
void store::show() const
{
cout << "\n" << name << "\t\t\t" << quant << "\t\t\t" << pr;
}
void Dealer::addNewproduct(store storeItems[], int& numProducts)
{
cout << "\nEnter the No. of Products that you wish to add: ";
int n;
cin >> n;
if (n != 0) {
for (int i = 0; i < n; i++) {
cout << "\n\nInput the name, price and the quantity of item respectively\n\n";
storeItems[numProducts].get();
numProducts++;
cout << "\n\nItem updated";
cin.get();
}
cout << "\n\nStock Updated!!";
cin.get();
} else {
cin.get();
cout << "\n\nNo items to be added";
cout << "\n";
}
}
//function for product refill
void Dealer::refill_product(store storeItems[], int numProducts) {
char temp[100];
int qty;
int i = 0;
cout << "\n\nEnter the products name \n" << endl;
cin >> temp;
cout << "\n\nEnter quantity: \n" << endl;
cin >> qty;
for (i = 0; i < numProducts; i++) {
if (storeItems[i].stockcheck(temp) == 0) {
storeItems[i].refil_product(qty);
break;
}
}
if (i == numProducts) {
cout << "\n\n!!Record not found!!";
cout << "\n";
}
cin.get();
cin.get();
}
// function for removing product
void Dealer::remove_product(store storeItems[], int& numProducts){
int i = 0;
char temp[30];
cout << "\n\t\t\t\tDelete Record";
cout << "\n\nEnter the name of the product:";
cin >> temp;
for (i = 0; i < numProducts; i++) {
if (storeItems[i].stockcheck(temp) == 0) {
storeItems[i].show();
cout << "\n\n\t\tRecord deleted";
cout << "\n";
numProducts--;
for (int j = i; j < numProducts; j++) {
storeItems[j] = storeItems[j + 1];
}
break;
}
}
if (i == numProducts) {
cout << "\n\n!!Record not found!!";
cout << "\n";
}
getchar();
}
//function for buying product
void Customer::withdraw(store storeItems[], int numProducts) {
char temp[100];
int qty;
int i = 0;
cout << "\n\nEnter the product's name \n" << endl;
cin >> temp;
cout << "\n\nEnter quantity: \n" << endl;
cin >> qty;
for (i = 0; i < numProducts; i++) {
if (storeItems[i].stockcheck(temp) == 0) {
storeItems[i].withdrawal(qty);
break;
}
}
if (i == numProducts) {
cout << "\n\n!!Record not found!!";
cout << "\n";
}
cin.get();
getchar();
}
//function for refilling products
void emp::refill(store storeItems[], int numProducts) {
char temp[100];
int qty;
int i = 0;
cout << "\n\nEnter the products name \n" << endl;
cin >> temp;
cout << "\n\nEnter quantity: \n" << endl;
cin >> qty;
for (i = 0; i < numProducts; i++) {
if (storeItems[i].stockcheck(temp) == 0) {
storeItems[i].refil_product(qty);
break;
}
}
if (i == numProducts) {
cout << "\n\n!!Record not found!!\n";
}
cin.get();
cin.get();
}
//function for displaying products
void Dispstore(const store storeItems[], int numProducts) {
int i = 1;
cout << "\n\n=THE STOCK ITEMS ARE=";
cout << "\n\nPRODUCT NAME \tSTOCK AVAILABLE\t\t\t PRICE";
cout << "\n\n============================================================\n";
for (i = 0; i < numProducts; i++) {
storeItems[i].show();
}
if (i == 0) {
cout << "\n\n\t\t\t!!Empty record room!!";
getchar();
}
}
int main() {
int i, j;
cout << " WELCOME TO ONLINE STORE MANAGEMENT\n\n\n";
getchar();
mainmenu:
cout << "\nSTORE MANAGEMENT SYSTEM\n";
cout << "\n\n 1. Dealer Menu\n 2. Customer Menu\n 3. Employee Menu";
cout << "\n\nEnter Your Preference:";
cin >> j;
if (j == 1)
{
string passs;
cout << "\n\nEnter Password to Login : ";
cin >> passs;
if (passs == "DEALER")
{
cout << "\n\n\nCongrats!!Access Granted!!\n\n";
getchar();
dealermenu:
cout << "\n\n DEALER MENU\n1. Add new product";
cout << "\n2. Display stock";
cout << "\n3. Refil";
cout << "\n4. Remove an item";
cout << "\n5. Return to main menu";
cout << "\n6. Exit: ";
cout << "\n\n\nEND OF MENU ";
cout << "\n\n Enter your Preference :\t";
cin >> i;
if (i == 1) {
Dealer::addNewproduct(storeItems, numProducts);
getchar();
goto dealermenu;
} else if (i == 2) {
Dispstore(storeItems, numProducts);
getchar();
goto dealermenu;
} else if (i == 3) {
Dealer::refill_product(storeItems, numProducts);
goto dealermenu;
} else if (i == 4) {
Dealer::remove_product(storeItems, numProducts);
getchar();
goto dealermenu;
} else if (i == 5) {
goto mainmenu;
} else {
getchar();
exit(0);
}
}
else
{
cout << "\n\n\n!!!Admin Panel Only!!!\n\n";
getchar();
exit(0);
}
}
else if (j == 2)
{
custmenu:
cout << "\n\n CUSTOMER MENU\n1. Purchase\n2. Display stock\n3. Return to main menu\n4. Exit:";
cout << "\n\n\nEND OF MENU ";
cout << "\n\n Enter your Choice :\t";
cin >> i;
if (i == 1)
{
Customer::withdraw(storeItems, numProducts);
getchar();
goto custmenu;
}
else if (i == 2)
{
Dispstore(storeItems, numProducts);
getchar();
goto custmenu;
}
else if (i == 3)
{
goto mainmenu;
}
else
{
getchar();
exit(0);
}
}
else if (j == 3)
{
string passss;
cout << "\n\n\nEnter the Password : ";
cin >> passss;
if (passss == "emp")
{
cout << "\n!!Congrats!! You have got access"<<endl;
empmenu:
cout << "\n\nEMPLOYEE MENU\n1. Display stock\n2. Refill\n3. Return to main menu\n4. Exit";
cout << "\n\n\nEND OF MENU ";
cout << "\n\n Enter your Choice :\t";
cin >> i;
if (i == 1)
{
Dispstore(storeItems, numProducts);
getchar();
goto empmenu;
}
else if (i == 2)
{
emp::refill(storeItems, numProducts);
goto empmenu;
}
else if (i == 3)
{
goto mainmenu;
}
else
{
cout << "\n\n\n!!Thank You!!";
getchar();
exit(0);
}
}
else
{
cout << "\n\n..Sorry!! You can't access..\n\n";
getchar();
exit(0);
}
}
getchar();
}