Subversion Repositories SmartDukaan

Rev

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

Rev 4793 Rev 5203
Line 89... Line 89...
89
 
89
 
90
        public String getDescription() {
90
        public String getDescription() {
91
            return description;
91
            return description;
92
        }
92
        }
93
    };
93
    };
-
 
94
    
-
 
95
    public static enum ActivityCommonDescriptionMatrix{
-
 
96
    	BULK_INQUIRY("Customer wanted to know about bulk order"),
-
 
97
    	CALL_HUNGUP_DISCONNECTED("Call got disconnected or was hung up by customer"),
-
 
98
    	COD_VERIFICATION("Call to customer to verify COD"),
-
 
99
        COMPLAINT_OR_DELIVERY_ISSUE("Call for complaint or delivery issue from customer"),
-
 
100
        COURIER_PARTNER_DETAIL("Customer wanted to know about courier partner"),
-
 
101
        ORDER_CANCELLATION("Customer wanted to cancel order"),
-
 
102
        ORDER_STATUS("Customer wanted to know status of order"),
-
 
103
        PAYMENT_MODE_QUERY("Customer wantedinformation about payment mode"),
-
 
104
        PRODUCT_QUERY("Customer wanted to ask questions about product"),
-
 
105
        PROMOTION_CALL("Promotion call"),
-
 
106
        RETURN_OR_REFUND("Return or Refund"),
-
 
107
        TEST_CALL("test call"),
-
 
108
        VOICE_ISSUE_OR_TECHNICAL_ISSUE("voice issue or technical issue"),
-
 
109
        WRONG_CALL("wrong call");
-
 
110
 
-
 
111
        private String description;
-
 
112
 
-
 
113
        ActivityCommonDescriptionMatrix(String description) {
-
 
114
            this.description = description;
-
 
115
        }
-
 
116
 
-
 
117
        public String getDescription() {
-
 
118
            return description;
-
 
119
        }
-
 
120
 
-
 
121
    };
-
 
122
    
94
}
123
}