Class DefaultWarehouseStockLevelDao
java.lang.Object
de.hybris.platform.servicelayer.internal.dao.AbstractItemDao
de.hybris.platform.warehousing.stock.daos.impl.DefaultWarehouseStockLevelDao
- All Implemented Interfaces:
Dao,WarehouseStockLevelDao
public class DefaultWarehouseStockLevelDao
extends AbstractItemDao
implements WarehouseStockLevelDao
Default Data Access to retrieve a specific
StockLevelModel.-
Field Summary
Fields inherited from class de.hybris.platform.servicelayer.internal.dao.AbstractItemDao
flexibleSearchService, modelService -
Constructor Summary
Constructors -
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 specificStockLevelModelMethods inherited from class de.hybris.platform.servicelayer.internal.dao.AbstractItemDao
getAllSources, getFlexibleSearchService, getModelService, getSource, load, loadAll, search, search, searchUnique, setFlexibleSearchService, setModelService
-
Constructor Details
-
DefaultWarehouseStockLevelDao
public DefaultWarehouseStockLevelDao()
-
-
Method Details
-
getStockLevels
public List<StockLevelModel> getStockLevels(String productCode, String warehouseCode, String binCode, Date releaseDate) Description copied from interface:WarehouseStockLevelDaoRetrieves a specificStockLevelModel- Specified by:
getStockLevelsin interfaceWarehouseStockLevelDao- 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
public List<StockLevelModel> getFutureStockLevels(String productCode, String warehouseCode, String binCode) Description copied from interface:WarehouseStockLevelDaoRetrieves a specific futureStockLevelModel- Specified by:
getFutureStockLevelsin interfaceWarehouseStockLevelDao- 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
-