Subversion Repositories SmartDukaan

Rev

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

Rev 2697 Rev 2700
Line 404... Line 404...
404
	Ignores the warehouse if it is passed as -1.
404
	Ignores the warehouse if it is passed as -1.
405
	*/
405
	*/
406
	list<ReturnOrder> getReturnOrders(1:i64 warehouseId, 2:i64 fromDate, 3:i64 toDate),
406
	list<ReturnOrder> getReturnOrders(1:i64 warehouseId, 2:i64 fromDate, 3:i64 toDate),
407
	
407
	
408
	/**
408
	/**
-
 
409
	Returns the ReturnOrder corresponding to the given id.
-
 
410
	Throws an exception if the return order with the given id couldn't be found.
-
 
411
	*/
-
 
412
	ReturnOrder getReturnOrder(1:i64 id) throws (1:TransactionServiceException ex),
-
 
413
	
-
 
414
	/**
409
	Marks the return order with the given id as processed. Raises an exception if no such return order exists. 
415
	Marks the return order with the given id as processed. Raises an exception if no such return order exists. 
410
	*/
416
	*/
411
	void processReturn(1:i64 returnOrderId) throws (1:TransactionServiceException ex)
417
	void processReturn(1:i64 returnOrderId) throws (1:TransactionServiceException ex)
412
}
418
}
413
419