Subversion Repositories SmartDukaan

Rev

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

Rev 11819 Rev 11890
Line 64... Line 64...
64
	DELIVERY_PROBLEM = 3,
64
	DELIVERY_PROBLEM = 3,
65
	PAYMENT_STATUS = 4,
65
	PAYMENT_STATUS = 4,
66
	ORDER_STATUS = 5,
66
	ORDER_STATUS = 5,
67
	PRODUCT_REQUEST = 6,
67
	PRODUCT_REQUEST = 6,
68
	RECHARGE_RELATED = 7,
68
	RECHARGE_RELATED = 7,
69
	OTHER = 8
69
	OTHER = 8,
-
 
70
	Bulk_Order_ENQUIRY = 21
70
	
71
	
71
}
72
}
72
 
73
 
73
/**
74
/**
74
Affiliate track log types for affiliate tracking
75
Affiliate track log types for affiliate tracking
Line 312... Line 313...
312
	5:double amount,
313
	5:double amount,
313
	6:i64 expiredOn,
314
	6:i64 expiredOn,
314
	7:string userEmail
315
	7:string userEmail
315
}
316
}
316
 
317
 
-
 
318
struct PrivateDealUser{
-
 
319
	1:i64 userId,
-
 
320
	2:i64 addedOn,
-
 
321
	3:bool isActive
-
 
322
}
-
 
323
 
317
 
324
 
318
/**
325
/**
319
Promotion Service
326
Promotion Service
320
*/
327
*/
321
service PromotionService extends GenericService.GenericService{
328
service PromotionService extends GenericService.GenericService{
Line 557... Line 564...
557
	*/
564
	*/
558
	CartPlus validateCartPlus(1:i64 cartId, 2:i64 sourceId) throws (1:ShoppingCartException scex)
565
	CartPlus validateCartPlus(1:i64 cartId, 2:i64 sourceId) throws (1:ShoppingCartException scex)
559
	
566
	
560
	bool isPrivateDealUser(1:i64 userId)
567
	bool isPrivateDealUser(1:i64 userId)
561
	
568
	
-
 
569
	bool addPrivateDealUser(1:i64 userId)
-
 
570
	
-
 
571
	bool changePrivateDealUserStatus(1:i64 userId,2:bool isActive)
-
 
572
		
-
 
573
	PrivateDealUser getPrivateDealUser(1:i64 userId)
-
 
574
	
-
 
575
	
-
 
576
	
562
	
577
	
563
	
578
	
564
}
579
}
565
580