Subversion Repositories SmartDukaan

Rev

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

Rev 3206 Rev 3269
Line 1... Line 1...
1
/**
1
/**
2
 * 
2
 * 
3
 */
3
 */
4
package in.shop2020.util;
4
package in.shop2020.util;
5
 
5
 
-
 
6
import in.shop2020.model.v1.order.OrderStatus;
-
 
7
 
-
 
8
import java.util.Arrays;
-
 
9
import java.util.List;
-
 
10
 
6
/**
11
/**
7
 * @author mandeep
12
 * @author mandeep
8
 *
13
 *
9
 * Class containing constants used across CRM
14
 * Class containing constants used across CRM
10
 */
15
 */
11
public class CRMConstants {
16
public class CRMConstants {
12
    public static final String CRM_EMAIL_SENDOR = "help@saholic.com";
17
    public static final String CRM_EMAIL_SENDOR = "help@saholic.com";
13
    public static final String CRM_EMAIL_TYPE   = "CRMInfo";
18
    public static final String CRM_EMAIL_TYPE   = "CRMInfo";
14
    public static final String CRM_SUBJECT_PREFIX_FOR_TICKET_ID = "Saholic#";
19
    public static final String CRM_SUBJECT_PREFIX_FOR_TICKET_ID = "Saholic#";
-
 
20
    public static final List<OrderStatus> failedStatusList = Arrays.asList(new OrderStatus[] {
-
 
21
            OrderStatus.SALES_RET_RESHIPPED,
-
 
22
            OrderStatus.PAYMENT_FAILED,
-
 
23
            OrderStatus.SALES_RET_REFUNDED,
-
 
24
            OrderStatus.DOA_INVALID_REFUNDED,
-
 
25
            OrderStatus.DOA_INVALID_RESHIPPED,
-
 
26
            OrderStatus.DOA_VALID_REFUNDED,
-
 
27
            OrderStatus.DOA_RESHIPPED,
-
 
28
            OrderStatus.REFUNDED,
-
 
29
            OrderStatus.REJECTED,
-
 
30
            OrderStatus.FAILED});
15
}
31
}