| Line 69... |
Line 69... |
| 69 |
LOWER_PRICE_AVAILABLE_ELSEWHERE("Customer getting better price elsewhere"),
|
69 |
LOWER_PRICE_AVAILABLE_ELSEWHERE("Customer getting better price elsewhere"),
|
| 70 |
CUSTOMER_TESTING_WEBSITE("Customer is testing the site"),
|
70 |
CUSTOMER_TESTING_WEBSITE("Customer is testing the site"),
|
| 71 |
DUPLICATE_BOOKING("Customer booked an order twice by mistake"),
|
71 |
DUPLICATE_BOOKING("Customer booked an order twice by mistake"),
|
| 72 |
DEALER_ORDER("Order was place by a dealer"),
|
72 |
DEALER_ORDER("Order was place by a dealer"),
|
| 73 |
OUT_OF_STOCK("Ordered item is out of stock"),
|
73 |
OUT_OF_STOCK("Ordered item is out of stock"),
|
| 74 |
USER_WANTS_EARLY_DELIVERY("User wants order to be delivered before promised and expected date"),
|
74 |
CUSTOMER_WANTS_EARLY_DELIVERY("Customer wants order to be delivered before promised and expected date"),
|
| - |
|
75 |
NOT_INTERESTED_THIS_TIME("Customer decided against buying the product"),
|
| - |
|
76 |
WANT_SOME_OTHER_PRODUCT("Customer wants to buy different product"),
|
| - |
|
77 |
PLACED_ANOTHER_ORDER("Customer has placed another order buying different product"),
|
| - |
|
78 |
USER_WANTS_DELAYED_DELIVERY("Customer wants order to be delivered after promised and expected date"),
|
| - |
|
79 |
COLOR_OUT_OF_STOCK("Order Item(s) not present in the requested color"),
|
| 75 |
CUSTOMER_NOT_INTERESTED("Customer not interested for some other reason");
|
80 |
CUSTOMER_WANTS_OPEN_DELIVERY("Customer wants to pay money after seeing the product "),
|
| - |
|
81 |
OTHER("Order cancelled because of some miscellaneous reason");
|
| 76 |
|
82 |
|
| 77 |
private String description;
|
83 |
private String description;
|
| 78 |
|
84 |
|
| 79 |
CODCancelMatrix(String description) {
|
85 |
CODCancelMatrix(String description) {
|
| 80 |
this.description = description;
|
86 |
this.description = description;
|