-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMenus.cpp
371 lines (288 loc) · 9.36 KB
/
Menus.cpp
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
#include "Menus.h"
Customer customervar;
Product productvar;
Transaction transactionvar;
VendeMaisMais vendevar;
Date datevar;
/******************************************
Customer management
******************************************/
unsigned short int menuCustomers(vector <Customer> &customers, vector <Product> &products, vector<Transaction> &transactions, string &fileCustomers, string &fileProducts, string &fileTransactions)
{
unsigned short int chosenOption;
int id = 0;
/*Menu of customers, where the user can choose what the option that wants*/
clearScreen();
cout << TAB_BIG << "MENU CUSTOMER MANAGEMENT" << endl;
cout << endl;
cout << TAB << "1- Show information about all customers" << endl;
cout << TAB << "2- Show information about one customer" << endl;
cout << TAB << "3- Show customers in alphabetical order" << endl;
cout << TAB << "4- Edit customers" << endl;
cout << TAB << "5- Remove customers" << endl;
cout << TAB << "6- Insert new customer" << endl;
cout << "What is the option that you want? ";
cin >> chosenOption;
cout << endl;
switch (chosenOption)
{
case 1:
vendevar.informationCustomers(customers);
break;
case 2:
menuOneCustomer(customers, products, transactions, fileCustomers, fileProducts, fileTransactions);
break;
case 3:
vendevar.customersListAlphaOrder(customers);
break;
case 4:
id = vendevar.askIdentifier(customers);
menuEditCustomer(customers, fileCustomers, id);
break;
case 5:
vendevar.removeCustomers(customers, fileCustomers);
break;
case 6:
vendevar.insertCustomers(customers, transactions, fileCustomers);
break;
default:
cout << "Invalid option. Try again." << endl;
break;
}
return 0;
}
unsigned short int menuOneCustomer(vector<Customer> &customers, vector <Product> &products, vector<Transaction> &transactions, string &fileCustomers, string &fileProducts, string &fileTransactions)
{
unsigned short int chosenOption;
cout << TAB_BIG << "How do you want search?" << endl;
cout << endl;
cout << TAB << "1- Through identifier" << endl;
cout << TAB << "2- Through name" << endl;
cout << "What is the option that you want? ";
cin >> chosenOption;
cout << endl;
switch (chosenOption)
{
case 1:
vendevar.informationOneCustomer(customers);
break;
case 2:
vendevar.informationOneCustomer_name(customers);
break;
default:
cout << "Invalid option. Try again." << endl;
break;
}
return 0;
}
unsigned short int menuEditCustomer(vector<Customer> &customers, string &fileCustomers, int id)
{
unsigned short int chosenOption;
do
{
cout << TAB_BIG << "What do you want to change?" << endl;
cout << endl;
cout << TAB << "1- Name" << endl;
cout << TAB << "2- Accession date" << endl;
cout << TAB << "3- Volume of Purchases" << endl;
cout << TAB << "0- Out if there is not longer anything to be changed" << endl;
cout << "What is the option that you want? ";
cin >> chosenOption;
cout << endl;
switch (chosenOption)
{
case 1:
vendevar.editCustomer_name(customers, fileCustomers, id);
break;
case 2:
vendevar.editCustomer_date(customers, fileCustomers, id);
break;
case 3:
vendevar.editCustomer_VolumePurchases(customers, fileCustomers, id);
break;
case 0:
return 0;
default:
cout << "Invalid option. Try again." << endl;
break;
}
} while (chosenOption != 0);
return 0;
}
/******************************************
Transaction management
******************************************/
unsigned short int menuTransactions(vector <Customer> &customers, vector <Product> &products, vector<Transaction> &transactions, string &fileCustomers, string &fileProducts, string &fileTransactions)
{
unsigned short int chosenOption;
clearScreen();
cout << TAB_BIG << "MENU TRANSACTION MANAGEMENT" << endl;
cout << endl;
cout << TAB << "1- Show all customer transactions" << endl;
cout << TAB << "2- Show transactions day" << endl;
cout << TAB << "3- Show transactions between two dates" << endl;
cout << TAB << "4- Show transactions in chronological order" << endl;
cout << TAB << "5- Show transactions about one customer" << endl;
cout << "What is the option that you want? ";
cin >> chosenOption;
cout << endl;
switch (chosenOption)
{
case 1:
vendevar.informationTransactions(transactions);
break;
case 2:
vendevar.transactionsDay(transactions);
break;
case 3:
vendevar.transactionsBetweenDates(transactions);
break;
case 4:
vendevar.chronologicalOrder(transactions);
break;
case 5:
menuTransactionsOneCustomer(customers, transactions, fileCustomers, fileTransactions);
break;
default:
cout << "Invalid option. Try again." << endl;
break;
}
return 0;
}
unsigned short int menuTransactionsOneCustomer(vector <Customer> &customers, vector<Transaction> &transactions, string &fileCustomers, string &fileTransactions)
{
unsigned short int chosenOption;
cout << TAB_BIG << "How do you want search?" << endl;
cout << endl;
cout << TAB << "1- Through identifier" << endl;
cout << TAB << "2- Through name" << endl;
cout << "What is the option that you want? ";
cin >> chosenOption;
cout << endl;
switch (chosenOption)
{
case 1:
vendevar.transactionsOneCustomer(customers, transactions);
break;
case 2:
vendevar.transactionsOneCustomer_name(customers, transactions);
break;
default:
cout << "Invalid option. Try again." << endl;
break;
}
return 0;
}
/******************************************
Make purchases
******************************************/
unsigned short int menuPurchases(vector <Customer> &customers, vector <Product> &products, vector<Transaction> &transactions, string &fileCustomers, string &fileProducts, string &fileTransactions)
{
unsigned short int chosenOption;
clearScreen();
cout << TAB_BIG << "MENU MAKE PURCHASES" << endl;
cout << endl;
cout << TAB << "1- Show information about products" << endl;
cout << TAB << "2- Make purchases" << endl;
cout << "What is the option that you want? ";
cin >> chosenOption;
cout << endl;
switch (chosenOption)
{
case 1:
vendevar.informationProducts(products);
break;
case 2:
vendevar.makePurchases(customers, transactions, products, fileCustomers, fileTransactions);
break;
default:
cout << "Invalid option. Try again." << endl;
break;
}
return 0;
}
/******************************************
Recomendation system
******************************************/
unsigned short int menuRecomendationSystem(vector <Customer> &customers, vector <Product> &products, vector<Transaction> &transactions, string &fileCustomers, string &fileProducts, string &fileTransactions)
{
unsigned short int chosenOption;
unsigned int id;
clearScreen();
cout << TAB_BIG << "MENU RECOMENDATION SYSTEM" << endl;
cout << endl;
cout << TAB << "1- Customer Recomendation" << endl;
cout << TAB << "2- Bottom 10 worst Customers" << endl;
cout << TAB << "3- Campaign Bottom 10" << endl;
cout << TAB << "What is the option that you want? ";
cin >> chosenOption;
cout << endl;
switch (chosenOption)
{
case 1:
id = vendevar.requestId(customers, transactions);
vendevar.recomendationSystem(customers, products, transactions, id);
break;
case 2:
vendevar.bottom10VP(customers);
break;
case 3:
vendevar.recomendationBottom10(customers,products,transactions);
break;
default:
cout << "Invalid option. Try again." << endl;
break;
}
return 0;
}
/******************************************
Main Menu
******************************************/
unsigned short int mainMenu(vector <Customer> &customers, vector<Product> &products, vector<Transaction> &transactions, string &fileCustomers, string &fileProducts, string &fileTransactions)
{
unsigned short int chosenOption;
ifstream fin;
string line;
if (vendevar.readFileCustomers(customers, fileCustomers) && vendevar.readFileProducts(products, fileProducts) && vendevar.readFileTransactions(transactions, fileTransactions))
{
do
{
cout << TAB_BIG << "Main Menu" << endl;
cout << endl;
cout << TAB << "1- Customers management" << endl;
cout << TAB << "2- Make purchases" << endl;
cout << TAB << "3- Transactions management" << endl;
cout << TAB << "4- Recomendation system" << endl;
cout << TAB << "0- Exit program" << endl << endl;
cout << TAB << "What is the option that you want? ";
cin >> chosenOption;
cout << endl;
switch (chosenOption)
{
case 1:
menuCustomers(customers, products, transactions, fileCustomers, fileProducts, fileTransactions);
break;
case 2:
menuPurchases(customers, products, transactions, fileCustomers, fileProducts, fileTransactions);
break;
case 3:
menuTransactions(customers, products, transactions, fileCustomers, fileProducts, fileTransactions);
break;
case 4:
menuRecomendationSystem(customers, products, transactions, fileCustomers, fileProducts, fileTransactions);
break;
case 0:
return 0;
default:
cout << "Invalid option. Try again." << endl;
break;
}
} while (chosenOption != 0);
}
else
{
cout << "File not found!\n";
vendevar.requestFiles(fileCustomers, fileProducts, fileTransactions);
}
return 0;
}