Interface WarehouseStockLevelDao

All Known Implementing Classes:
DefaultWarehouseStockLevelDao

public interface WarehouseStockLevelDao
Data Access for looking up StockLevelModel.
  • Method Details

    • getStockLevels

      List<StockLevelModel> getStockLevels(String productCode, String warehouseCode, String binCode, Date releaseDate)
      Retrieves a specific StockLevelModel
      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 StockLevelModel matching the request
    • getFutureStockLevels

      List<StockLevelModel> getFutureStockLevels(String productCode, String warehouseCode, String binCode)
      Retrieves a specific future StockLevelModel
      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 StockLevelModel matching the request