Interface WarehouseStockLevelDao
- All Known Implementing Classes:
DefaultWarehouseStockLevelDao
public interface WarehouseStockLevelDao
Data Access for looking up
StockLevelModel.-
Method Summary
Modifier and TypeMethodDescriptiongetFutureStockLevels(String productCode, String warehouseCode, String binCode) Retrieves a specific futureStockLevelModelgetStockLevels(String productCode, String warehouseCode, String binCode, Date releaseDate) Retrieves a specificStockLevelModel
-
Method Details
-
getStockLevels
List<StockLevelModel> getStockLevels(String productCode, String warehouseCode, String binCode, 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
List<StockLevelModel> getFutureStockLevels(String productCode, String warehouseCode, 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
-