Subversion Repositories SmartDukaan

Rev

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

Rev 7221 Rev 7410
Line 100... Line 100...
100
	1:i64 id,
100
	1:i64 id,
101
	2:string url,
101
	2:string url,
102
	3:string text
102
	3:string text
103
}
103
}
104
 
104
 
-
 
105
struct AgentWarehouseMapping{
-
 
106
	1:i64 agentId,
-
 
107
	2:i64 warehouseId
-
 
108
}
-
 
109
 
105
service HelperService extends GenericService.GenericService{
110
service HelperService extends GenericService.GenericService{
106
	/**
111
	/**
107
	* Save email details, to be sent later; Also returns its identifier.
112
	* Save email details, to be sent later; Also returns its identifier.
108
	*/
113
	*/
109
	i64 saveUserEmailForSending(1:list<string> emailTo, 2:string emailFrom, 3:string subject, 4:string body, 5:string source, 6:string emailType, 7:list<string> cc, 8:list<string> bcc,) throws (1:HelperServiceException se),
114
	i64 saveUserEmailForSending(1:list<string> emailTo, 2:string emailFrom, 3:string subject, 4:string body, 5:string source, 6:string emailType, 7:list<string> cc, 8:list<string> bcc,) throws (1:HelperServiceException se),
Line 193... Line 198...
193
	Returns a list of emails to which product notifications have been sent in a given date range
198
	Returns a list of emails to which product notifications have been sent in a given date range
194
	*/
199
	*/
195
	list<string> getEmailsForNotificationsSent(1:i64 startDatetime, 2:i64 endDatetime) throws(1:HelperServiceException hse),
200
	list<string> getEmailsForNotificationsSent(1:i64 startDatetime, 2:i64 endDatetime) throws(1:HelperServiceException hse),
196
	
201
	
197
	//Returns body of mail sent for order confirmation
202
	//Returns body of mail sent for order confirmation
198
	string getOrderConfirmationMail(1:i64 orderId)
203
	string getOrderConfirmationMail(1:i64 orderId),
199
	
204
	
200
	//Returns body of mail sent for delivery success
205
	//Returns body of mail sent for delivery success
201
	string getOrderDeliveryMail(1:i64 orderId)
206
	string getOrderDeliveryMail(1:i64 orderId),
-
 
207
	
-
 
208
	list<i64> getWarehouseIdsForAgent(1:string agentEmailId),
-
 
209
	
202
}
210
}
203
211