功能模块设计

基于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
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
#define _CRT_SECURE_NO_DEPRECATE
#include <iostream>
#include <algorithm>
#include <string>
#include <iomanip>
#include <fstream>
#include <vector>
#include <sstream>
#include <ctime>
#include <cstdlib>
using namespace std;

//工具类
class Tool
{
public:
//获取系统当前时间
static string getTime()
{
time_t t = time(NULL);
struct tm* now = localtime(&t);
std::stringstream time;
time << now->tm_year + 1900 << "-";
time << now->tm_mon + 1 << "-";
time << now->tm_mday << "_";
time << now->tm_hour << ":";
time << now->tm_min;
return time.str();
}
};

//奶茶类
class Tea
{
public:
string teaName; //名称
vector<string> ingredients; //主辅料
int num; //主辅料的种类数量
string base; //茶底
double largePrice; //大杯的价格
double mediumPrice; //中杯的价格
string description; //掌柜描述
Tea()
{
}
Tea(string teaName,vector<string> ingredients, int num, string base, double largePrice, double mediumPrice, string description)
{
this->teaName = teaName;
this->ingredients = ingredients;
this->num = num;
this->base = base;
this->largePrice = largePrice;
this->mediumPrice = mediumPrice;
this->description = description;
}
static void showHeader()
{
cout << left << setw(20) << "名称";
cout << left << setw(14) << "茶底";
cout << left << setw(12) << "大杯价格";
cout << left << setw(12) << "中杯价格" << endl;
}
void showTeaInfo()
{
cout << left << setw(20) << teaName;
cout << left << setw(14) << base;
cout << left << setw(12) << largePrice;
cout << left << setw(12) << mediumPrice << endl;
}
void showTeaDetail()
{
cout<<"\t名称:";
cout << left << setw(24) << teaName;
cout<<"主料:";
for(int i = 0; i < ingredients.size(); ++i) cout<<ingredients[i]<<" ";
cout<<endl;
cout<<"\t茶底:";
cout << left << setw(24) << base;
cout<<"价格:";
cout<<"大杯 "<<largePrice<<" 元,中杯 "<<mediumPrice<<" 元"<<endl;
cout<<"\t掌柜描述:"<<description<<endl;
}
};

// 人类 用户和管理员都通过这个类定义
class Person
{
public:
string name; //用户名 作为主键 唯一标识
string pwd; //登录系统的密码
double money; //当前消费
string dotime; //注册时间
string mark; //标志 mark为"1" 表示为管理员 mark为"2"表示为乘客
Person()
{
}
Person(string name, string pwd, double money, string dotime, string mark)
{
this->name = name;
this->pwd = pwd;
this->money = money;
this->dotime = dotime;
this->mark = mark;
}
//输出用户表的某一行
void showPersonInfo()
{
cout << left << setw(14) << name;
cout << left << setw(16) << pwd;
cout << left << setw(10) << money;
cout << left << setw(14) << dotime << endl;
}
//输出表头
static void showHeader()
{
cout << left << setw(14) << "用户名";
cout << left << setw(16) << "密码";
cout << left << setw(10) << "当前消费";
cout << left << setw(14) << "注册时间" << endl;
}
};
//奶茶订单类
class Order
{
public:
string id; //订单号
string teaName; //奶茶名称
string cupSize; //规格:大杯 中杯
double price; //价格
string sugar; //甜度:全糖 七分糖 五分糖 去糖
string tem; //温度:正常冰 少冰 常温 热
int cupNum; //杯数
string buyer; //订购者
string buytime; //订购时间
string state; //出餐状态
Order()
{
}
Order(string id, string teaName, string cupSize, double price, string sugar, string tem, int cupNum, string buyer, string buytime, string state)
{
this->id = id;
this->teaName = teaName;
this->cupSize = cupSize;
this->price = price;
this->sugar = sugar;
this->tem = tem;
this->cupNum = cupNum;
this->buyer = buyer;
this->buytime = buytime;
this->state = state;
}
~Order()
{
}
static void showHeader()
{
cout << left << setw(8) << "订单号";
cout << left << setw(20) << "奶茶名称";
cout << left << setw(8) << "规格";
cout << left << setw(8) << "单价";
cout << left << setw(8) << "甜度";
cout << left << setw(8) << "温度";
cout << left << setw(8) << "杯数";
cout << left << setw(10) << "订购者";
cout << left << setw(20) << "订购时间";
cout << left << setw(10) << "出餐状态" << endl;
}
void showOrderInfo()
{
cout << left << setw(8) << id;
cout << left << setw(20) << teaName;
cout << left << setw(8) << cupSize;
cout << left << setw(8) << price;
cout << left << setw(8) << sugar;
cout << left << setw(8) << tem;
cout << left << setw(8) << cupNum;
cout << left << setw(10) << buyer;
cout << left << setw(20) << buytime;
cout << left << setw(10) << state << endl;
}
};

//奶茶点餐系统类
class TeaSystem
{
public:
vector<Tea> ts;
vector<Order> os;
vector<Person> ps;
Person admin;

TeaSystem()
{
}
TeaSystem(vector<Tea> ts, vector<Order> os, vector<Person> ps, Person admin)
{
this->ts = ts;
this->os = os;
this->ps = ps;
this->admin = admin;
}
~TeaSystem()
{
}
//设置管理员的账号密码
void setAdmin(string name, string pwd, string mark, string dotime, double money)
{
this->admin.name = name;
this->admin.pwd = pwd;
this->admin.mark = mark;
this->admin.dotime = dotime;
this->admin.money = money;
}
//初始化
void init()
{
readFile(); //读取文件
}
//登录菜单
void menu()
{
string sel = "0";
system("cls");
cout << "\t\t\t************欢迎来到蜜雪冰城****************" << endl;
cout << "\t\t\t你可以进行以下操作:" << endl;
cout << "\t\t\t|------------------------------------------|" << endl;
cout << "\t\t\t| 1 管理员登录 |" << endl;
cout << "\t\t\t|------------------------------------------|" << endl;
cout << "\t\t\t| 2 用户登录 |" << endl;
cout << "\t\t\t|------------------------------------------|" << endl;
cout << "\t\t\t| 3 用户注册 |" << endl;
cout << "\t\t\t|------------------------------------------|" << endl;
cout << "\t\t\t| 0 退出 |" << endl;
cout << "\t\t\t|------------------------------------------|" << endl;
cout << "\t\t\t请选择【0-3】:";
cin >> sel;
while(sel != "0" && sel != "1" && sel != "2" && sel != "3")
{
cout << "\t\t\t输入不合法,请重新选择【0-3】:";
cin >> sel;
}
if(sel == "1")
{
this->login(sel);
this->menu();
}
else if(sel == "2")
{
this->login(sel);
this->menu();
}
else if(sel == "3")
{
this->reg();
this->menu();
}
else
{
exit(0);
}
}
//注册函数:乘客通过reg函数注册
void reg()
{
Person p;
p.mark = "2";
cout<<"\t\t\t请填写用户信息:"<<endl;
cout << "\t\t\t用户名:";
bool check = false;
do
{
check = false;
cin >> p.name;
for(int i = 0; i < ps.size(); ++i)
{
if(p.name == ps[i].name)
{
cout<<"\t\t\t该用户名已存在,请重新输入:";
check = true;
break;
}
}
}
while(check);
cout<<"\t\t\t输入密码:";
cin>>p.pwd;
p.money = 0;
p.dotime = Tool::getTime();
ps.push_back(p);
writeFile();
cout<<"\t\t\t注册成功!"<<endl;
cout<<"\t\t\t";
system("pause");
}

//登录函数:用户和管理员都通过login函数登录
void login(string sel)
{
Person p;
p.mark = sel;
cout<<"\t\t\t请填写用户信息:"<<endl;
cout<<"\t\t\t输入用户名:";
cin>>p.name;
cout<<"\t\t\t输入密码:";
cin>>p.pwd;
if(p.mark == "1")
{
if(p.name == this->admin.name && p.pwd == this->admin.pwd)
{
cout<<"\t\t\t管理员登录成功!"<<endl;
this->aMenu(admin);
}
else
{
cout<<"\t\t\t用户名或密码输入错误"<<endl;
}
cout<<"\t\t\t";
system("pause");
}
else if(p.mark == "2")
{
bool flag = false;
for(int i = 0; i < this->ps.size(); ++i)
{
if(p.name == ps[i].name && p.pwd == ps[i].pwd)
{
flag = true;
cout<<"\t\t\t用户登录成功!"<<endl;
this->pMenu(p);
}
}
if(!flag) cout<<"\t\t\t用户名或密码输入错误!"<<endl;
cout<<"\t\t\t";
system("pause");
}
}

//顾客菜单
void pMenu(Person& p)
{
string sel = "0";
system("cls");
cout << "\t\t\t**********欢迎来到蜜雪冰城点餐系统**********" << endl;
cout << "\t\t\t当前用户:" << p.name <<"(普通用户)"<< endl;
cout << "\t\t\t|------------------------------------------|" << endl;
cout << "\t\t\t| 1 奶茶信息一览表 |" << endl;
cout << "\t\t\t|------------------------------------------|" << endl;
cout << "\t\t\t| 2 小程序点餐 |" << endl;
cout << "\t\t\t|------------------------------------------|" << endl;
cout << "\t\t\t| 3 申请退款 |" << endl;
cout << "\t\t\t|------------------------------------------|" << endl;
cout << "\t\t\t| 4 个人历史订单 |" << endl;
cout << "\t\t\t|------------------------------------------|" << endl;
cout << "\t\t\t| 5 修改密码 |" << endl;
cout << "\t\t\t|------------------------------------------|" << endl;
cout << "\t\t\t| 0 注销登录 |" << endl;
cout << "\t\t\t|------------------------------------------|" << endl;
cout << "\t\t\t请选择【0-5】:";
cin >> sel;
while(sel != "0" && sel != "1" && sel != "2" && sel != "3" && sel != "4" && sel != "5")
{
cout << "\t\t\t输入不合法,请重新选择【0-5】:";
cin >> sel;
}
if(sel == "1")
{
this->displayList(); //奶茶信息一览表
this->pMenu(p);
}
else if(sel == "2")
{
this->order(p); //小程序点餐
this->pMenu(p);
}
else if(sel == "3")
{
this->refund(p); //申请退款
this->pMenu(p);
}
else if(sel == "4")
{
this->myOrders(p); //个人历史订单
this->pMenu(p);
}
else if(sel == "5")
{
this->updatePwd(p); //修改密码
this->pMenu(p);
}
else if(sel == "0") //注销登录
{
this->menu();
}
}

//管理员菜单
void aMenu(Person& p)
{
string sel = "0";
system("cls");
cout << "\t\t\t*********欢迎来到蜜雪冰城后台管理系统**************" << endl;
cout << "\t\t\t当前用户:" << this->admin.name <<"(管理员)"<< endl;
cout << "\t\t\t|-------------------------------------------------|" << endl;
cout << "\t\t\t| 1 添加奶茶信息 |" << endl;
cout << "\t\t\t|-------------------------------------------------|" << endl;
cout << "\t\t\t| 2 删除奶茶信息 |" << endl;
cout << "\t\t\t|-------------------------------------------------|" << endl;
cout << "\t\t\t| 3 修改奶茶信息 |" << endl;
cout << "\t\t\t|-------------------------------------------------|" << endl;
cout << "\t\t\t| 4 查询奶茶信息 |" << endl;
cout << "\t\t\t|-------------------------------------------------|" << endl;
cout << "\t\t\t| 5 奶茶信息一览表 |" << endl;
cout << "\t\t\t|-------------------------------------------------|" << endl;
cout << "\t\t\t| 6 历史订单记录一览表 |" << endl;
cout << "\t\t\t|-------------------------------------------------|" << endl;
cout << "\t\t\t| 7 奶茶订单处理 |" << endl;
cout << "\t\t\t|-------------------------------------------------|" << endl;
cout << "\t\t\t| 8 管理用户信息 |" << endl;
cout << "\t\t\t|-------------------------------------------------|" << endl;
cout << "\t\t\t| 9 清空系统数据 |" << endl;
cout << "\t\t\t|-------------------------------------------------|" << endl;
cout << "\t\t\t| 0 注销登录 |" << endl;
cout << "\t\t\t|-------------------------------------------------|" << endl;
cout << "\t\t\t请选择【0-9】:";
cin >> sel;
while(sel != "0" && sel != "1" && sel != "2" && sel != "3" && sel != "4" && sel != "5" && sel != "6" && sel != "7" && sel != "8" && sel != "9")
{
cout << "\t\t\t输入不合法,请重新选择【0-9】:";
cin >> sel;
}
if(sel == "1")
{
this->insertList();
this->aMenu(p);
}
else if(sel == "2")
{
this->deleteList();
this->aMenu(p);
}
else if(sel == "3")
{
this->updateList();
this->aMenu(p);
}
else if(sel == "4")
{
this->selectList();
this->aMenu(p);
}
else if(sel == "5")
{
this->displayList();
this->aMenu(p);
}
else if(sel == "6")
{
this->displayOrders();
this->aMenu(p);
}
else if(sel == "7")
{
this->manageOrders();
this->aMenu(p);
}
else if(sel == "8")
{
this->manageUsers();
this->aMenu(p);
}
else if(sel == "9")
{
this->clearList();
this->aMenu(p);
}
else if(sel == "0")
{
this->menu();
}
}

//读取文件
void readFile()
{
//读取文件book.txt 对应容器 bs
ifstream ifs;
ifs.open("tea.txt", ios::in);
int tn = 0; //用来接收奶茶种类数量的值
ifs >> tn;
for(int i = 0; i < tn; i++)
{
Tea t;
ifs >> t.teaName >> t.num >> t.base >> t.largePrice >> t.mediumPrice >> t.description;
string str;
for(int j = 0; j < t.num; j++)
{
ifs >> str;
t.ingredients.push_back(str);
}
ts.push_back(t);
}
ifs.close();
//读取文件person.txt 对应容器 ps
ifstream jfs;
jfs.open("person.txt", ios::in);
int pn = 0; //用来接收系统中注册人数的值
jfs >> pn;
for(int i = 0; i < pn; i++)
{
Person p;
jfs >> p.name >> p.pwd >> p.money >> p.dotime >> p.mark;
ps.push_back(p);
}
jfs.close();

//读取文件order.txt 对应容器 os
ifstream kfs;
kfs.open("order.txt", ios::in);
int cnt = 0; //用来接收系统中订单的数量
kfs >> cnt;
for(int i = 0; i < cnt; i++)
{
Order o;
kfs >> o.id >> o.teaName >> o.cupSize >> o.price >> o.sugar >> o.tem >> o.buyer >> o.buytime >> o.state;
os.push_back(o);
}
kfs.close();
}

//写入文件
void writeFile()
{
//写入文件book.txt 对应容器 bs
ofstream ofs;
ofs.open("tea.txt", ios::out);
ofs << ts.size() << endl; //先写入图书数量
for (int i = 0; i < ts.size(); i++)
{

ofs << ts[i].teaName << " " << ts[i].num << " " << ts[i].base << " "
<< ts[i].largePrice << " " << ts[i].mediumPrice << " " << ts[i].description << endl;
for(int j = 0; j < ts[i].ingredients.size(); j++)
{
ofs << ts[i].ingredients[j] << endl;
}
}
ofs.close();

//写入文件person.txt 对应容器 ps
ofstream pfs;
pfs.open("person.txt", ios::out);
pfs << ps.size() << endl; //先写入用户数量
for (int i = 0; i < ps.size(); i++)
{
pfs << ps[i].name << " " << ps[i].pwd << " " << ps[i].money << " "
<< ps[i].dotime << " " << ps[i].mark << endl;
}
pfs.close();

//写入文件order.txt 对应容器 os
ofstream qfs;
qfs.open("order.txt", ios::out);
qfs << os.size() << endl; //先写入订单数量
for (int i = 0; i < os.size(); i++)
{
qfs << os[i].id << " " << os[i].teaName << " " << os[i].cupSize << " " << os[i].price
<< " " << os[i].sugar << " " << os[i].tem << " " << os[i].buyer << " " << os[i].buytime << " " << os[i].state << endl;
}
qfs.close();
}
//添加奶茶信息 :
void insertList()
{
while(true)
{
system("cls");
cout << "\t************************************欢迎来到添加奶茶信息功能****************************************" << endl;
cout << "\t当前用户:" << this->admin.name << endl;
string sel = "0";
cout << "\t-----------------" << endl;
cout << "\t1 添加奶茶信息" << endl;
cout << "\t2 返回主菜单" << endl;
cout << "\t-----------------" << endl;
cout << "\t请进行选择【1-2】:";
cin >> sel;
while(sel != "1" && sel != "2")
{
cout << "\t输入不合法,请重新选择【1-2】:";
cin >> sel;
}
if(sel == "1")
{
string flag = "1";
while (flag == "1")
{
cout << "\t开始信息录入:"<<endl;
Tea t;
cout << "\t奶茶名称:";
bool check = false;
do
{
check = false;
cin >> t.teaName;
for(int i = 0; i < ts.size(); ++i)
{
if(t.teaName == ts[i].teaName)
{
cout<<"\t系统中已存在该奶茶信息,请重新输入:";
check = true;
break;
}
}
}
while(check);
cout << "\t输入配料信息:" << endl;
int k = 0;
string option = "1";
while(option == "1")
{
string st;
cout << "\t第" << k + 1 << "种配料:";
k++;
cin >> st;
t.ingredients.push_back(st);
cout << "\t第" << k << "种配料添加成功!是否继续添加?(1 是 0 否)" << endl;
cout << "\t请进行选择【0-1】:";
cin >> option;
while(option != "0" && option != "1")
{
cout << "\t输入不合法,请重新选择【0-1】:";
cin >> option;
}
}
t.num = t.ingredients.size();
cout << "\t奶茶茶底:";
cin >> t.base;
cout << "\t大杯价格:";
cin >> t.largePrice;
cout << "\t中杯价格:";
cin >> t.mediumPrice;
cout << "\t掌柜描述:";
cin >> t.description;
ts.push_back(t);
writeFile();
cout << "\n\t奶茶信息添加成功!是否继续添加?(1 是 0 否)" << endl;
cout << "\t请进行选择【0-1】:";
cin >> flag;
while(flag != "0" && flag != "1")
{
cout << "\t输入不合法,请重新选择【0-1】:";
cin >> flag;
}
}
cout << "\t";
system("pause");
}
else
{
break;
}
}
}

void deleteList()
{
while (true)
{
system("cls");
cout << "\t************************************欢迎来到删除奶茶信息功能****************************************" << endl;
cout << "\t当前用户:" << this->admin.name << endl;
cout << "\t奶茶信息一览表"<<endl;
this->traverseTea1();
string sel = "0";
cout << "\t-----------------" << endl;
cout << "\t1 按奶茶名称删除" << endl;
cout << "\t2 返回主菜单" << endl;
cout << "\t-----------------" << endl;
cout << "\t请进行选择【1-2】:";
cin >> sel;
while(sel != "1" && sel != "2")
{
cout << "\t输入不合法,请重新选择【1-2】:";
cin >> sel;
}
if (sel == "1")
{
string keyName;
bool flag = false;
cout << "\t请输入待删除的奶茶名称:";
cin >> keyName;
for (vector<Tea>::iterator it = ts.begin(); it != ts.end(); ++it)
{
if (it->teaName == keyName)
{
flag = true;
cout<< "\n\t"<< keyName << "的信息如下:"<<endl;
line(100);
it->showTeaDetail();
line(100);
cout << "\t是否确认删除该奶茶信息?(1 是 0 否)" << endl;
cout << "\t请进行选择【0-1】:";
string ch = "0";
cin >> ch;
while(ch != "0" && ch != "1")
{
cout << "\t输入不合法,请重新选择【0-1】:";
cin >> ch;
}
if (ch == "0") break;
else
{
ts.erase(it);
writeFile();
cout << "\t删除成功!" << endl;
break;
}
}
}
if (!flag) cout << "\t无法查询到该奶茶信息,无法删除!\n" << endl;
cout << "\t";
system("pause");
}
else
{
break;
}
}
}

//修改奶茶信息
void updateList()
{
while(true)
{
system("cls");
cout << "\t*****************************************欢迎来到修改奶茶信息功能*********************************************" << endl;
cout << "\t当前用户:" << this->admin.name << endl;
cout << "\t奶茶信息一览表"<<endl;
this->traverseTea1();
string sel = "0";
cout << "\t---------------------------" << endl;
cout << "\t1 按奶茶名称修改" << endl;
cout << "\t2 返回主菜单" << endl;
cout << "\t---------------------------" << endl;
cout << "\t请进行选择【1-2】:";
cin >> sel;
while(sel != "1" && sel != "2")
{
cout << "\t输入不合法,请重新选择【1-2】:";
cin >> sel;
}
if(sel == "1")
{
bool flag = false;
string keyName;
cout << "\t请输入待修改奶茶的名称:";
cin >> keyName;
for (int i = 0; i < ts.size(); i++)
{
if (ts[i].teaName == keyName)
{
flag = true;
cout << "\t待修改奶茶当前信息如下:" << endl;
line(110);
ts[i].showTeaDetail();
line(110);
Tea t = ts[i];
cout << "\t请输入修改后的奶茶名称:";
bool check = false;
do
{
check = false;
cin >> t.teaName;
for(int j = 0; j < ts.size(); ++j)
{
if(t.teaName == ts[j].teaName && i != j)
{
cout<<"\t系统中已存在该奶茶信息,请重新输入:";
check = true;
break;
}
}
}
while(check);
cout << "\t请输入修改后的配料信息:"<<endl;
int k = 0;
string option = "1";
while(option == "1")
{
string st;
cout << "\t第" << k + 1 << "种配料:";
k++;
cin >> st;
t.ingredients.push_back(st);
cout << "\t第" << k << "种配料添加成功!是否继续添加?(1 是 0 否)" << endl;
cout << "\t请进行选择【0-1】:";
cin >> option;
while(option != "0" && option != "1")
{
cout << "\t输入不合法,请重新选择【0-1】:";
cin >> option;
}
}
t.num = t.ingredients.size();
cout << "\t请输入修改后的茶底:";
cin >> t.base;
cout << "\t请输入修改后的大杯价格:";
cin >> t.largePrice;
cout << "\t请输入修改后的中杯价格:";
cin >> t.mediumPrice;
cout << "\t请输入修改后的掌柜描述:";
cin >> t.description;
cout << "\t是否确认修改?(1 是 0 否)" << endl;
cout << "\t请进行选择【0-1】:";
string ch = "0";
cin >> ch;
while(ch != "0" && ch != "1")
{
cout << "\t输入不合法,请重新选择【0-1】:";
cin >> ch;
}

if (ch == "0") break;
else
{
ts[i] = t;
cout << "\t修改成功!" << endl;
writeFile();
break;
}
}
}
if (!flag) cout << "\t无法查询到该奶茶信息,无法修改!\n" << endl;
cout<<"\t";
system("pause");
}
else
{
break;
}
}
}

//查询奶茶信息
void selectList()
{
while (true)
{
system("cls");
cout << "\t*****************************************欢迎来到查询奶茶信息功能*********************************************" << endl;
cout << "\t-----------------" << endl;
cout << "\t1 按奶茶名称查询" << endl;
cout << "\t2 按奶茶茶底查询" << endl;
cout << "\t3 返回主菜单" << endl;
cout << "\t-----------------" << endl;
cout << "\t请进行选择【1-3】:";
string sel = "0";
cin >> sel;
while(sel != "1" && sel != "2" && sel != "3")
{
cout << "\t输入不合法,请重新选择【1-3】:";
cin >> sel;
}
if (sel == "1")
{
string keyName;
bool flag = false;
cout << "\t请输入待查询奶茶的名称:";
cin >> keyName;
cout << "\t查询结果如下:" << endl;
for (int i = 0; i < ts.size(); i++)
{
if (ts[i].teaName == keyName)
{
flag = true;
cout<<"\t" << keyName << "详细信息:"<<endl;
line(110);
ts[i].showTeaDetail();
line(110);
break;
}
}
if (!flag) cout << "\t无法查询到此奶茶相关信息!\n" << endl;
cout << "\t";
system("pause");
}
else if(sel == "2")
{
string keyBase;
bool flag = false;
cout << "\t请输入待查询奶茶的茶底:";
cin >> keyBase;
cout << "\t查询结果如下:" << endl;
for (int i = 0; i < ts.size(); i++)
{
if (ts[i].base == keyBase)
{
flag = true;
line(110);
ts[i].showTeaDetail();
}
}
if(flag) line(110);
if (!flag) cout << "\t无法查询到此奶茶相关信息!\n" << endl;
cout << "\t";
system("pause");
}
else
{
break;
}
}
}
//遍历奶茶容器 输出方式采用格式1
void traverseTea1()
{
line(55);
cout<<"\t";
Tea::showHeader();
line(55);
for (int i = 0; i < ts.size(); i++)
{
cout << "\t";
ts[i].showTeaInfo();
}
line(55);
}
//遍历奶茶容器 输出方式采用格式2
void traverseTea2()
{

for (int i = 0; i < ts.size(); i++)
{
line(110);
ts[i].showTeaDetail();
}
line(110);
}
//输出横线 n代表长度
void line(int n)
{
cout<<"\t";
for(int i = 0; i < n; ++i) cout<<"-";
cout<<endl;
}
//遍历订单容器
void traverseOrders()
{
line(107);
cout<<"\t";
Order::showHeader();
line(107);
for (int i = 0; i < os.size(); i++)
{
cout << "\t";
os[i].showOrderInfo();
}
line(107);
}
//遍历用户信息 主要用于其它函数调用
void traverseUsers()
{
line(60);
cout<<"\t";
Person::showHeader();
line(60);
for(int i = 0; i < ps.size(); i++)
{
cout<<"\t";
ps[i].showPersonInfo();
}
line(60);
}
//奶茶信息一览表
void displayList()
{
system("cls");
cout << "\t******************************************欢迎来到奶茶信息一览表**********************************************" << endl;
cout << "\t奶茶信息一览表"<<endl;
this->traverseTea2();
cout << "\t";
system("pause");
}
// 历史订单记录一览表
void displayOrders()
{
system("cls");
cout << "\t****************************************欢迎来到历史订单记录一览表********************************************" << endl;
cout << "\t历史订单记录一览表"<<endl;
this->traverseOrders();
cout << "\t";
system("pause");
}

//处理订单
void manageOrders()
{
while(true)
{
system("cls");
cout << "\t******************************************欢迎来到订单处理功能*********************************************" << endl;
cout <<"\t当前未出餐订单如下:" << endl;
line(107);
cout<<"\t";
Order::showHeader();
line(107);
for (int i = 0; i < os.size(); i++)
{
if(os[i].state == "未出餐")
{
cout << "\t";
os[i].showOrderInfo();
}
}
line(107);
string sel = "0";
cout << "\t---------------------------" << endl;
cout << "\t1 处理订单" << endl;
cout << "\t2 返回主菜单" << endl;
cout << "\t---------------------------" << endl;
cout << "\t请进行选择【1-2】:";
cin >> sel;
while(sel != "1" && sel != "2")
{
cout << "\t输入不合法,请重新选择【1-2】:";
cin >> sel;
}
if(sel == "1")
{
cout << "\t请输入待处理的订单号:";
string keyId;
cin>>keyId;
bool flag = false;
for (int i = 0; i < os.size(); i++)
{
if(os[i].id == keyId && os[i].state == "已出餐")
{
flag = true;
cout<<"\t该订单已出餐,无需重复处理!"<<endl;
cout<<"\t";
system("pause");
break;
}
else if(os[i].id == keyId && os[i].state == "未出餐")
{
flag = true;
cout<<"\t待处理订单信息如下:"<<endl;
line(107);
cout<<"\t";
Order::showHeader();
line(107);
cout<<"\t";
os[i].showOrderInfo();
line(107);
cout << "\t是否立即出餐?(1 是 0 否)" << endl;
cout << "\t请进行选择【0-1】:";
string ch = "0";
cin >> ch;
while(ch != "0" && ch != "1")
{
cout << "\t输入不合法,请重新选择【0-1】:";
cin >> ch;
}
if (ch == "0") break;
else
{
os[i].state = "已出餐";
writeFile();
cout << "\t出餐成功!" << endl;
cout<<"\t";
system("pause");
break;
}
}
}
if(!flag)
{
cout<<"\t系统中无法查询到该订单信息!"<<endl;
cout<<"\t";
system("pause");
}
}
else
{
break;
}
}
}

//管理用户功能:包含添加新用户和删除用户 管理员特有权限
void manageUsers()
{
while(true)
{
system("cls");
cout << "\t************************************欢迎来到管理用户功能****************************************" << endl;
cout << "\t普通用户信息表"<<endl;
this->traverseUsers();
string sel = "0";
cout << "\t-----------------" << endl;
cout << "\t1 添加新用户" << endl;
cout << "\t2 删除用户" << endl;
cout << "\t3 返回主菜单" << endl;
cout << "\t-----------------" << endl;
cout << "\t请进行选择【1-3】:";
cin >> sel;
while(sel != "1" && sel != "2" && sel != "3")
{
cout << "\t输入不合法,请重新选择【1-3】:";
cin >> sel;
}
if(sel == "1")
{
Person p;
p.mark = "2";
cout<<"\t输入用户名:";
bool check = false;
do
{
check = false;
cin >> p.name;
for(int i = 0; i < ps.size(); ++i)
{
if(p.name == ps[i].name)
{
cout<<"\t该用户名已存在,请重新输入:";
check = true;
break;
}
}
}
while(check);
cout<<"\t输入密码:";
cin>>p.pwd;
p.money = 0;
p.dotime = Tool::getTime();
p.mark = "2";
ps.push_back(p);
writeFile();
cout<<"\t添加成功!"<<endl;
cout<<"\t";
system("pause");
}
else if(sel == "2")
{
string keyName;
bool flag = false;
cout << "\t请输入待删除的用户名:";
cin >> keyName;

for (vector<Person>::iterator it = ps.begin(); it != ps.end(); ++it)
{
if (it->name == keyName)
{
flag = true;
cout << "\t待删除用户的基本信息如下:" << endl;
line(60);
cout<<"\t";
Person::showHeader();
line(60);
cout<<"\t";
it->showPersonInfo();
line(60);
cout << "\t是否确认删除该用户?(1 是 0 否)" << endl;
cout << "\t请进行选择【0-1】:";
string ch = "0";
cin >> ch;
while(ch != "0" && ch != "1")
{
cout << "\t输入不合法,请重新选择【0-1】:";
cin >> ch;
}
if (ch == "0") break;
else
{
ps.erase(it);
writeFile();
cout << "\t删除成功!" << endl;
break;
}
}
}
if (!flag) cout << "\t查无此人,无法删除!\n" << endl;
cout << "\t";
system("pause");
}
else
{
break;
}
}
}

//小程序点餐
void order(Person& p)
{
while(true)
{
system("cls");
cout << "\t*******************************************欢迎来到小程序点餐功能*********************************************" << endl;
cout << "\t当前用户:" << p.name <<"(普通用户)"<< endl;
cout << "\t本店有以下口味的饮品:"<<endl;
this->traverseTea1();
string sel = "0";
cout << "\t-----------------" << endl;
cout << "\t1 点餐" << endl;
cout << "\t2 返回主菜单" << endl;
cout << "\t-----------------" << endl;
cout << "\t请进行选择【1-2】:";
cin >> sel;
while(sel != "1" && sel != "2")
{
cout << "\t输入不合法,请重新选择【1-2】:";
cin >> sel;
}
if(sel == "1")
{
Order o;
Tea t;
string keyName;
cout<<"\t输入想订购的奶茶名称:";
bool flag = true;
cin>>keyName;
for(int i = 0; i < ts.size(); ++i)
{
if(ts[i].teaName == keyName)
{
flag = false;
line(110);
ts[i].showTeaDetail();
line(110);
o.teaName = keyName;
cout<<"\t请选择规格(大杯 中杯):";
cin >> o.cupSize;
while(o.cupSize != "大杯" && o.cupSize != "中杯")
{
cout<<"\t输入非法!请重新选择:";
cin >> o.cupSize;
}
if(o.cupSize == "大杯") o.price = ts[i].largePrice;
else o.price = ts[i].mediumPrice;
cout<<"\t请选择甜度(全糖 七分糖 五分糖 去糖):";
cin >> o.sugar;
cout<<"\t请选择温度(正常冰 少冰 常温 热):";
cin >> o.tem;
cout<<"\t请输入订购杯数:";
cin >> o.cupNum;
o.buyer = p.name;
o.state = "未出餐";
cout << "\t"<<o.cupNum<<"杯" << ts[i].teaName<< ",共计" << o.price * o.cupNum << "元,是否确认下单?(1 是 0 否)" << endl;
cout << "\t请进行选择【0-1】:";
string ch = "0";
cin >> ch;
while(ch != "0" && ch != "1")
{
cout << "\t输入不合法,请重新选择【0-1】:";
cin >> ch;
}
if(ch == "0") break;
else
{
o.buytime = Tool::getTime();
if(os.size() > 0) o.id = to_string(atoi(os.back().id.c_str()) + 1);
else o.id = to_string(os.size() + 1);
os.push_back(o);
writeFile();
cout<<"\t下单成功!"<<endl;
cout <<"\t";
system("pause");
break;
}
}
}
if(flag)
{
cout<<"\t抱歉!本店没有该种饮品!"<<endl;
cout <<"\t";
system("pause");
}
}
else if(sel == "2")
{
break;
}
}
}
//申请退款
void refund(Person& p)
{
while(true)
{
system("cls");
cout << "\t*******************************************欢迎来到申请退款功能********************************************" << endl;
cout << "\t当前用户:" << p.name <<"(普通用户)"<< endl;
cout << "\t您可以选择您未出餐的订单进行退订及申请退款,您未出餐的订单如下:"<<endl;
line(107);
cout<<"\t";
Order::showHeader();
line(107);
for (int i = 0; i < os.size(); i++)
{
if(os[i].buyer == p.name && os[i].state == "未出餐")
{
cout << "\t";
os[i].showOrderInfo();
}
}
line(107);
string sel = "0";
cout << "\t-----------------" << endl;
cout << "\t1 申请退款" << endl;
cout << "\t2 返回主菜单" << endl;
cout << "\t-----------------" << endl;
cout << "\t请进行选择【1-2】:";
cin >> sel;
while(sel != "1" && sel != "2")
{
cout << "\t输入不合法,请重新选择【1-2】:";
cin >> sel;
}
if(sel == "1")
{
Order o;
Tea t;
string keyId;
cout<<"\t输入想申请退款的订单号:";
bool flag = true;
cin>>keyId;
for(vector<Order>::iterator it = os.begin(); it != os.end(); ++it)
{
if(it->id == keyId && it->state == "未出餐")
{
flag = false;
cout <<"\t您这一单的信息如下:"<<endl;
line(107);
cout<<"\t";
Order::showHeader();
line(107);
cout << "\t";
it->showOrderInfo();
line(107);
cout<<"\t是否确认申请退款?(1 是 0 否)";
cout << "\t请进行选择【0-1】:";
string ch = "0";
cin >> ch;
while(ch != "0" && ch != "1")
{
cout << "\t输入不合法,请重新选择【0-1】:";
cin >> ch;
}
if(ch == "0") break;
else
{
double temp = (it->price) * (it->cupNum);
os.erase(it);
writeFile();
cout<<"\t退款成功!"<< temp << "元已到账!" << endl;
cout <<"\t";
system("pause");
break;
}
}
else if(it->id == keyId && it->state == "已出餐")
{
cout<<"\t抱歉,已出餐订单无法退款!"<<endl;
cout<<"\t";
system("pause");
break;
}
}
if(flag)
{
cout<<"\t抱歉!您的历史订单记录中没有该订单相关信息,请检查是否输入有误!"<<endl;
cout <<"\t";
system("pause");
}
}
else if(sel == "2")
{
break;
}
}
}
//个人历史订单记录一览表
void myOrders(Person& p)
{
system("cls");
cout << "\t*************************************欢迎来到个人历史订单记录一览表****************************************" << endl;
cout << "\t个人历史订单记录一览表"<<endl;
line(107);
cout<<"\t";
Order::showHeader();
line(107);
for (int i = 0; i < os.size(); i++)
{
if(os[i].buyer == p.name)
{
cout << "\t";
os[i].showOrderInfo();
}
}
line(107);
cout << "\t";
system("pause");
}

//修改用户密码
void updatePwd(Person& p)
{
while(true)
{
string sel = "0";
system("cls");
cout << "\t**************************************欢迎来到修改密码功能*****************************************" << endl;
cout << "\t当前用户:" << p.name <<"(普通用户)"<< endl;
cout << "\t------------------" << endl;
cout << "\t1 修改密码" << endl;
cout << "\t2 返回主菜单" << endl;
cout << "\t------------------" << endl;
cout << "\t请选择【1-2】:";
cin >> sel;
while(sel != "1" && sel != "2")
{
cout << "\t输入不合法,请重新输入【1-2】:";
cin >> sel;
}
if(sel == "1")
{
cout <<"\t输入当前密码:";
string tmpPwd;
cin>>tmpPwd;
while(tmpPwd != p.pwd)
{
cout<<"\t输入错误,请重新输入:";
cin>>tmpPwd;
}
cout<<"\t输入新密码:";
string newPwd;
cin>>newPwd;
cout << "\t确认修改?(1 是 0 否)" << endl;
cout << "\t请进行选择【0-1】:";
string ch = "0";
cin >> ch;
while(ch != "0" && ch != "1")
{
cout << "\t输入不合法,请重新选择【0-1】:";
cin >> ch;
}
if(ch == "1")
{
for(int i = 0; i < ps.size(); i++)
{
if(ps[i].name == p.name && ps[i].pwd == p.pwd)
{
ps[i].pwd = newPwd;
break;
}
}
writeFile();
cout<<"\t修改成功!自动返回登录界面!"<<endl;
cout<<"\t";
system("pause");
this->menu();
}
}
else if(sel == "2")
{
break;
}
}
}

//清空系统所有数据
void clearList()
{
while (true)
{
string sel = "0";
system("cls");
cout << "\t************************************欢迎来到清空系统数据功能***************************************" << endl;
cout << "\t当前用户:" << this->admin.name <<"(管理员)"<< endl;
cout << "\t------------------" << endl;
cout << "\t1 确认清空系统数据" << endl;
cout << "\t2 返回主菜单" << endl;
cout << "\t------------------" << endl;
cout << "\t请慎重选择【1-2】:";
cin >> sel;
while(sel != "1" && sel != "2")
{
cout << "\t输入不合法,请重新输入【1-2】:";
cin >> sel;
}
if (sel == "1")
{
ts.clear();
ps.clear();
os.clear();
cout << "\t清空成功!" << endl;
cout << "\t";
system("pause");
writeFile();
}
else
{
break;
}
}
}
};

int main()
{
TeaSystem tst;
//设置管理员账号:admin 密码:123 后三个参数为默认参数
tst.setAdmin("admin", "123", "1", Tool::getTime(), 0);
tst.init(); //初始化
tst.menu(); //登录菜单
return 0;
}

运行方法

  1. 新建一个cpp文件,命名为”main.cpp”。
  2. 将系统完整代码复制粘贴至”main.cpp”中。
  3. 利用Dev C++运行”main.cpp”即可(系统管理员默认账号:admin 密码:123)。