Subversion Repositories SmartDukaan

Rev

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

Rev 8282 Rev 8303
Line 756... Line 756...
756
	
756
	
757
	/**
757
	/**
758
	Returns at most 'limit' orders with the given statuses for the given warehouse starting from the given offset.
758
	Returns at most 'limit' orders with the given statuses for the given warehouse starting from the given offset.
759
	Pass the status as null and the limit as 0 to ignore them.
759
	Pass the status as null and the limit as 0 to ignore them.
760
	*/
760
	*/
761
	list<Order> getOrdersInBatch(1:list<OrderStatus> statuses, 2:i64 offset, 3:i64 limit, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),
761
	list<Order> getOrdersInBatch(1:list<OrderStatus> statuses, 2:i64 offset, 3:i64 limit, 4:i64 warehouse_id, 5:i64 source) throws (1:TransactionServiceException ex),
762
	
762
	
763
	/**
763
	/**
764
	Returns the count of orders with the given statuses assigned to the given warehouse.
764
	Returns the count of orders with the given statuses assigned to the given warehouse.
765
	*/
765
	*/
766
	i32 getOrderCount(1:list<OrderStatus> statuses, 2:i64 warehouseId) throws (1:TransactionServiceException ex),
766
	i32 getOrderCount(1:list<OrderStatus> statuses, 2:i64 warehouseId, 3:i64 source) throws (1:TransactionServiceException ex),
767
	
767
	
768
	/**
768
	/**
769
	Returns orders within a range of their billing dates
769
	Returns orders within a range of their billing dates
770
	*/
770
	*/
771
	list<Order> getOrdersByBillingDate(1:OrderStatus status, 2:i64 start_billing_date, 3:i64 end_billing_date, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),
771
	list<Order> getOrdersByBillingDate(1:OrderStatus status, 2:i64 start_billing_date, 3:i64 end_billing_date, 4:i64 warehouse_id) throws (1:TransactionServiceException ex),