123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\CatalogInventory\Api;
- /**
- * Interface StockRegistryInterface
- * @api
- * @since 100.0.2
- *
- * @deprecated 100.3.0 Replaced with Multi Source Inventory
- * @link https://devdocs.magento.com/guides/v2.3/inventory/index.html
- * @link https://devdocs.magento.com/guides/v2.3/inventory/catalog-inventory-replacements.html
- */
- interface StockRegistryInterface
- {
- /**
- * @param int $scopeId
- * @return \Magento\CatalogInventory\Api\Data\StockInterface
- */
- public function getStock($scopeId = null);
- /**
- * @param int $productId
- * @param int $scopeId
- * @return \Magento\CatalogInventory\Api\Data\StockItemInterface
- */
- public function getStockItem($productId, $scopeId = null);
- /**
- * @param string $productSku
- * @param int $scopeId
- * @return \Magento\CatalogInventory\Api\Data\StockItemInterface
- * @throws \Magento\Framework\Exception\NoSuchEntityException
- */
- public function getStockItemBySku($productSku, $scopeId = null);
- /**
- * @param int $productId
- * @param int $scopeId
- * @return \Magento\CatalogInventory\Api\Data\StockStatusInterface
- */
- public function getStockStatus($productId, $scopeId = null);
- /**
- * @param string $productSku
- * @param int $scopeId
- * @return \Magento\CatalogInventory\Api\Data\StockStatusInterface
- * @throws \Magento\Framework\Exception\NoSuchEntityException
- */
- public function getStockStatusBySku($productSku, $scopeId = null);
- /**
- * Retrieve Product stock status
- *
- * @param int $productId
- * @param int $scopeId
- * @return int
- */
- public function getProductStockStatus($productId, $scopeId = null);
- /**
- * @param string $productSku
- * @param int $scopeId
- * @return int
- * @throw \Magento\Framework\Exception\NoSuchEntityException
- */
- public function getProductStockStatusBySku($productSku, $scopeId = null);
- /**
- * Retrieves a list of SKU's with low inventory qty
- *
- * @param int $scopeId
- * @param float $qty
- * @param int $currentPage
- * @param int $pageSize
- * @return \Magento\CatalogInventory\Api\Data\StockItemCollectionInterface
- */
- public function getLowStockItems($scopeId, $qty, $currentPage = 1, $pageSize = 0);
- /**
- * @param string $productSku
- * @param \Magento\CatalogInventory\Api\Data\StockItemInterface $stockItem
- * @return int
- * @throws \Magento\Framework\Exception\NoSuchEntityException
- */
- public function updateStockItemBySku($productSku, \Magento\CatalogInventory\Api\Data\StockItemInterface $stockItem);
- }
|