Subversion Repositories SmartDukaan

Rev

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

Rev 10287 Rev 10403
Line 16... Line 16...
16
	PAUSED = 2,			//Item's sale has been paused manually.
16
	PAUSED = 2,			//Item's sale has been paused manually.
17
	ACTIVE = 3,			//Item is available for sale as of now
17
	ACTIVE = 3,			//Item is available for sale as of now
18
	IN_PROCESS = 4,		//Item has been added, but content is not available for the same
18
	IN_PROCESS = 4,		//Item has been added, but content is not available for the same
19
	CONTENT_COMPLETE = 5,  //The content for this item has been completed. We can start selling the item now.
19
	CONTENT_COMPLETE = 5,  //The content for this item has been completed. We can start selling the item now.
20
	PAUSED_BY_RISK = 6,    //Item's sale has been automatically paused since it was marked as risky
20
	PAUSED_BY_RISK = 6,    //Item's sale has been automatically paused since it was marked as risky
21
	COMING_SOON= 7		//Item is now in Coming Soon Page and will move to ACTIVE gradually as it achieves the Start date.
21
	COMING_SOON= 7,		//Item is now in Coming Soon Page and will move to ACTIVE gradually as it achieves the Start date.
-
 
22
	PARTIALLY_ACTIVE=8
22
}
23
}
23
 
24
 
24
enum ItemType {
25
enum ItemType {
25
    SERIALIZED = 1,
26
    SERIALIZED = 1,
26
    NON_SERIALIZED = 2
27
    NON_SERIALIZED = 2