-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathController.java
1098 lines (1051 loc) · 39.2 KB
/
Controller.java
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
import java.io.*;
import java.util.*;
/**
* Write a description of class NewController here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class Controller
{
private UserController userController;
private ProductController productController;
private TransactionController transactionController;
private Cart cart;
/**
* Constructor for objects of class Controller
*/
public Controller()
{
userController = new UserController();
productController = new ProductController();
transactionController = new TransactionController();
cart = new Cart();
}
/**
* Non-default Constructor for objects of class Controller
*/
public Controller(UserController userController,ProductController productController,Cart cart)
{
this.userController = userController;
this.productController = productController;
this.cart = cart;
}
/**
* user can add new product
*/
private void addProduct()
{
Scanner console = new Scanner(System.in);
System.out.println("\u000c");
Menu menu = new Menu();
ReadInput read = new ReadInput();
System.out.println("Adding new product");
String name = read.readProductName();
if (name.equals("X"))
return;
char unit = menu.inventoryUnit();
if (unit == 'X')
return;
double amount = read.readProductAmount();
if (amount == -1)
return;
String origin = read.readProductOrigin();
if (origin.equals("X"))
return;
int shelfLife = read.readProductShelfLife();
if (shelfLife == -1)
return;
double discount = read.readProductDiscount();
if (discount == -1)
return;
String category = read.readProductCategory();
if (category.equals("X"))
return;
ArrayList<String[]> sellingOption = chooseSellingOption(unit);
if (sellingOption.size() == 0)
return;
productController.addProduct(name, amount, origin, shelfLife, discount, category, sellingOption);
System.out.println("Please press enter to continue!");
console.nextLine();
}
/**
* add product to cart list
*/
private void addProductToCart(String id)
{
Scanner console = new Scanner(System.in);
//System.out.println("Please enter product id: ");
//String id = console.nextLine().trim();
int productIndex = productController.verifyProductId(id);
if (productIndex >= 0)
{
int optionSize = productController.showSellingOption(productIndex);
System.out.println("Please enter the number of selling option(Enter \"X\" to cancel):");
int option = chooseOption(optionSize);
if (option == -1)
return;
String name = productController.getProductList().get(productIndex).getName();
String optionName = productController.getProductList().get(productIndex).getSellingOption(option - 1)[0];
String rate = productController.getProductList().get(productIndex).getSellingOption(option - 1)[1];
double amount = chooseAmount(productIndex,rate);
if (amount == -1)
return;
//productController.getProductList().get(productIndex).setAmount(productController.getProductList().get(productIndex).getAmount() - amount);
double discount = productController.getProductList().get(productIndex).getDiscount();
String price = productController.getProductList().get(productIndex).getSellingOption(option - 1)[2];
price = String.valueOf(discount * Double.parseDouble(price) * amount);
cart.addToCart(id,name,String.valueOf(amount),optionName,price,rate);
System.out.println("Item added into cart!");
double totalAmount = productController.getProductList().get(productIndex).getAmount();
productController.getProductList().get(productIndex).setAmount(totalAmount - amount * Double.parseDouble(rate));
}
else if (productIndex == -2)
{
System.out.println("Product expired!");
}
else
System.out.println("Product not found,please view product to check product id!");
System.out.println("Please press enter to continue! ");
console.nextLine();
}
/**
* add product to list, if user enter "x" return to menu,otherwise add product
*/
private void addProductToCartChoosedFromMenu()
{
Scanner console = new Scanner(System.in);
System.out.println("Please enter product id(Enter \"X\" to cancel): ");
String id = console.nextLine().trim();
if (id.equals("x") || id.equals("X"))
return;
addProductToCart(id);
}
/**
* customer can change their information
*/
private void changeCustomerInformation(int index)
{
System.out.println("\u000c");
Menu menu = new Menu();
userController.getCustomerList().get(index).displayCustomer();
ReadInput read = new ReadInput();
char option = menu.changeCustomerInformation();
switch(option)
{
case 'A':userController.changeCustomerName(index,read.readUserName());break;
case 'B':boolean ifChanged = false;
do
{
ifChanged = userController.changeCustomerEmail(index,read.readUserEmail());
}while (ifChanged == false);
break;
case 'C':userController.changeCustomerPassword(index,read.readUserPassword());break;
case 'D':userController.changeCustomerAddress(index,read.readUserAddress());break;
case 'E':userController.changeCustomerPhone(index,read.readUserPhone()); break;
case 'X':customerMenu(index);break;
default:break;
}
}
/**
* allow owner change their information
*/
private void changeOwnerInformation()
{
Menu menu = new Menu();
ReadInput read = new ReadInput();
System.out.println("\u000c");
userController.getOwnerList().get(0).displayOwner();
char option = menu.changeOwnerInformation();
switch(option)
{
case 'A':
{
String name = read.readUserName();
if (name.equals("X"))
break;
userController.changeOwnerName(name);
break;
}
case 'B':
{
String email = read.readUserEmail();
if (email.equals("X"))
break;
userController.changeOwnerEmail(email);
break;
}
case 'C':
{
String password = read.readUserPassword();
if (password.equals("X"))
break;
userController.changeOwnerPassword(password);
break;
}
case 'X':ownerMenu();break;
default:break;
}
}
/**
* choose the product amount
*/
private double chooseAmount(int index,String rate)
{
ReadInput read = new ReadInput();
double amount = read.readProductAmount();
if (amount == -1)
return -1;
double amountRate = Double.parseDouble(rate);
while(amount * amountRate > productController.getProductList().get(index).getAmount())
{
System.out.println("The amount in stock is " + productController.getProductList().get(index).getAmount());
System.out.println("Amount higher than in stock,please enter again(Enter \"X\" to cancel):");
amount = read.readProductAmount();
if (amount == -1)
return -1;
}
return amount;
}
/**
* amount option
*/
private int chooseOption(int size)
{
ReadInput read = new ReadInput();
String option = read.readPurchaseOption();
if (option.equals("X") || option.equals("x"))
return -1;
int optionValue = Integer.parseInt(option);
while (optionValue > size)
{
System.out.println("Input invalid. Please choose 1..." + size + "(Enter \"X\" to cancel):");
option = read.readPurchaseOption();
if (option.equals("X") || option.equals("x"))
return -1;
optionValue = Integer.parseInt(option);
}
return optionValue;
}
/**
* user can add more option for selling the product
*/
private ArrayList<String[]> chooseSellingOption(char unit)
{
Menu menu = new Menu();
ReadInput read = new ReadInput();
ArrayList<String[]> sellingOption = new ArrayList<String[]>();
if (unit == 'A')
{
do
{
char option = menu.sellingOptionByWeight();
switch(option)
{
case 'A':
{
String price = read.readProductPrice();
if (price.equals("X"))
return new ArrayList<String[]>();
sellingOption.add(new String[]{"kg", "1", price});
break;
}
case 'B':
{
String exchangeAmount = read.readProductExchangeAmount("buntch");
if (exchangeAmount.equals("X"))
return new ArrayList<String[]>();
String price = read.readProductPrice();
if (price.equals("X"))
return new ArrayList<String[]>();
sellingOption.add(new String[]{"buntch", exchangeAmount, price});
break;
}
case 'C':
{
String exchangeAmount = read.readProductExchangeAmount("bag");
if (exchangeAmount.equals("X"))
return new ArrayList<String[]>();
String price = read.readProductPrice();
if (price.equals("X"))
return new ArrayList<String[]>();
sellingOption.add(new String[]{"bag", exchangeAmount, price});
break;
}
default:break;
}
System.out.println("Do you want add more selling option?[y/n]");
}
while(read.readYNOption().equals("Y"));
}
else
{
do
{
char option = menu.sellingOptionByAmount();
switch(option)
{
case 'A':
{
String price = read.readProductPrice();
if (price.equals("X"))
return new ArrayList<String[]>();
sellingOption.add(new String[]{"whole","1",price});
break;
}
case 'B':
{
String exchangeAmount = read.readProductExchangeAmount("half");
if (exchangeAmount.equals("X"))
return new ArrayList<String[]>();
String price = read.readProductPrice();
if (price.equals("X"))
return new ArrayList<String[]>();
sellingOption.add(new String[]{"half", exchangeAmount, price});
break;
}
default:break;
}
System.out.println("Do you want add more selling option?[y/n]");
}
while(read.readYNOption().equals("Y"));
}
return sellingOption;
}
/**
* clear cart
*/
private void clearCart()
{
for (int i = 0; i < cart.getPurchaseList().size(); i++)
{
returnToProduct(i);
}
cart = new Cart();
}
/**
* customer login method
*/
private void customerLogin()
{
int index = userController.testCustomerLogin();
if (index >= 0)
customerMenu(index);
else
{
//System.out.println("Please press enter to continue!");
//Scanner console = new Scanner(System.in);
//console.nextLine();
mainMenu();
}
}
/**
* customer after loggin
*/
private void customerMenu(int index)
{
System.out.println("\u000c");
System.out.println("Hello, customer " + userController.getCustomerList().get(index).getEmail() + "!");
Menu menu = new Menu();
char option = menu.customerMenu();
Scanner console = new Scanner(System.in);
switch(option)
{
case 'A':addProductToCartChoosedFromMenu(); customerMenu(index); break;
case 'B':deleteProductFromCart(); customerMenu(index); break;
case 'C':purchaseProduct(index); break;
case 'D':viewProduct(); customerMenu(index); break;
case 'E':
{
cart.displayCart();
System.out.println("Please press enter to continue!");
console.nextLine();
customerMenu(index);
break;
}
case 'F':searchProduct(); customerMenu(index); break;
case 'G':customerViewTransaction(index); break;
case 'H':changeCustomerInformation(index); customerMenu(index); break;
case 'I':unregister(index); break;
case 'X':clearCart(); mainMenu(); break;
default:break;
}
}
/**
* when customer view the transaction proccess
*/
private void customerViewTransaction(int index)
{
Scanner console = new Scanner(System.in);
String userEmail = userController.getCustomerList().get(index).getEmail();
transactionController.customerViewTransaction(userEmail);
System.out.println("Please press enter to continue! ");
console.nextLine();
customerMenu(index);
}
/**
* customer can delete items in their list
*/
private void deleteProductFromCart()
{
Scanner console = new Scanner(System.in);
System.out.println("\u000c");
if (cart.getPurchaseList().size() == 0)
{
System.out.println("You don't have any item in cart!");
}
else
{
cart.displayCart();
System.out.println("Please choose the item to delete(Enter \"X\" to cancel):");
int index = chooseOption(cart.getPurchaseList().size()) - 1;
if (index < 0)
return;
returnToProduct(index);
cart.removeFromCart(index);
System.out.println("Item reomved from cart!");
}
System.out.println("Please press enter to continue! ");
console.nextLine();
}
/**
* owner can edit the information of product
*/
private void editProduct()
{
System.out.println("Please enter the product id which you want edit(Enter \"X\" to cancel):");
Scanner console = new Scanner(System.in);
String id = console.nextLine().trim();
if (id.equals("x") || id.equals("X"))
return;
int productIndex = productController.productIndex(id);
if (productIndex == -1)
{
System.out.println("Product doesn't exist!");
System.out.println("Please press enter to continue!");
console.nextLine();
ownerMenu();
}
else
editProduct(productIndex);
}
/**
* owner can edit the information of product
*/
private void editProduct(int index)
{
Menu menu = new Menu();
ReadInput read = new ReadInput();
System.out.println("\u000c");
productController.getProductList().get(index).displayProduct();
char option = menu.editProduct();
switch(option)
{
case 'A':
{
String name = read.readProductName();
if (name.equals("x") || name.equals("X"))
break;
productController.editProductName(index, name);
break;
}
case 'B':
{
editSellingOption(index);
break;
}
case 'C':
{
String category = read.readProductCategory();
if (category.equals("x") || category.equals("X"))
break;
productController.editCategory(index, category);
break;
}
case 'D':
{
double amount = read.readProductAmount();
if (amount == -1)
break;
productController.editAmount(index, amount);
break;
}
case 'E':
{
String origin = read.readProductOrigin();
if (origin.equals("x") || origin.equals("X"))
break;
productController.editOrigin(index, origin);
break;
}
case 'F':
{
int shelfLife = read.readProductShelfLife();
if (shelfLife == -1)
break;
productController.editShelfLife(index, shelfLife);
break;
}
case 'G':
{
double discount = read.readProductDiscount();
if (discount == -1)
break;
productController.editDiscount(index, discount);
break;
}
case 'X': ownerMenu();break;
default : break;
}
editProduct(index);
}
/**
* edit the selling option of product
*/
private void editSellingOption(int index)
{
char unit = productController.getInventoryUnit(index);
ArrayList<String[]> sellingOption = chooseSellingOption(unit);
if (sellingOption.size() == 0)
return;
productController.editSellingOption(index,sellingOption);
}
/**
* main method
*/
public void main()
{
Scanner console = new Scanner(System.in);
Menu menu = new Menu();
userController = new UserController();
productController = new ProductController();
transactionController = new TransactionController();
System.out.println("\u000c");
setList();
menu.welcomePage();
System.out.println("Please press enter to continue!");
console.nextLine();
mainMenu();
}
/**
* menu options
*/
private void mainMenu()
{
System.out.println("\u000c");
System.out.println("Hello, guest user!");
Menu menu = new Menu();
char option = menu.mainMenu();
switch(option)
{
case 'A': ownerLogin();break;
case 'B': customerLogin();break;
case 'C': register(); mainMenu(); break;
case 'D': unloggedInMenu(-1);break;
case 'X': menu.exitPage();
writeDetails();
break;
default : break;
}
}
/**
* owner login
*/
private void ownerLogin()
{
if (userController.testOwnerLogin())
ownerMenu();
else
mainMenu();
}
/**
* the menu interface for owner
*/
private void ownerMenu()
{
System.out.println("\u000c");
System.out.println("Hello, owner " + userController.getOwnerList().get(0).getEmail() + "!");
Menu menu = new Menu();
Scanner console = new Scanner(System.in);
char option = menu.ownerMenu();
switch(option)
{
case 'A':addProduct();
ownerMenu();break;
case 'B':productController.deleteProduct();
System.out.println("Please press enter to continue!");
console.nextLine();
ownerMenu();
break;
case 'C':ownerViewProduct(); ownerMenu(); break;
case 'D':editProduct();break;
case 'E':ownerSearchProduct(); ownerMenu(); break;
case 'F':userController.viewCustomer();
System.out.println("Please press enter to continue!");
console.nextLine();
ownerMenu();
break;
case 'G':ownerViewTransaction();break;
case 'H':changeOwnerInformation();break;
case 'X':mainMenu();break;
default:break;
}
}
/**
* owner can search the product
*/
private void ownerSearchProduct()
{
Menu menu = new Menu();
Scanner console = new Scanner(System.in);
ReadInput read = new ReadInput();
char option = menu.searchProductMenu();
int size = 0;
switch(option)
{
case 'A':
{
size = productController.searchProductByName();
if (size == -1)
return;
break;
}
case 'B':
{
size = productController.searchByCategory(read.readProductCategory());
if (size == -1)
return;
break;
}
case 'C':
{
size = productController.searchByOrigin();
if (size == -1)
return;
break;
}
case 'D':
{
size = searchByDiscount();
if (size == -1)
return;
break;
}
case 'X': break;
default: break;
}
if (productController.getSearchResult().size() == 0)
{
System.out.println("Please press enter to continue!");
console.nextLine();
return;
}
if (option != 'X')
{
System.out.println("Do you want to eidt product?(y/n):");
String o = read.readYNOption();
if (o.equals("Y"))
{
System.out.println("Please choose product from above list(Enter \"X\" to cancel):");
int choice = chooseOption(size);
if (choice < 0)
return;
String id = productController.getSearchResult().get(choice - 1).getId();
int index = productController.productIndex(id);
editProduct(index);
}
}
}
/**
* owner can view the product information
*/
private void ownerViewProduct()
{
ReadInput read = new ReadInput();
int size = productController.viewProduct();
System.out.println("Do you want to edit product?(y/n):");
String option = read.readYNOption();
if (option.equals("Y"))
{
System.out.println("Please choose product from above list(Enter \"X\" to cancel):");
int choice = chooseOption(size);
if (choice < 0)
return;
//String id = productController.getProductList().get(choice - 1).getId();
editProduct(choice - 1);
}
}
/**
* owner can view the transaction process
*/
private void ownerViewTransaction()
{
Scanner console = new Scanner(System.in);
for (int index = 0; index < transactionController.getTransactionList().size(); index++)
{
transactionController.getTransactionList().get(index).displayTransaction();
System.out.println("------------------------------------------------------------------------------------");
}
System.out.println("Please press enter to continue! ");
console.nextLine();
ownerMenu();
}
/**
* user need to login first and then purchase
*/
private void purchaseProduct(int index)
{
Scanner console = new Scanner(System.in);
ReadInput read = new ReadInput();
System.out.println("\u000c");
if (index == -1)
{
System.out.println("You are not logged in, please log in or register first!");
System.out.println("Please press enter to continue! ");
console.nextLine();
mainMenu();
}
else
{
String userEmail = userController.getCustomerList().get(index).getEmail();
if (cart.getPurchaseList().size() == 0)
{
System.out.println("There is no item in cart, please add some products in cart and try again!");
System.out.println("Please press enter to continue! ");
console.nextLine();
customerMenu(index);
}
else
{
cart.displayCart();
System.out.println("Please confirm the above cart detail, do you want to proceed the purchase?(Y/N)");
String option = read.readYNOption();
if (option.trim().toLowerCase().equals("y"))
{
System.out.println("\u000c");
System.out.println("Payment successful!");
System.out.println("System has generated your transaction, detail shown below: ");
transactionController.generateTransaction(userEmail, cart.getPurchaseList(), cart.caculateTotalPrice());
cart = new Cart();
System.out.println("Please press enter to continue! ");
console.nextLine();
customerMenu(index);
}
else
customerMenu(index);
}
}
}
/**
* read the detailing of the list
*/
private ArrayList<String> readDetails(String fileName)
{
ArrayList<String> detailList = new ArrayList<String>();
try
{
FileReader inputFile = new FileReader(fileName);
try
{
Scanner parser = new Scanner(inputFile);
String detail = parser.nextLine();
while (!detail.equals("-1"))
{
detailList.add(detail);
detail = parser.nextLine();
}
}
catch(Exception exception)
{
System.out.println(fileName + " content illegal.Please check file content!");
}
finally
{
inputFile.close();
}
}
catch(FileNotFoundException exception)
{
System.out.println(fileName + " not found");
}
catch(IOException exception)
{
System.out.println("Unexpected I/O exception occurs.Please use another file");
}
return detailList;
}
/**
* allow user register in the system
*/
private void register()
{
ReadInput read = new ReadInput();
String name = read.readUserName();
if (!name.equals("X"))
{
String email = read.readUserEmail();
if (email.equals("X"))
return;
if (!userController.ifEmailSame(email))
{
String password = read.readUserPassword();
if (password.equals("X"))
return;
String address = read.readUserAddress();
if (address.equals("X"))
return;
String phone = read.readUserPhone();
if (phone.equals("X"))
return;
userController.register(name, email, password, address, phone);
System.out.println("New customer registered!");
}
else if (userController.ifEmailSame(email))
{
System.out.println("Account has been registered, login with this email or register with an new email!");
}
System.out.println("Please press enter to continue!");
Scanner console = new Scanner(System.in);
console.nextLine();
}
}
/**
* return to product list
*/
private void returnToProduct(int index)
{
String productId = cart.getPurchaseList().get(index)[0];
String sellingOption = cart.getPurchaseList().get(index)[3];
double amount = Double.parseDouble(cart.getPurchaseList().get(index)[2]);
for (int i = 0; i < productController.getProductList().size(); i++)
{
if (productController.getProductList().get(i).getId().equals(productId))
{
for (int j = 0; j < productController.getProductList().get(i).getSellingOptionList().size(); j++)
{
if (productController.getProductList().get(i).getSellingOptionList().get(j)[0].equals(sellingOption))
{
double rate = Double.parseDouble(productController.getProductList().get(i).getSellingOptionList().get(j)[1]);
double totalAmount = productController.getProductList().get(i).getAmount();
totalAmount += rate * amount;
productController.getProductList().get(i).setAmount(totalAmount);
break;
}
}
break;
}
}
}
/**
* user can search discount product
*/
private int searchByDiscount()
{
Menu menu = new Menu();
ReadInput read = new ReadInput();
char option = menu.searchProductMenu();
System.out.println("Please enter minimum discount(range:(0,1])(Enter \"X\" to cancel): ");
double minDiscount = read.readProductDiscount();
if (minDiscount == -1)
return -1;
System.out.println("Please enter maximum discount(range:(0,1])(Enter \"X\" to cancel): ");
double maxDiscount = read.readProductDiscount();
if (maxDiscount == -1)
return -1;
while(minDiscount > maxDiscount)
{
System.out.println("Minimum discount can't be larger than maximum discount,please input again!");
System.out.println("Please enter minimum discount(range:(0,1])(Enter \"X\" to cancel): ");
minDiscount = read.readProductDiscount();
if (minDiscount == -1)
return -1;
System.out.println("Please enter maximum discount(range:(0,1])(Enter \"X\" to cancel): ");
maxDiscount = read.readProductDiscount();
if (maxDiscount == -1)
return -1;
}
int count = productController.searchByDiscount(minDiscount,maxDiscount);
return count;
}
/**
* user can search the product
*/
private void searchProduct()
{
Menu menu = new Menu();
Scanner console = new Scanner(System.in);
ReadInput read = new ReadInput();
char option = menu.searchProductMenu();
int size = 0;
switch(option)
{
case 'A':
{
size = productController.searchProductByName();
if (size == -1)
return;
break;
}
case 'B':
{
size = productController.searchByCategory(read.readProductCategory());
if (size == -1)
return;
break;
}
case 'C':
{
size = productController.searchByOrigin();
if (size == -1)
return;
break;
}
case 'D':
{
size = searchByDiscount();
if (size == -1)
return;
break;
}
case 'X': break;
default: break;
}
if (productController.getSearchResult().size() == 0)
{
System.out.println("Please press enter to continue!");
console.nextLine();
return;
}
if (option != 'X')
{
System.out.println("Do you want to add product to cart?(y/n):");
String o = read.readYNOption();
if (o.equals("Y"))
{
System.out.println("Please choose product from above list(Enter \"X\" to cancel):");
int choice = chooseOption(size);
if (choice < 0)
return;
String id = productController.getSearchResult().get(choice - 1).getId();
addProductToCart(id);
}
}
}
/**
* import the list information
*/
private void setList()
{
ArrayList<String> ownerDetails = readDetails("ownerDetails.txt");
ArrayList<String> customerDetails = readDetails("customerDetails.txt");
userController.setUserList(ownerDetails,customerDetails);
ArrayList<String> productDetails = readDetails("productDetails.txt");
productController.initialProductList(productDetails);
ArrayList<String> transactionDetails = readDetails("transactionDetails.txt");
transactionController.initialTransactionList(transactionDetails);
}
/**
*guest scan the system
*/
private void unloggedInMenu(int index)
{
System.out.println("\u000c");
System.out.println("Hello, guest user!");
Menu menu = new Menu();
char option = menu.unloggedInMenu();
Scanner console = new Scanner(System.in);
switch(option)
{
case 'A':addProductToCartChoosedFromMenu(); unloggedInMenu(index); break;
case 'B':deleteProductFromCart(); unloggedInMenu(index); break;
case 'C':purchaseProduct(index); break;
case 'D':viewProduct(); unloggedInMenu(index); break;
case 'E':