| Line 31... |
Line 31... |
| 31 |
OrderStatus.REFUNDED,
|
31 |
OrderStatus.REFUNDED,
|
| 32 |
OrderStatus.REJECTED,
|
32 |
OrderStatus.REJECTED,
|
| 33 |
OrderStatus.FAILED});
|
33 |
OrderStatus.FAILED});
|
| 34 |
|
34 |
|
| 35 |
public static enum EscalationMatrix {
|
35 |
public static enum EscalationMatrix {
|
| - |
|
36 |
SHIPPING_AND_DELIVERY("Shipping, delivery related issues", Collections.singletonList(2)),
|
| 36 |
ORDER_AND_PAYMENT_STATUS("Shipping, delivery, return, refund, payment status etc. issues", Collections.singletonList(2)),
|
37 |
RETURN_AND_REFUND("Return, refund, payment status etc. issues", Collections.singletonList(2)),
|
| 37 |
CONTENT("Any questions or errors on the content about the product on our site", Collections.singletonList(10)),
|
38 |
CONTENT("Any questions or errors on the content about the product on our site", Collections.singletonList(10)),
|
| 38 |
PRICE_AND_BULK_DEAL("Any product, price, bulk deals etc enquiries", Collections.singletonList(13)),
|
39 |
BULK_DEAL("Any bulk deals related enquiries", Collections.singletonList(13)),
|
| - |
|
40 |
PRODUCT_AND_PRICE("Any produc availability, price related enquiries", Collections.singletonList(13)),
|
| 39 |
TECHNICAL("Any technical errors on the site (or site not working properly)", Collections.singletonList(11)),
|
41 |
TECHNICAL("Any technical errors on the site (or site not working properly)", Collections.singletonList(11)),
|
| 40 |
COD_VERIFICATION("Any COD verification related tickets", Collections.singletonList(12)),
|
42 |
COD_VERIFICATION("Any COD verification related tickets", Collections.singletonList(12)),
|
| - |
|
43 |
PROMOTION("Any promotion related queries", Collections.singletonList(14)),
|
| 41 |
PROMOTION_AND_MARKETING("Any promotion related queries, or marketing partnership proposals", Collections.singletonList(14)),
|
44 |
MARKETING_AND_PARTNERSHIP_PROPOSAL("Any marketing or partnership proposals", Collections.singletonList(14)),
|
| 42 |
OTHER("Any other issues", Arrays.asList(2, 15));
|
45 |
OTHER("Any other issues", Arrays.asList(2, 15));
|
| 43 |
|
46 |
|
| 44 |
private String description;
|
47 |
private String description;
|
| 45 |
private List<Integer> agentIds;
|
48 |
private List<Integer> agentIds;
|
| 46 |
|
49 |
|