-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSource.cpp
303 lines (264 loc) · 8.46 KB
/
Source.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
//*************************************************************
#include <istream>
#include <ostream>
#include <iostream>
#include <fstream>
#include <iomanip>
#include "CustomerList.h"
#include "Customer.h"
#include "OrderList.h"
#include "Order.h"
using namespace std;
void UpdateDatafile(CustomerList& clist);
void PrintOrders(CustomerList& clist);
// Load customers and orders into CustomerList
void LoadCustomers(ifstream& bookorderfile, CustomerList& clist) {
string line;
string name;
string address;
string email;
string booktitle;
string price;
string quanity;
// Read in first line and start processing file
getline(bookorderfile, line);
while (!bookorderfile.eof()) {
// Process if starting customer record
if (line[0] == '%') {
// Read in customer info and create customer object
getline(bookorderfile, address);
getline(bookorderfile, email);
Customer newcust(line.substr(1), address, email, OrderList());
// Loop over customer book orders
while (true) {
getline(bookorderfile, line);
// If starting customer record or eof
if (line[0] == '%' || bookorderfile.eof()) {
clist.AddCustomer(newcust);
break;
}
else {
// Read in book order and add to customer
getline(bookorderfile, price);
getline(bookorderfile, quanity);
newcust.AddOrder(Order(line, stof(price), stoi(quanity)));
}
}
}
else {
// Read in another line if not a starting customer record
getline(bookorderfile, address);
}
}
}
// Show menu and get selection
int selectMenu() {
cout << endl << "Please select one of the following action:" << endl;
cout << "1: Place an order." << endl;
cout << "2: Update an order." << endl;
cout << "3: Cancel an order." << endl;
cout << "4: Print all orders." << endl;
cout << "5: Checkout orders." << endl;
cout << "6: Exit" << endl;
int iselect = 0;
cin >> iselect;
return iselect;
}
// Place an order for new/existing customer
void PlaceOrder(CustomerList& clist) {
// Create book orders
// Repeat steps from CancelOrder
// getline, cin >> ws
while (true) {
Customer c;
string name;
cout << "Enter Customer Name:";
string dummy;
getline(cin, dummy);
getline(cin, name);
// Get an existing customer
if (clist.SearchCustomerByName(name))
{
cout << "Existing customer." << endl;
}
else {
// Or create a new customer
string address;
string email;
cout << "New Customer" << endl;
cout << "Enter Customer Address:";
getline(cin, address);
cout << "Enter Customer Email:";
getline(cin, email);
c = Customer(name, address, email, OrderList());
//*
clist.AddCustomer(c);
}
// Now add book orders to customer
string title;
double price;
int quanity;
cout << "Enter the book title:";
getline(cin, title);
cout << "Enter the price:";
cin >> price;
cout << "Enter the number of books:";
cin >> quanity;
clist.getCustomerByName(name).AddOrder(Order(title, price, quanity));
cout << "New Order added for " << name << endl;
// Save changes
// Doesn't work
UpdateDatafile(clist);
// Add another order?
string choice;
cout << "Place another order? (Y/N)";
cin >> choice;
if (choice == "Y" || choice == "y") {
continue;
}
else {
break;
}
}
}
// Adjust order quantity
void UpdateOrder(CustomerList& clist) {
//**************(((((((((((*************
// Repeat steps in CancelOrder
string name, dummy;
cout << "Enter Customer Name:";
getline(cin, dummy);
getline(cin, name);
if (clist.SearchCustomerByName(name)) {
string title;
cout << "Enter the book title to be updated:";
getline(cin, title);
int quanity;
cout << "Enter the number of book to be updated:";
cin >> quanity;
//********************************************
// Calling c.getOrders().UpdateOrder(title, number)
// with invalid title displays error message.
//
// Should c.getOrders().UpdateOrder(title, number)
// with valid title display a message?
//
// What to do with a 0 quantity?
//********************************************
clist.getCustomerByName(name).updateOrders(title, quanity);
UpdateDatafile(clist);
}
else {
cout << "Customer does not exist." << endl;
}
}
// Cancel existing order
void CancelOrder(CustomerList& clist) {
string name, dummy;
cout << "Enter Customer Name:";
getline(cin, dummy);
getline(cin, name);
if (clist.SearchCustomerByName(name)) {
string title;
cout << "Enter the book title to be canceled:";
getline(cin, title);
//********************************************
// Calling c.CancelOrder(title)
// with invalid title displays error message.
//
// Should c.CancelOrder(title)
// with valid title display a message?
//********************************************
clist.getCustomerByName(name).cancelOrder(title);
UpdateDatafile(clist);
}
else {
cout << "Customer does not exist." << endl;
}
}
// Print orders
void PrintOrders(CustomerList& clist) {
cout << clist;
}
// Checkout customer order
void CheckoutOrders(CustomerList& clist) {
string name, dummy;
cout << "Enter Customer Name:";
getline(cin, dummy);
getline(cin, name);
if (clist.SearchCustomerByName(name)) {
double subtotal = clist.getCustomerByName(name).checkoutOrders();
double tax = subtotal * 0.07;
double total = subtotal + tax;
// print the normal Customer and Order
cout << clist.getCustomerByName(name) << endl;
// print the checkout calculations
// Requires Formating
cout << "subtotal: $" << fixed << setprecision(2) << subtotal << endl;
cout << "tax: $" << fixed << setprecision(2) << tax << endl;
cout << "total payment: $" << fixed << setprecision(2) << total << endl;
}
else {
cout << "Customer does not exist." << endl;
}
}
// Update the customers and orders data file
void UpdateDatafile(CustomerList& clist) {
//*************************************************
// Customerlist and OrderList have UpdateDataFile()
// functions. Have to verify Customerlist.UpdateDataFile()
// saves all customers and orders correctly.
//
// CustomerList.UpdateDataFile() should internally call
// OrderList.UpdateDataFile() to ensure Customer and Orders // match.
//
// CustomerList.UpdateDataFile() should also add '%'
// delimiter to Customer name for use when Loading data.
//
// Example comments added to
// CustomerList.UpdateDataFile()
//*************************************************
ofstream bookdatastream("BookOrders.txt");
clist.UpdateDataFile(bookdatastream);
bookdatastream.close();
}
// We have to do this
int main() {
// Create CustomerList
CustomerList clist = CustomerList();
// Load Customer and Orders
ifstream bookdatastream("BookOrders.txt");
LoadCustomers(bookdatastream, clist);
bookdatastream.close();
// Do Menu
cout << "Welcome to Wake Bookstore!" << endl;
cout << "All customer orders are loaded." << endl;
bool quit = false;
while (!quit) {
int iselect = selectMenu();
switch (iselect) {
case 1:
PlaceOrder(clist);
continue;
case 2:
UpdateOrder(clist);
continue;
case 3:
CancelOrder(clist);
continue;
case 4:
PrintOrders(clist);
continue;
case 5:
CheckoutOrders(clist);
continue;
case 6:
cout << "Thanks for shopping at Wake Bookstore!" << endl;
quit = true;
break;
default:
break;
}
}
return 0;
}