Subversion Repositories SmartDukaan

Rev

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

Rev 3578 Rev 4008
Line 23... Line 23...
23
    ORDER_STATUS = 5,
23
    ORDER_STATUS = 5,
24
    PRODUCT_REQUEST = 6,
24
    PRODUCT_REQUEST = 6,
25
    PRODUCT_QUESTION = 7,
25
    PRODUCT_QUESTION = 7,
26
    OTHER = 8,
26
    OTHER = 8,
27
    COD_VERIFICATION = 9,
27
    COD_VERIFICATION = 9,
28
    FAILED_PAYMENTS = 10
28
    FAILED_PAYMENTS = 10,
-
 
29
    DELAYED_DELIVERY = 11
29
}
30
}
30
 
31
 
31
enum ActivityType {
32
enum ActivityType {
32
    SEND_EMAIL_TO_CUSTOMER = 1,
33
    SEND_EMAIL_TO_CUSTOMER = 1,
33
    RECEIVED_EMAIL_FROM_CUSTOMER = 2,
34
    RECEIVED_EMAIL_FROM_CUSTOMER = 2,
Line 136... Line 137...
136
    list<string> getPermissionsForRoleName(1:string roleName);
137
    list<string> getPermissionsForRoleName(1:string roleName);
137
 
138
 
138
    // Misc methods
139
    // Misc methods
139
    i64 getLastEmailProcessedTimestamp();
140
    i64 getLastEmailProcessedTimestamp();
140
    void updateLastEmailProcessedTimestamp(1:i64 timestamp);
141
    void updateLastEmailProcessedTimestamp(1:i64 timestamp);
141
 
-
 
142
    oneway void processCODTxn(1:i64 transactionId);
-
 
143
    oneway void processPaymentFailure(1:i64 customerId);
-
 
144
}
142
}