Interface WarehouseStockLevelDao
-
- All Known Implementing Classes:
DefaultWarehouseStockLevelDao
public interface WarehouseStockLevelDaoData Access for looking upStockLevelModel.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<StockLevelModel>getFutureStockLevels(java.lang.String productCode, java.lang.String warehouseCode, java.lang.String binCode)Retrieves a specific futureStockLevelModeljava.util.List<StockLevelModel>getStockLevels(java.lang.String productCode, java.lang.String warehouseCode, java.lang.String binCode, java.util.Date releaseDate)Retrieves a specificStockLevelModel
-
-
-
Method Detail
-
getStockLevels
java.util.List<StockLevelModel> getStockLevels(java.lang.String productCode, java.lang.String warehouseCode, java.lang.String binCode, java.util.Date releaseDate)
Retrieves a specificStockLevelModel- Parameters:
productCode- the product code of the stock level to retrieve (mandatory)warehouseCode- the warehouse code of the stock level to retrieve (mandatory)binCode- the bin code of the stock level to retrieve (optional)releaseDate- the release date of the stock level to retrieve (optional)- Returns:
- the List
StockLevelModelmatching the request
-
getFutureStockLevels
java.util.List<StockLevelModel> getFutureStockLevels(java.lang.String productCode, java.lang.String warehouseCode, java.lang.String binCode)
Retrieves a specific futureStockLevelModel- Parameters:
productCode- the product code of the future stock level to retrieve (mandatory)warehouseCode- the warehouse code of the future stock level to retrieve (mandatory)binCode- the bin code of the future stock level to retrieve (optional)- Returns:
- the List of future
StockLevelModelmatching the request
-
-