Subversion Repositories SmartDukaan

Rev

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

Rev 2984 Rev 3009
Line 9... Line 9...
9
Caution :- Never ever change the numbers in it. Please confirm from @Chandranshu or @Rajveer before any changes in enum and other entries in file.
9
Caution :- Never ever change the numbers in it. Please confirm from @Chandranshu or @Rajveer before any changes in enum and other entries in file.
10
**/
10
**/
11
enum status{
11
enum status{
12
	PHASED_OUT = 0,		//Item is no longer selling
12
	PHASED_OUT = 0,		//Item is no longer selling
13
	DELETED = 1,		//Item has been deliberately deleted 
13
	DELETED = 1,		//Item has been deliberately deleted 
14
	PAUSED = 2,			//Item's sale is currently paused
14
	PAUSED = 2,			//Item's sale has been paused manually.
15
	ACTIVE = 3,			//Item is available for sale as of now
15
	ACTIVE = 3,			//Item is available for sale as of now
16
	IN_PROCESS = 4,		//Item has been added, but content is not available for the same
16
	IN_PROCESS = 4,		//Item has been added, but content is not available for the same
17
	CONTENT_COMPLETE = 5,  //The content for this item has been completed. We can start selling the item now.
17
	CONTENT_COMPLETE = 5,  //The content for this item has been completed. We can start selling the item now.
18
	PAUSED_BY_RISK = 6
18
	PAUSED_BY_RISK = 6    //Item's sale has been automatically paused since it was marked as risky
19
}
19
}
20
 
20
 
21
enum WarehouseLocation{
21
enum WarehouseLocation{
22
	Mumbai = 0,
22
	Mumbai = 0,
23
	Delhi = 1,
23
	Delhi = 1,