123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\InventoryConfiguration\Model;
- use Magento\CatalogInventory\Api\Data\StockItemInterface;
- use Magento\Framework\Api\AttributeValueFactory;
- use Magento\Framework\Api\ExtensionAttributesFactory;
- use Magento\Framework\App\Config\ScopeConfigInterface;
- use Magento\Framework\Data\Collection\AbstractDb;
- use Magento\Framework\Model\AbstractExtensibleModel;
- use Magento\Framework\Model\Context;
- use Magento\Framework\Model\ResourceModel\AbstractResource;
- use Magento\Framework\Registry;
- use Magento\InventoryConfigurationApi\Api\Data\StockItemConfigurationInterface;
- use Magento\InventoryConfigurationApi\Api\Data\StockItemConfigurationExtensionInterface;
- /**
- * @SuppressWarnings(PHPMD.ExcessivePublicCount)
- * @inheritdoc
- */
- class StockItemConfiguration extends AbstractExtensibleModel implements StockItemConfigurationInterface
- {
- /**
- * @var StockItemInterface
- */
- private $stockItem;
- /**
- * @var ScopeConfigInterface
- */
- private $scopeConfig;
- /**
- * @param Context $context
- * @param Registry $registry
- * @param ExtensionAttributesFactory $extensionFactory
- * @param AttributeValueFactory $customAttributeFactory
- * @param StockItemInterface $stockItem
- * @param ScopeConfigInterface $scopeConfig
- * @param AbstractResource|null $resource
- * @param AbstractDb|null $resourceCollection
- * @param array $data
- */
- public function __construct(
- Context $context,
- Registry $registry,
- ExtensionAttributesFactory $extensionFactory,
- AttributeValueFactory $customAttributeFactory,
- StockItemInterface $stockItem,
- ScopeConfigInterface $scopeConfig,
- AbstractResource $resource = null,
- AbstractDb $resourceCollection = null,
- array $data = []
- ) {
- parent::__construct(
- $context,
- $registry,
- $extensionFactory,
- $customAttributeFactory,
- $resource,
- $resourceCollection,
- $data
- );
- $this->stockItem = $stockItem;
- $this->scopeConfig = $scopeConfig;
- }
- /**
- * @inheritdoc
- */
- public function isQtyDecimal(): bool
- {
- return (bool)$this->stockItem->getIsQtyDecimal();
- }
- /**
- * @inheritdoc
- */
- public function setIsQtyDecimal(bool $isQtyDecimal): void
- {
- $this->stockItem->setIsQtyDecimal($isQtyDecimal);
- }
- /**
- * @inheritdoc
- */
- public function isShowDefaultNotificationMessage(): bool
- {
- return $this->stockItem->getShowDefaultNotificationMessage();
- }
- /**
- * @inheritdoc
- */
- public function isUseConfigMinQty(): bool
- {
- return (bool)$this->stockItem->getUseConfigMinQty();
- }
- /**
- * @inheritdoc
- */
- public function setUseConfigMinQty(bool $useConfigMinQty): void
- {
- $this->stockItem = $this->stockItem->setUseConfigMinQty($useConfigMinQty);
- }
- /**
- * @inheritdoc
- */
- public function getMinQty(): float
- {
- return $this->stockItem->getMinQty();
- }
- /**
- * @inheritdoc
- */
- public function setMinQty(float $minQty): void
- {
- $this->stockItem->setMinQty($minQty);
- }
- /**
- * @inheritdoc
- */
- public function isUseConfigMinSaleQty(): bool
- {
- return (bool)$this->stockItem->getUseConfigMinSaleQty();
- }
- /**
- * @inheritdoc
- */
- public function setUseConfigMinSaleQty(bool $useConfigMinSaleQty): void
- {
- $this->stockItem->setUseConfigMinSaleQty($useConfigMinSaleQty);
- }
- /**
- * @inheritdoc
- */
- public function getMinSaleQty(): float
- {
- return $this->stockItem->getMinSaleQty();
- }
- /**
- * @inheritdoc
- */
- public function setMinSaleQty(float $minSaleQty): void
- {
- $this->stockItem->setMinSaleQty($minSaleQty);
- }
- /**
- * @inheritdoc
- */
- public function isUseConfigMaxSaleQty(): bool
- {
- return (bool)$this->stockItem->getUseConfigMaxSaleQty();
- }
- /**
- * @inheritdoc
- */
- public function setUseConfigMaxSaleQty(bool $useConfigMaxSaleQty): void
- {
- $this->stockItem->setUseConfigMaxSaleQty($useConfigMaxSaleQty);
- }
- /**
- * @inheritdoc
- */
- public function getMaxSaleQty(): float
- {
- return $this->stockItem->getMaxSaleQty();
- }
- /**
- * @inheritdoc
- */
- public function setMaxSaleQty(float $maxSaleQty): void
- {
- $this->stockItem->setMaxSaleQty($maxSaleQty);
- }
- /**
- * @inheritdoc
- */
- public function isUseConfigBackorders(): bool
- {
- return (bool)$this->stockItem->getUseConfigBackorders();
- }
- /**
- * @inheritdoc
- */
- public function setUseConfigBackorders(bool $useConfigBackorders): void
- {
- $this->stockItem->setUseConfigBackorders($useConfigBackorders);
- }
- /**
- * @inheritdoc
- */
- public function getBackorders(): int
- {
- return $this->stockItem->getBackorders();
- }
- /**
- * @inheritdoc
- */
- public function setBackorders(int $backOrders): void
- {
- $this->stockItem->setBackorders($backOrders);
- }
- /**
- * @inheritdoc
- */
- public function isUseConfigNotifyStockQty(): bool
- {
- return (bool)$this->stockItem->getUseConfigNotifyStockQty();
- }
- /**
- * @inheritdoc
- */
- public function setUseConfigNotifyStockQty(bool $useConfigNotifyStockQty): void
- {
- $this->stockItem->setUseConfigNotifyStockQty($useConfigNotifyStockQty);
- }
- /**
- * @inheritdoc
- */
- public function getNotifyStockQty(): float
- {
- return $this->stockItem->getNotifyStockQty();
- }
- /**
- * @inheritdoc
- */
- public function setNotifyStockQty(float $notifyStockQty): void
- {
- $this->stockItem->setNotifyStockQty($notifyStockQty);
- }
- /**
- * @inheritdoc
- */
- public function isUseConfigQtyIncrements(): bool
- {
- return (bool)$this->stockItem->getUseConfigQtyIncrements();
- }
- /**
- * @inheritdoc
- */
- public function setUseConfigQtyIncrements(bool $useConfigQtyIncrements): void
- {
- $this->stockItem->setUseConfigQtyIncrements($useConfigQtyIncrements);
- }
- /**
- * @inheritdoc
- */
- public function getQtyIncrements(): float
- {
- $qtyIncrements = $this->stockItem->getQtyIncrements();
- if (false === $qtyIncrements) {
- return 0;
- }
- return $qtyIncrements;
- }
- /**
- * @inheritdoc
- */
- public function setQtyIncrements(float $qtyIncrements): void
- {
- $this->stockItem->setQtyIncrements($qtyIncrements);
- }
- /**
- * @inheritdoc
- */
- public function isUseConfigEnableQtyInc(): bool
- {
- return (bool)$this->stockItem->getUseConfigEnableQtyInc();
- }
- /**
- * @inheritdoc
- */
- public function setUseConfigEnableQtyInc(bool $useConfigEnableQtyInc): void
- {
- $this->stockItem->setUseConfigEnableQtyInc($useConfigEnableQtyInc);
- }
- /**
- * @inheritdoc
- */
- public function isEnableQtyIncrements(): bool
- {
- return (bool)$this->stockItem->getEnableQtyIncrements();
- }
- /**
- * @inheritdoc
- */
- public function setEnableQtyIncrements(bool $enableQtyIncrements): void
- {
- $this->stockItem->setEnableQtyIncrements($enableQtyIncrements);
- }
- /**
- * @inheritdoc
- */
- public function isUseConfigManageStock(): bool
- {
- return (bool)$this->stockItem->getUseConfigManageStock();
- }
- /**
- * @inheritdoc
- */
- public function setUseConfigManageStock(bool $useConfigManageStock): void
- {
- $this->stockItem->setUseConfigManageStock($useConfigManageStock);
- }
- /**
- * @inheritdoc
- */
- public function isManageStock(): bool
- {
- return (bool)$this->stockItem->getManageStock();
- }
- /**
- * @inheritdoc
- */
- public function setManageStock(bool $manageStock): void
- {
- $this->stockItem->setManageStock($manageStock);
- }
- /**
- * @inheritdoc
- */
- public function getLowStockDate(): string
- {
- $lowStockDate = $this->stockItem->getLowStockDate();
- return null === $lowStockDate ? '' : $lowStockDate;
- }
- /**
- * @inheritdoc
- */
- public function setLowStockDate(string $lowStockDate): void
- {
- $this->stockItem->setLowStockDate($lowStockDate);
- }
- /**
- * @inheritdoc
- */
- public function isDecimalDivided(): bool
- {
- return (bool)$this->stockItem->getIsDecimalDivided();
- }
- /**
- * @inheritdoc
- */
- public function setIsDecimalDivided(bool $isDecimalDivided): void
- {
- $this->stockItem->setIsDecimalDivided($isDecimalDivided);
- }
- /**
- * @inheritdoc
- */
- public function getStockStatusChangedAuto(): bool
- {
- return (bool)$this->stockItem->getStockStatusChangedAuto();
- }
- /**
- * @inheritdoc
- */
- public function setStockStatusChangedAuto(int $stockStatusChangedAuto): void
- {
- $this->stockItem->setStockStatusChangedAuto($stockStatusChangedAuto);
- }
- /**
- * @inheritdoc
- */
- public function getStockThresholdQty(): float
- {
- return (float)$this->scopeConfig->getValue(
- \Magento\CatalogInventory\Model\Configuration::XML_PATH_STOCK_THRESHOLD_QTY,
- \Magento\Store\Model\ScopeInterface::SCOPE_STORE
- );
- }
- /**
- * @inheritdoc
- */
- public function getExtensionAttributes(): ?StockItemConfigurationExtensionInterface
- {
- $extensionAttributes = $this->_getExtensionAttributes();
- if (null === $extensionAttributes) {
- $extensionAttributes = $this->extensionAttributesFactory->create(StockItemConfigurationInterface::class);
- $this->setExtensionAttributes($extensionAttributes);
- }
- return $extensionAttributes;
- }
- /**
- * @inheritdoc
- */
- public function setExtensionAttributes(StockItemConfigurationExtensionInterface $extensionAttributes): void
- {
- $this->_setExtensionAttributes($extensionAttributes);
- }
- }
|