123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\Inventory\Model;
- use Magento\Framework\Model\AbstractExtensibleModel;
- use Magento\Inventory\Model\ResourceModel\SourceItem as SourceItemResourceModel;
- use Magento\InventoryApi\Api\Data\SourceItemExtensionInterface;
- use Magento\InventoryApi\Api\Data\SourceItemInterface;
- /**
- * {@inheritdoc}
- *
- * @codeCoverageIgnore
- */
- class SourceItem extends AbstractExtensibleModel implements SourceItemInterface
- {
- /**
- * @inheritdoc
- */
- protected function _construct()
- {
- $this->_init(SourceItemResourceModel::class);
- }
- /**
- * @inheritdoc
- */
- public function getSku(): ?string
- {
- return $this->getData(self::SKU);
- }
- /**
- * @inheritdoc
- */
- public function setSku(?string $sku): void
- {
- $this->setData(self::SKU, $sku);
- }
- /**
- * @inheritdoc
- */
- public function getSourceCode(): ?string
- {
- return $this->getData(self::SOURCE_CODE);
- }
- /**
- * @inheritdoc
- */
- public function setSourceCode(?string $sourceCode): void
- {
- $this->setData(self::SOURCE_CODE, $sourceCode);
- }
- /**
- * @inheritdoc
- */
- public function getQuantity(): ?float
- {
- return $this->getData(self::QUANTITY) === null ?
- null:
- (float)$this->getData(self::QUANTITY);
- }
- /**
- * @inheritdoc
- */
- public function setQuantity(?float $quantity): void
- {
- $this->setData(self::QUANTITY, $quantity);
- }
- /**
- * @inheritdoc
- */
- public function getStatus(): ?int
- {
- return $this->getData(self::STATUS) === null ?
- null:
- (int)$this->getData(self::STATUS);
- }
- /**
- * @inheritdoc
- */
- public function setStatus(?int $status): void
- {
- $this->setData(self::STATUS, $status);
- }
- /**
- * @inheritdoc
- */
- public function getExtensionAttributes(): ?SourceItemExtensionInterface
- {
- $extensionAttributes = $this->_getExtensionAttributes();
- if (null === $extensionAttributes) {
- $extensionAttributes = $this->extensionAttributesFactory->create(SourceItemInterface::class);
- $this->setExtensionAttributes($extensionAttributes);
- }
- return $extensionAttributes;
- }
- /**
- * @inheritdoc
- */
- public function setExtensionAttributes(SourceItemExtensionInterface $extensionAttributes): void
- {
- $this->_setExtensionAttributes($extensionAttributes);
- }
- }
|