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 specificStockLevelModel.
-
-
Field Summary
-
Fields inherited from class de.hybris.platform.servicelayer.internal.dao.AbstractItemDao
flexibleSearchService, modelService
-
-
Constructor Summary
Constructors Constructor Description DefaultWarehouseStockLevelDao()
-
Method Summary
All Methods Instance Methods Concrete 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-
Methods inherited from class de.hybris.platform.servicelayer.internal.dao.AbstractItemDao
getAllSources, getFlexibleSearchService, getModelService, getSource, load, loadAll, search, search, searchUnique, setFlexibleSearchService, setModelService
-
-
-
-
Method Detail
-
getStockLevels
public java.util.List<StockLevelModel> getStockLevels(java.lang.String productCode, java.lang.String warehouseCode, java.lang.String binCode, java.util.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 java.util.List<StockLevelModel> getFutureStockLevels(java.lang.String productCode, java.lang.String warehouseCode, java.lang.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
-
-