Subversion Repositories SmartDukaan

Rev

Rev 16215 | Rev 18456 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 16215 Rev 16244
Line 94... Line 94...
94
        public List<Integer> getAgentIds() {
94
        public List<Integer> getAgentIds() {
95
            return agentIds;
95
            return agentIds;
96
        }
96
        }
97
    };
97
    };
98
    
98
    
-
 
99
    
-
 
100
    public static enum PMEscalationMatrix {
-
 
101
    	PM_CASH_BACK_INQUIRY("Customer wanted to know about cash back", Arrays.asList(34, 33, 51)),
-
 
102
    	PM_RECHARGE_FAILED_OR_COMPLAINT("Customer complaint about recharge", Arrays.asList(34, 33, 51)),
-
 
103
    	PM_WALLET_AMOUNT_ISSUE("Some issue in wallet amount", Arrays.asList(34, 33, 51)),
-
 
104
    	PM_ORDER_NOT_SHOWING("Customer Order not showing at App", Arrays.asList(34, 33, 51)),
-
 
105
    	PM_BULK_INQUIRY("Customer wanted to know about bulk purchase inquiry", Arrays.asList(34, 33, 51)),
-
 
106
    	PM_TAX_INVOICE_ISSUE("Customer wanted to complaint about tax invoice", Arrays.asList(34, 33, 51)),
-
 
107
        PM_ORDER_STATUS_SAHOLIC_ORDER("Customer wanted to know status of order", Arrays.asList(34, 33, 51)),
-
 
108
        PM_PRODUCT_DEMAND("Customer wanted information about any product demand", Arrays.asList(34, 33, 51)),
-
 
109
        PM_PRICING_ERROR("Customer wanted to ask questions about some error in pricing", Arrays.asList(34, 33, 51)),
-
 
110
        PM_TECHNICAL_ISSUE("Some technical issue at app", Arrays.asList(34, 33, 51));
-
 
111
 
-
 
112
        private String description;
-
 
113
        private List<Integer> agentIds;
-
 
114
 
-
 
115
        PMEscalationMatrix(String description, List<Integer> agentIds) {
-
 
116
            this.description = description;
-
 
117
            this.agentIds    = agentIds;
-
 
118
        }
-
 
119
 
-
 
120
        public String getDescription() {
-
 
121
            return description;
-
 
122
        }
-
 
123
 
-
 
124
        public List<Integer> getAgentIds() {
-
 
125
            return agentIds;
-
 
126
        }
-
 
127
    };
-
 
128
    
99
    public static enum CODCancelMatrix {
129
    public static enum CODCancelMatrix {
100
    	INVALID_ADDRESS_PIN_CODE_PHONE("Address/PinCode/Phone number provided by customer"),
130
    	INVALID_ADDRESS_PIN_CODE_PHONE("Address/PinCode/Phone number provided by customer"),
101
    	NOT_PICKING("Customer is not picking the call"),
131
    	NOT_PICKING("Customer is not picking the call"),
102
    	NOT_REACHABLE_SWITCHED_OFF("Customer number is not reachable or switched off"),
132
    	NOT_REACHABLE_SWITCHED_OFF("Customer number is not reachable or switched off"),
103
        LOWER_PRICE_AVAILABLE_ELSEWHERE("Customer getting better price elsewhere"),
133
        LOWER_PRICE_AVAILABLE_ELSEWHERE("Customer getting better price elsewhere"),
Line 176... Line 206...
176
        public String getDescription() {
206
        public String getDescription() {
177
            return description;
207
            return description;
178
        }
208
        }
179
 
209
 
180
    };
210
    };
181
    
211
 
182
}
212
}