12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Quote\Model\Quote;
- use Magento\Framework\Api\AttributeValueFactory;
- use Magento\Framework\Api\ExtensionAttributesFactory;
- /**
- * Sales Quote Item Model
- *
- * @api
- * @method string getCreatedAt()
- * @method \Magento\Quote\Model\Quote\Item setCreatedAt(string $value)
- * @method string getUpdatedAt()
- * @method \Magento\Quote\Model\Quote\Item setUpdatedAt(string $value)
- * @method int getStoreId()
- * @method \Magento\Quote\Model\Quote\Item setStoreId(int $value)
- * @method int getParentItemId()
- * @method \Magento\Quote\Model\Quote\Item setParentItemId(int $value)
- * @method int getIsVirtual()
- * @method \Magento\Quote\Model\Quote\Item setIsVirtual(int $value)
- * @method string getDescription()
- * @method \Magento\Quote\Model\Quote\Item setDescription(string $value)
- * @method string getAdditionalData()
- * @method \Magento\Quote\Model\Quote\Item setAdditionalData(string $value)
- * @method int getFreeShipping()
- * @method \Magento\Quote\Model\Quote\Item setFreeShipping(int $value)
- * @method int getIsQtyDecimal()
- * @method \Magento\Quote\Model\Quote\Item setIsQtyDecimal(int $value)
- * @method int getNoDiscount()
- * @method \Magento\Quote\Model\Quote\Item setNoDiscount(int $value)
- * @method float getWeight()
- * @method \Magento\Quote\Model\Quote\Item setWeight(float $value)
- * @method float getBasePrice()
- * @method \Magento\Quote\Model\Quote\Item setBasePrice(float $value)
- * @method float getCustomPrice()
- * @method float getTaxPercent()
- * @method \Magento\Quote\Model\Quote\Item setTaxPercent(float $value)
- * @method \Magento\Quote\Model\Quote\Item setTaxAmount(float $value)
- * @method \Magento\Quote\Model\Quote\Item setBaseTaxAmount(float $value)
- * @method \Magento\Quote\Model\Quote\Item setRowTotal(float $value)
- * @method \Magento\Quote\Model\Quote\Item setBaseRowTotal(float $value)
- * @method float getRowTotalWithDiscount()
- * @method \Magento\Quote\Model\Quote\Item setRowTotalWithDiscount(float $value)
- * @method float getRowWeight()
- * @method \Magento\Quote\Model\Quote\Item setRowWeight(float $value)
- * @method float getBaseTaxBeforeDiscount()
- * @method \Magento\Quote\Model\Quote\Item setBaseTaxBeforeDiscount(float $value)
- * @method float getTaxBeforeDiscount()
- * @method \Magento\Quote\Model\Quote\Item setTaxBeforeDiscount(float $value)
- * @method float getOriginalCustomPrice()
- * @method \Magento\Quote\Model\Quote\Item setOriginalCustomPrice(float $value)
- * @method string getRedirectUrl()
- * @method \Magento\Quote\Model\Quote\Item setRedirectUrl(string $value)
- * @method float getBaseCost()
- * @method \Magento\Quote\Model\Quote\Item setBaseCost(float $value)
- * @method \Magento\Quote\Model\Quote\Item setPriceInclTax(float $value)
- * @method float getBasePriceInclTax()
- * @method \Magento\Quote\Model\Quote\Item setBasePriceInclTax(float $value)
- * @method \Magento\Quote\Model\Quote\Item setRowTotalInclTax(float $value)
- * @method float getBaseRowTotalInclTax()
- * @method \Magento\Quote\Model\Quote\Item setBaseRowTotalInclTax(float $value)
- * @method int getGiftMessageId()
- * @method \Magento\Quote\Model\Quote\Item setGiftMessageId(int $value)
- * @method string getWeeeTaxApplied()
- * @method \Magento\Quote\Model\Quote\Item setWeeeTaxApplied(string $value)
- * @method float getWeeeTaxAppliedAmount()
- * @method \Magento\Quote\Model\Quote\Item setWeeeTaxAppliedAmount(float $value)
- * @method float getWeeeTaxAppliedRowAmount()
- * @method \Magento\Quote\Model\Quote\Item setWeeeTaxAppliedRowAmount(float $value)
- * @method float getBaseWeeeTaxAppliedAmount()
- * @method \Magento\Quote\Model\Quote\Item setBaseWeeeTaxAppliedAmount(float $value)
- * @method float getBaseWeeeTaxAppliedRowAmnt()
- * @method \Magento\Quote\Model\Quote\Item setBaseWeeeTaxAppliedRowAmnt(float $value)
- * @method float getWeeeTaxDisposition()
- * @method \Magento\Quote\Model\Quote\Item setWeeeTaxDisposition(float $value)
- * @method float getWeeeTaxRowDisposition()
- * @method \Magento\Quote\Model\Quote\Item setWeeeTaxRowDisposition(float $value)
- * @method float getBaseWeeeTaxDisposition()
- * @method \Magento\Quote\Model\Quote\Item setBaseWeeeTaxDisposition(float $value)
- * @method float getBaseWeeeTaxRowDisposition()
- * @method \Magento\Quote\Model\Quote\Item setBaseWeeeTaxRowDisposition(float $value)
- * @method float getDiscountTaxCompensationAmount()
- * @method \Magento\Quote\Model\Quote\Item setDiscountTaxCompensationAmount(float $value)
- * @method float getBaseDiscountTaxCompensationAmount()
- * @method \Magento\Quote\Model\Quote\Item setBaseDiscountTaxCompensationAmount(float $value)
- * @method null|bool getHasConfigurationUnavailableError()
- * @method \Magento\Quote\Model\Quote\Item setHasConfigurationUnavailableError(bool $value)
- * @method \Magento\Quote\Model\Quote\Item unsHasConfigurationUnavailableError()
- * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
- * @SuppressWarnings(PHPMD.ExcessivePublicCount)
- * @SuppressWarnings(PHPMD.ExcessiveClassComplexity)
- * @since 100.0.2
- */
- class Item extends \Magento\Quote\Model\Quote\Item\AbstractItem implements \Magento\Quote\Api\Data\CartItemInterface
- {
- /**
- * Prefix of model events names
- *
- * @var string
- */
- protected $_eventPrefix = 'sales_quote_item';
- /**
- * Parameter name in event
- *
- * In observe method you can use $observer->getEvent()->getObject() in this case
- *
- * @var string
- */
- protected $_eventObject = 'item';
- /**
- * Quote model object
- *
- * @var \Magento\Quote\Model\Quote
- */
- protected $_quote;
- /**
- * Item options array
- *
- * @var array
- */
- protected $_options = [];
- /**
- * Item options by code cache
- *
- * @var array
- */
- protected $_optionsByCode = [];
- /**
- * Not Represent options
- *
- * @var array
- */
- protected $_notRepresentOptions = ['info_buyRequest'];
- /**
- * Flag stating that options were successfully saved
- *
- */
- protected $_flagOptionsSaved;
- /**
- * Array of errors associated with this quote item
- *
- * @var \Magento\Sales\Model\Status\ListStatus
- */
- protected $_errorInfos;
- /**
- * @var \Magento\Framework\Locale\FormatInterface
- */
- protected $_localeFormat;
- /**
- * @var \Magento\Quote\Model\Quote\Item\OptionFactory
- */
- protected $_itemOptionFactory;
- /**
- * @var \Magento\Quote\Model\Quote\Item\Compare
- */
- protected $quoteItemCompare;
- /**
- * @var \Magento\CatalogInventory\Api\StockRegistryInterface
- * @deprecated 101.0.0
- */
- protected $stockRegistry;
- /**
- * Serializer interface instance.
- *
- * @var \Magento\Framework\Serialize\Serializer\Json
- */
- private $serializer;
- /**
- * @param \Magento\Framework\Model\Context $context
- * @param \Magento\Framework\Registry $registry
- * @param ExtensionAttributesFactory $extensionFactory
- * @param AttributeValueFactory $customAttributeFactory
- * @param \Magento\Catalog\Api\ProductRepositoryInterface $productRepository
- * @param \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency
- * @param \Magento\Sales\Model\Status\ListFactory $statusListFactory
- * @param \Magento\Framework\Locale\FormatInterface $localeFormat
- * @param Item\OptionFactory $itemOptionFactory
- * @param Item\Compare $quoteItemCompare
- * @param \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry
- * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource
- * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection
- * @param array $data
- *
- * @param \Magento\Framework\Serialize\Serializer\Json $serializer
- * @SuppressWarnings(PHPMD.ExcessiveParameterList)
- */
- public function __construct(
- \Magento\Framework\Model\Context $context,
- \Magento\Framework\Registry $registry,
- ExtensionAttributesFactory $extensionFactory,
- AttributeValueFactory $customAttributeFactory,
- \Magento\Catalog\Api\ProductRepositoryInterface $productRepository,
- \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency,
- \Magento\Sales\Model\Status\ListFactory $statusListFactory,
- \Magento\Framework\Locale\FormatInterface $localeFormat,
- \Magento\Quote\Model\Quote\Item\OptionFactory $itemOptionFactory,
- \Magento\Quote\Model\Quote\Item\Compare $quoteItemCompare,
- \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry,
- \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null,
- \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null,
- array $data = [],
- \Magento\Framework\Serialize\Serializer\Json $serializer = null
- ) {
- $this->_errorInfos = $statusListFactory->create();
- $this->_localeFormat = $localeFormat;
- $this->_itemOptionFactory = $itemOptionFactory;
- $this->quoteItemCompare = $quoteItemCompare;
- $this->stockRegistry = $stockRegistry;
- $this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance()
- ->get(\Magento\Framework\Serialize\Serializer\Json::class);
- parent::__construct(
- $context,
- $registry,
- $extensionFactory,
- $customAttributeFactory,
- $productRepository,
- $priceCurrency,
- $resource,
- $resourceCollection,
- $data
- );
- }
- /**
- * Initialize resource model
- *
- * @return void
- */
- protected function _construct()
- {
- $this->_init(\Magento\Quote\Model\ResourceModel\Quote\Item::class);
- }
- /**
- * Quote Item Before Save prepare data process
- *
- * @return $this
- */
- public function beforeSave()
- {
- parent::beforeSave();
- $this->setIsVirtual($this->getProduct()->getIsVirtual());
- if ($this->getQuote()) {
- $this->setQuoteId($this->getQuote()->getId());
- }
- return $this;
- }
- /**
- * Retrieve address model
- *
- * @return \Magento\Quote\Model\Quote\Address
- */
- public function getAddress()
- {
- if ($this->getQuote()->getItemsQty() == $this->getQuote()->getVirtualItemsQty()) {
- $address = $this->getQuote()->getBillingAddress();
- } else {
- $address = $this->getQuote()->getShippingAddress();
- }
- return $address;
- }
- /**
- * Declare quote model object
- *
- * @param \Magento\Quote\Model\Quote $quote
- * @return $this
- */
- public function setQuote(\Magento\Quote\Model\Quote $quote)
- {
- $this->_quote = $quote;
- $this->setQuoteId($quote->getId());
- $this->setStoreId($quote->getStoreId());
- return $this;
- }
- /**
- * Retrieve quote model object
- *
- * @codeCoverageIgnore
- *
- * @return \Magento\Quote\Model\Quote
- */
- public function getQuote()
- {
- return $this->_quote;
- }
- /**
- * Prepare quantity
- *
- * @param float|int $qty
- * @return int|float
- */
- protected function _prepareQty($qty)
- {
- $qty = $this->_localeFormat->getNumber($qty);
- $qty = $qty > 0 ? $qty : 1;
- return $qty;
- }
- /**
- * Adding quantity to quote item
- *
- * @param float $qty
- * @return $this
- */
- public function addQty($qty)
- {
- /**
- * We can't modify quantity of existing items which have parent
- * This qty declared just once during add process and is not editable
- */
- if (!$this->getParentItem() || !$this->getId()) {
- $qty = $this->_prepareQty($qty);
- $this->setQtyToAdd($qty);
- $this->setQty($this->getQty() + $qty);
- }
- return $this;
- }
- /**
- * Declare quote item quantity
- *
- * @param float $qty
- * @return $this
- */
- public function setQty($qty)
- {
- $qty = $this->_prepareQty($qty);
- $oldQty = $this->_getData(self::KEY_QTY);
- $this->setData(self::KEY_QTY, $qty);
- $this->_eventManager->dispatch('sales_quote_item_qty_set_after', ['item' => $this]);
- if ($this->getQuote() && $this->getQuote()->getIgnoreOldQty()) {
- return $this;
- }
- if ($this->getUseOldQty()) {
- $this->setData(self::KEY_QTY, $oldQty);
- }
- return $this;
- }
- /**
- * Retrieve option product with Qty
- *
- * Return array
- * 'qty' => the qty
- * 'product' => the product model
- *
- * @return array
- */
- public function getQtyOptions()
- {
- $qtyOptions = $this->getData('qty_options');
- if ($qtyOptions === null) {
- $productIds = [];
- $qtyOptions = [];
- foreach ($this->getOptions() as $option) {
- /** @var $option \Magento\Quote\Model\Quote\Item\Option */
- if (is_object($option->getProduct())
- && $option->getProduct()->getId() != $this->getProduct()->getId()
- ) {
- $productIds[$option->getProduct()->getId()] = $option->getProduct()->getId();
- }
- }
- foreach ($productIds as $productId) {
- $option = $this->getOptionByCode('product_qty_' . $productId);
- if ($option) {
- $qtyOptions[$productId] = $option;
- }
- }
- $this->setData('qty_options', $qtyOptions);
- }
- return $qtyOptions;
- }
- /**
- * Set option product with Qty
- *
- * @codeCoverageIgnore
- *
- * @param array $qtyOptions
- * @return $this
- */
- public function setQtyOptions($qtyOptions)
- {
- return $this->setData('qty_options', $qtyOptions);
- }
- /**
- * Setup product for quote item
- *
- * @param \Magento\Catalog\Model\Product $product
- * @return $this
- */
- public function setProduct($product)
- {
- if ($this->getQuote()) {
- $product->setStoreId($this->getQuote()->getStoreId());
- $product->setCustomerGroupId($this->getQuote()->getCustomerGroupId());
- }
- $this->setData('product', $product)
- ->setProductId($product->getId())
- ->setProductType($product->getTypeId())
- ->setSku($this->getProduct()->getSku())
- ->setName($product->getName())
- ->setWeight($this->getProduct()->getWeight())
- ->setTaxClassId($product->getTaxClassId())
- ->setBaseCost($product->getCost());
- $stockItem = $product->getExtensionAttributes()->getStockItem();
- $this->setIsQtyDecimal($stockItem ? $stockItem->getIsQtyDecimal() : false);
- $this->_eventManager->dispatch(
- 'sales_quote_item_set_product',
- ['product' => $product, 'quote_item' => $this]
- );
- return $this;
- }
- /**
- * Check product representation in item
- *
- * @param \Magento\Catalog\Model\Product $product
- * @return bool
- */
- public function representProduct($product)
- {
- $itemProduct = $this->getProduct();
- if (!$product || $itemProduct->getId() != $product->getId()) {
- return false;
- }
- /**
- * Check maybe product is planned to be a child of some quote item - in this case we limit search
- * only within same parent item
- */
- $stickWithinParent = $product->getStickWithinParent();
- if ($stickWithinParent) {
- if ($this->getParentItem() !== $stickWithinParent) {
- return false;
- }
- }
- // Check options
- $itemOptions = $this->getOptionsByCode();
- $productOptions = $product->getCustomOptions();
- if (!$this->compareOptions($itemOptions, $productOptions)) {
- return false;
- }
- if (!$this->compareOptions($productOptions, $itemOptions)) {
- return false;
- }
- return true;
- }
- /**
- * Check if two options array are identical
- * First options array is prerogative
- * Second options array checked against first one
- *
- * @param array $options1
- * @param array $options2
- * @return bool
- */
- public function compareOptions($options1, $options2)
- {
- foreach ($options1 as $option) {
- $code = $option->getCode();
- if (in_array($code, $this->_notRepresentOptions)) {
- continue;
- }
- if (!isset($options2[$code]) || $options2[$code]->getValue() != $option->getValue()) {
- return false;
- }
- }
- return true;
- }
- /**
- * Compare items
- *
- * @param \Magento\Quote\Model\Quote\Item $item
- * @return bool
- */
- public function compare($item)
- {
- return $this->quoteItemCompare->compare($this, $item);
- }
- /**
- * Get item product type
- *
- * @return string
- */
- public function getProductType()
- {
- $option = $this->getOptionByCode(self::KEY_PRODUCT_TYPE);
- if ($option) {
- return $option->getValue();
- }
- $product = $this->getProduct();
- if ($product) {
- return $product->getTypeId();
- }
- // $product should always exist or there will be an error in getProduct()
- return $this->_getData(self::KEY_PRODUCT_TYPE);
- }
- /**
- * Return real product type of item
- *
- * @codeCoverageIgnore
- *
- * @return string
- */
- public function getRealProductType()
- {
- return $this->_getData(self::KEY_PRODUCT_TYPE);
- }
- /**
- * Convert Quote Item to array
- *
- * @param array $arrAttributes
- * @return array
- */
- public function toArray(array $arrAttributes = [])
- {
- $data = parent::toArray($arrAttributes);
- $product = $this->getProduct();
- if ($product) {
- $data['product'] = $product->toArray();
- }
- return $data;
- }
- /**
- * Initialize quote item options
- *
- * @param array $options
- * @return $this
- */
- public function setOptions($options)
- {
- if (is_array($options)) {
- foreach ($options as $option) {
- $this->addOption($option);
- }
- }
- return $this;
- }
- /**
- * Get all item options
- *
- * @codeCoverageIgnore
- *
- * @return \Magento\Quote\Model\Quote\Item\Option[]
- */
- public function getOptions()
- {
- return $this->_options;
- }
- /**
- * Get all item options as array with codes in array key
- *
- * @codeCoverageIgnore
- *
- * @return array
- */
- public function getOptionsByCode()
- {
- return $this->_optionsByCode;
- }
- /**
- * Add option to item
- *
- * @param \Magento\Quote\Model\Quote\Item\Option|\Magento\Framework\DataObject $option
- * @return $this
- * @throws \Magento\Framework\Exception\LocalizedException
- */
- public function addOption($option)
- {
- if (is_array($option)) {
- $option = $this->_itemOptionFactory->create()->setData($option)->setItem($this);
- } elseif ($option instanceof \Magento\Framework\DataObject &&
- !$option instanceof \Magento\Quote\Model\Quote\Item\Option
- ) {
- $option = $this->_itemOptionFactory->create()->setData(
- $option->getData()
- )->setProduct(
- $option->getProduct()
- )->setItem(
- $this
- );
- } elseif ($option instanceof \Magento\Quote\Model\Quote\Item\Option) {
- $option->setItem($this);
- } else {
- throw new \Magento\Framework\Exception\LocalizedException(__('We found an invalid item option format.'));
- }
- $exOption = $this->getOptionByCode($option->getCode());
- if ($exOption) {
- $exOption->addData($option->getData());
- } else {
- $this->_addOptionCode($option);
- $this->_options[] = $option;
- }
- return $this;
- }
- /**
- * Can specify specific actions for ability to change given quote options values
- * Example: cataloginventory decimal qty validation may change qty to int,
- * so need to change quote item qty option value.
- *
- * @param \Magento\Framework\DataObject $option
- * @param int|float|null $value
- * @return $this
- */
- public function updateQtyOption(\Magento\Framework\DataObject $option, $value)
- {
- $optionProduct = $option->getProduct();
- $options = $this->getQtyOptions();
- if (isset($options[$optionProduct->getId()])) {
- $options[$optionProduct->getId()]->setValue($value);
- }
- $this->getProduct()->getTypeInstance()->updateQtyOption(
- $this->getOptions(),
- $option,
- $value,
- $this->getProduct()
- );
- return $this;
- }
- /**
- * Remove option from item options
- *
- * @param string $code
- * @return $this
- */
- public function removeOption($code)
- {
- $option = $this->getOptionByCode($code);
- if ($option) {
- $option->isDeleted(true);
- }
- return $this;
- }
- /**
- * Register option code
- *
- * @param \Magento\Quote\Model\Quote\Item\Option $option
- * @return $this
- * @throws \Magento\Framework\Exception\LocalizedException
- */
- protected function _addOptionCode($option)
- {
- if (!isset($this->_optionsByCode[$option->getCode()])) {
- $this->_optionsByCode[$option->getCode()] = $option;
- } else {
- throw new \Magento\Framework\Exception\LocalizedException(
- __('An item option with code %1 already exists.', $option->getCode())
- );
- }
- return $this;
- }
- /**
- * Get item option by code
- *
- * @param string $code
- * @return \Magento\Quote\Model\Quote\Item\Option || null
- */
- public function getOptionByCode($code)
- {
- if (isset($this->_optionsByCode[$code]) && !$this->_optionsByCode[$code]->isDeleted()) {
- return $this->_optionsByCode[$code];
- }
- return null;
- }
- /**
- * Checks that item model has data changes.
- * Call save item options if model isn't need to save in DB
- *
- * @return boolean
- */
- protected function _hasModelChanged()
- {
- if (!$this->hasDataChanges()) {
- return false;
- }
- return $this->_getResource()->hasDataChanged($this);
- }
- /**
- * Save item options
- *
- * @return $this
- */
- public function saveItemOptions()
- {
- foreach ($this->_options as $index => $option) {
- if ($option->isDeleted()) {
- $option->delete();
- unset($this->_options[$index]);
- unset($this->_optionsByCode[$option->getCode()]);
- } else {
- if (!$option->getItem() || !$option->getItem()->getId()) {
- $option->setItem($this);
- }
- $option->save();
- }
- }
- $this->_flagOptionsSaved = true;
- // Report to watchers that options were saved
- return $this;
- }
- /**
- * Mar option save requirement
- *
- * @codeCoverageIgnore
- *
- * @param bool $flag
- * @return void
- */
- public function setIsOptionsSaved($flag)
- {
- $this->_flagOptionsSaved = $flag;
- }
- /**
- * Were options saved
- *
- * @codeCoverageIgnore
- *
- * @return bool
- */
- public function isOptionsSaved()
- {
- return $this->_flagOptionsSaved;
- }
- /**
- * Save item options after item saved
- *
- * @return \Magento\Quote\Model\Quote\Item
- */
- public function afterSave()
- {
- $this->saveItemOptions();
- return parent::afterSave();
- }
- /**
- * Clone quote item
- *
- * @return $this
- */
- public function __clone()
- {
- parent::__clone();
- $options = $this->getOptions();
- $this->_quote = null;
- $this->_options = [];
- $this->_optionsByCode = [];
- foreach ($options as $option) {
- $this->addOption(clone $option);
- }
- return $this;
- }
- /**
- * Returns formatted buy request - object, holding request received from
- * product view page with keys and options for configured product
- *
- * @return \Magento\Framework\DataObject
- */
- public function getBuyRequest()
- {
- $option = $this->getOptionByCode('info_buyRequest');
- $data = $option ? $this->serializer->unserialize($option->getValue()) : [];
- $buyRequest = new \Magento\Framework\DataObject($data);
- // Overwrite standard buy request qty, because item qty could have changed since adding to quote
- $buyRequest->setOriginalQty($buyRequest->getQty())->setQty($this->getQty() * 1);
- return $buyRequest;
- }
- /**
- * Sets flag, whether this quote item has some error associated with it.
- *
- * @param bool $flag
- * @return \Magento\Quote\Model\Quote\Item
- */
- protected function _setHasError($flag)
- {
- return $this->setData('has_error', $flag);
- }
- /**
- * Sets flag, whether this quote item has some error associated with it.
- * When TRUE - also adds 'unknown' error information to list of quote item errors.
- * When FALSE - clears whole list of quote item errors.
- * It's recommended to use addErrorInfo() instead - to be able to remove error statuses later.
- *
- * @param bool $flag
- * @return $this
- * @see addErrorInfo()
- */
- public function setHasError($flag)
- {
- if ($flag) {
- $this->addErrorInfo();
- } else {
- $this->_clearErrorInfo();
- }
- return $this;
- }
- /**
- * Clears list of errors, associated with this quote item.
- * Also automatically removes error-flag from oneself.
- *
- * @return $this
- */
- protected function _clearErrorInfo()
- {
- $this->_errorInfos->clear();
- $this->_setHasError(false);
- return $this;
- }
- /**
- * Adds error information to the quote item.
- * Automatically sets error flag.
- *
- * @param string|null $origin Usually a name of module, that embeds error
- * @param int|null $code Error code, unique for origin, that sets it
- * @param string|null $message Error message
- * @param \Magento\Framework\DataObject|null $additionalData Any additional data, that caller would like to store
- * @return $this
- */
- public function addErrorInfo($origin = null, $code = null, $message = null, $additionalData = null)
- {
- $this->_errorInfos->addItem($origin, $code, $message, $additionalData);
- if ($message !== null) {
- $this->setMessage($message);
- }
- $this->_setHasError(true);
- return $this;
- }
- /**
- * Retrieves all error infos, associated with this item
- *
- * @return array
- */
- public function getErrorInfos()
- {
- return $this->_errorInfos->getItems();
- }
- /**
- * Removes error infos, that have parameters equal to passed in $params.
- * $params can have following keys (if not set - then any item is good for this key):
- * 'origin', 'code', 'message'
- *
- * @param array $params
- * @return $this
- */
- public function removeErrorInfosByParams($params)
- {
- $removedItems = $this->_errorInfos->removeItemsByParams($params);
- foreach ($removedItems as $item) {
- if ($item['message'] !== null) {
- $this->removeMessageByText($item['message']);
- }
- }
- if (!$this->_errorInfos->getItems()) {
- $this->_setHasError(false);
- }
- return $this;
- }
- /**
- * @codeCoverageIgnoreStart
- *
- * {@inheritdoc}
- */
- public function getItemId()
- {
- return $this->getData(self::KEY_ITEM_ID);
- }
- /**
- * {@inheritdoc}
- */
- public function setItemId($itemID)
- {
- return $this->setData(self::KEY_ITEM_ID, $itemID);
- }
- /**
- * {@inheritdoc}
- */
- public function getSku()
- {
- return $this->getData(self::KEY_SKU);
- }
- /**
- * {@inheritdoc}
- */
- public function setSku($sku)
- {
- return $this->setData(self::KEY_SKU, $sku);
- }
- /**
- * {@inheritdoc}
- */
- public function getQty()
- {
- return $this->getData(self::KEY_QTY);
- }
- /**
- * {@inheritdoc}
- */
- public function getName()
- {
- return $this->getData(self::KEY_NAME);
- }
- /**
- * {@inheritdoc}
- */
- public function setName($name)
- {
- return $this->setData(self::KEY_NAME, $name);
- }
- /**
- * {@inheritdoc}
- */
- public function getPrice()
- {
- return $this->getData(self::KEY_PRICE);
- }
- /**
- * {@inheritdoc}
- */
- public function setPrice($price)
- {
- return $this->setData(self::KEY_PRICE, $price);
- }
- /**
- * {@inheritdoc}
- */
- public function setProductType($productType)
- {
- return $this->setData(self::KEY_PRODUCT_TYPE, $productType);
- }
- /**
- * {@inheritdoc}
- */
- public function getQuoteId()
- {
- return $this->getData(self::KEY_QUOTE_ID);
- }
- /**
- * {@inheritdoc}
- */
- public function setQuoteId($quoteId)
- {
- return $this->setData(self::KEY_QUOTE_ID, $quoteId);
- }
- /**
- * Returns product option
- *
- * @return \Magento\Quote\Api\Data\ProductOptionInterface|null
- */
- public function getProductOption()
- {
- return $this->getData(self::KEY_PRODUCT_OPTION);
- }
- /**
- * Sets product option
- *
- * @param \Magento\Quote\Api\Data\ProductOptionInterface $productOption
- * @return $this
- */
- public function setProductOption(\Magento\Quote\Api\Data\ProductOptionInterface $productOption)
- {
- return $this->setData(self::KEY_PRODUCT_OPTION, $productOption);
- }
- //@codeCoverageIgnoreEnd
- /**
- * {@inheritdoc}
- *
- * @return \Magento\Quote\Api\Data\CartItemExtensionInterface|null
- */
- public function getExtensionAttributes()
- {
- return $this->_getExtensionAttributes();
- }
- /**
- * {@inheritdoc}
- *
- * @param \Magento\Quote\Api\Data\CartItemExtensionInterface $extensionAttributes
- * @return $this
- */
- public function setExtensionAttributes(\Magento\Quote\Api\Data\CartItemExtensionInterface $extensionAttributes)
- {
- return $this->_setExtensionAttributes($extensionAttributes);
- }
- }
|