Subversion Repositories SmartDukaan

Rev

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

Rev 1731 Rev 1886
Line 276... Line 276...
276
	
276
	
277
	/**
277
	/**
278
	Returns the minimum and maximum amounts of a valid order. (OrderStatus >= OrderStatus.SUBMITTED_FOR_PROCESSING)
278
	Returns the minimum and maximum amounts of a valid order. (OrderStatus >= OrderStatus.SUBMITTED_FOR_PROCESSING)
279
	List contains two values, first minimum amount and second maximum amount.	
279
	List contains two values, first minimum amount and second maximum amount.	
280
	*/
280
	*/
281
	list<double> getValidOrdersAmountRange()
281
	list<double> getValidOrdersAmountRange(),
282
	
-
 
283
	
282
	
-
 
283
	/**
-
 
284
	Returns list of Orders in descending order by Order creation date. List is restricted to limit Orders.
-
 
285
	If limit is passed as 0, then all valid Orders are returned. 
-
 
286
	*/
-
 
287
	list<Order> getValidOrders(1:i64 limit)
284
	
288
	
285
}
289
}
286
290