Interface WarehousingOrderEntryQuantityDao
-
- All Known Implementing Classes:
DefaultWarehousingOrderEntryQuantityDao
public interface WarehousingOrderEntryQuantityDaoProvides the methods to retrieve the various quantities related to an order entry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.LonggetCancelledQuantity(OrderEntryModel orderEntry)Retrieve the cancelled quantity for a specific order entryjava.lang.LonggetQuantityReturned(OrderEntryModel orderEntry)Retrieve the quantity returned for a specific order entryjava.lang.LongprocessRequestWithParams(java.lang.String queryString, java.util.Map<java.lang.String,java.lang.Object> params)Process the flexible search given in parameter and applies the list of parameters associated
-
-
-
Method Detail
-
getCancelledQuantity
java.lang.Long getCancelledQuantity(OrderEntryModel orderEntry)
Retrieve the cancelled quantity for a specific order entry- Parameters:
orderEntry- the order entry for which we want to get the cancelled quantity- Returns:
- the cancelled quantity
-
getQuantityReturned
java.lang.Long getQuantityReturned(OrderEntryModel orderEntry)
Retrieve the quantity returned for a specific order entry- Parameters:
orderEntry- the order entry for which we want to get the returned quantity- Returns:
- the returned quantity
-
processRequestWithParams
java.lang.Long processRequestWithParams(java.lang.String queryString, java.util.Map<java.lang.String,java.lang.Object> params)Process the flexible search given in parameter and applies the list of parameters associated- Parameters:
queryString- the flexible search to processparams- the list of params requested by the associated query- Returns:
- the quantity asked
-
-