| Line 63... |
Line 63... |
| 63 |
put(19l,"PAYU");
|
63 |
put(19l,"PAYU");
|
| 64 |
}
|
64 |
}
|
| 65 |
});
|
65 |
});
|
| 66 |
|
66 |
|
| 67 |
public static enum EscalationMatrix {
|
67 |
public static enum EscalationMatrix {
|
| 68 |
SHIPPING_AND_DELIVERY("Product shipping and delivery related issues", Arrays.asList(34, 18, 47, 51)),
|
68 |
SHIPPING_AND_DELIVERY("Product shipping and delivery related issues", Arrays.asList(34, 65, 47, 51)),
|
| 69 |
RETURN_AND_REFUND("Product return, order refund, Payment status related issues", Arrays.asList(34)),
|
69 |
RETURN_AND_REFUND("Product return, order refund, Payment status related issues", Arrays.asList(34)),
|
| 70 |
CONTENT("Any questions or errors on the content about the product on our site", Arrays.asList(34, 10)),
|
70 |
CONTENT("Any questions or errors on the content about the product on our site", Arrays.asList(34, 10)),
|
| 71 |
PRODUCT_AND_PRICE("Product availability and its price related enquiries", Arrays.asList(34, 13)),
|
71 |
PRODUCT_AND_PRICE("Product availability and its price related enquiries", Arrays.asList(34, 13)),
|
| 72 |
TECHNICAL("Any technical errors on the site (or site not working properly)", Arrays.asList(34, 35)),
|
72 |
TECHNICAL("Any technical errors on the site (or site not working properly)", Arrays.asList(34, 35)),
|
| 73 |
ORDER_CANCELLATION("Cancelling an order", Arrays.asList(18, 34, 51)),
|
73 |
ORDER_CANCELLATION("Cancelling an order", Arrays.asList(65, 34, 51)),
|
| 74 |
BULK_DEAL("Any bulk deals related enquiries", Arrays.asList(34)),
|
74 |
BULK_DEAL("Any bulk deals related enquiries", Arrays.asList(34)),
|
| 75 |
PROMOTION_MARKETING_PARTNERSHIP("Any promotion, marketing or partnership proposals' related queries", Arrays.asList(34, 41)),
|
75 |
PROMOTION_MARKETING_PARTNERSHIP("Any promotion, marketing or partnership proposals' related queries", Arrays.asList(34, 41)),
|
| 76 |
COD_VERIFICATION("Any COD verification related tickets", Arrays.asList(34, 51)),
|
76 |
COD_VERIFICATION("Any COD verification related tickets", Arrays.asList(34, 51)),
|
| 77 |
ON_TIME_GUARANTEE("On Time Guarantee related enquiries",Arrays.asList(18, 47, 34)),
|
77 |
ON_TIME_GUARANTEE("On Time Guarantee related enquiries",Arrays.asList(65, 47, 34)),
|
| 78 |
RECHARGE_RELATED("Recharge related", Arrays.asList(34, 51)),
|
78 |
RECHARGE_RELATED("Recharge related", Arrays.asList(34, 51)),
|
| 79 |
DELIVERY_PROBLEM("", Arrays.asList(34, 47, 18, 51)),
|
79 |
DELIVERY_PROBLEM("", Arrays.asList(34, 47, 65, 51)),
|
| 80 |
OTHER("Any other issues", Arrays.asList(18, 34, 51));
|
80 |
OTHER("Any other issues", Arrays.asList(65, 34, 51));
|
| 81 |
|
81 |
|
| 82 |
private String description;
|
82 |
private String description;
|
| 83 |
private List<Integer> agentIds;
|
83 |
private List<Integer> agentIds;
|
| 84 |
|
84 |
|
| 85 |
EscalationMatrix(String description, List<Integer> agentIds) {
|
85 |
EscalationMatrix(String description, List<Integer> agentIds) {
|