Subversion Repositories SmartDukaan

Rev

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

Rev 5447 Rev 5481
Line 756... Line 756...
756
	Ignores the warehouse if it is passed as -1.
756
	Ignores the warehouse if it is passed as -1.
757
	*/
757
	*/
758
	list<ReturnOrder> getReturnOrders(1:i64 warehouseId, 2:i64 fromDate, 3:i64 toDate),
758
	list<ReturnOrder> getReturnOrders(1:i64 warehouseId, 2:i64 fromDate, 3:i64 toDate),
759
	
759
	
760
	/**
760
	/**
-
 
761
	Get all return orders created between the from and to dates.
-
 
762
	*/
-
 
763
	list<ReturnOrder> getAllReturnOrders(1:bool onlyNotProcessed, 2:i64 fromDate, 3:i64 toDate),
-
 
764
	
-
 
765
	/**
761
	Returns the ReturnOrder corresponding to the given id.
766
	Returns the ReturnOrder corresponding to the given id.
762
	Throws an exception if the return order with the given id couldn't be found.
767
	Throws an exception if the return order with the given id couldn't be found.
763
	*/
768
	*/
764
	ReturnOrder getReturnOrder(1:i64 id) throws (1:TransactionServiceException ex),
769
	ReturnOrder getReturnOrder(1:i64 id) throws (1:TransactionServiceException ex),
765
	
770
	
Line 926... Line 931...
926
	/**
931
	/**
927
	Returns list of Order Ids, which belong to reshiped orders, shortlisted from a given list of Order Ids 
932
	Returns list of Order Ids, which belong to reshiped orders, shortlisted from a given list of Order Ids 
928
	*/
933
	*/
929
	list<i64> getReshippedOrderIds(1:list<i64> orderIds) throws (1:TransactionServiceException ex),
934
	list<i64> getReshippedOrderIds(1:list<i64> orderIds) throws (1:TransactionServiceException ex),
930
	
935
	
931
	list<Order> getOrdersWhereVendorNotPaid(1:i64 vendorId) throws (1:TransactionServiceException ex),
936
	list<Order> getBilledOrders(1:i64 vendorId, 2:bool onlyVendorNotPaid, 3:i64 billingDateFrom, 4:i64 billingDateTo) throws (1:TransactionServiceException ex),
932
	
937
	
933
	map<i64, i64> getStatusDistributionOfOrders(1:i64 startDate, 2:i64 endDate) throws (1:TransactionServiceException ex),
938
	map<i64, i64> getStatusDistributionOfOrders(1:i64 startDate, 2:i64 endDate) throws (1:TransactionServiceException ex),
934
	
939
	
935
	list<i64> getOrderIdsForStatus(1:i64 status, 2:i64 startDatetime, 3:i64 endDatetime) throws (1:TransactionServiceException ex),
940
	list<i64> getOrderIdsForStatus(1:i64 status, 2:i64 startDatetime, 3:i64 endDatetime) throws (1:TransactionServiceException ex),
936
	
941