Interface WarehousingConsignmentEntryQuantityDao
-
- All Known Implementing Classes:
DefaultWarehousingConsignmentEntryQuantityDao
public interface WarehousingConsignmentEntryQuantityDaoProvides the methods to retrieve the various quantities related to a consignment entry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.LonggetQuantityDeclined(ConsignmentEntryModel consignmentEntry)Retrieve the quantity declined for a specific consignment entryjava.lang.LonggetQuantityShipped(ConsignmentEntryModel consignmentEntry)Retrieve the quantity shipped 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
-
getQuantityShipped
java.lang.Long getQuantityShipped(ConsignmentEntryModel consignmentEntry)
Retrieve the quantity shipped for a specific order entry- Parameters:
consignmentEntry- the consignment entry for which we want to get the shipped quantity- Returns:
- the shipped quantity
-
getQuantityDeclined
java.lang.Long getQuantityDeclined(ConsignmentEntryModel consignmentEntry)
Retrieve the quantity declined for a specific consignment entry- Parameters:
consignmentEntry- the consignment entry for which we want to get the declined quantity- Returns:
- the declined 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
-
-