Subversion Repositories SmartDukaan

Rev

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

Rev 5411 Rev 5447
Line 303... Line 303...
303
	2:i32 poEstimate
303
	2:i32 poEstimate
304
	3:i32 reversalInitiated,
304
	3:i32 reversalInitiated,
305
	4:i32 reversalEstimate
305
	4:i32 reversalEstimate
306
}
306
}
307
 
307
 
-
 
308
struct CODVerificationAgent{
-
 
309
	1:i64 orderId,
-
 
310
	2:string agentEmailId
-
 
311
}
-
 
312
 
308
exception TransactionServiceException{
313
exception TransactionServiceException{
309
	1:i32 errorCode,
314
	1:i32 errorCode,
310
	2:string message
315
	2:string message
311
}
316
}
312
 
317
 
Line 936... Line 941...
936
	
941
	
937
	void updateOrderAsPaidToVendor(1:i64 orderId) throws (1:TransactionServiceException ex),
942
	void updateOrderAsPaidToVendor(1:i64 orderId) throws (1:TransactionServiceException ex),
938
	
943
	
939
	void updateOrderOnlyAsPaidToVendor(1:i64 orderId) throws (1:TransactionServiceException ex),
944
	void updateOrderOnlyAsPaidToVendor(1:i64 orderId) throws (1:TransactionServiceException ex),
940
	
945
	
941
	list<Order> getRefundedOrdersMarkedPaid() throws (1:TransactionServiceException ex)
946
	list<Order> getRefundedOrdersMarkedPaid() throws (1:TransactionServiceException ex),
-
 
947
	
-
 
948
	/**
-
 
949
	* gets all COD Verification Agents for all orderIds from a minId to maxId
-
 
950
	*
-
 
951
	*/
-
 
952
	list<CODVerificationAgent> getAllVerificationAgents(1:i64 minOrderId, 2:i64 maxOrderId)
942
}
953
}
943
954