1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Quote\Model\Quote\Item;
use Magento\Catalog\Model\ProductFactory;
use Magento\Framework\Locale\FormatInterface;
use Magento\Framework\DataObject\Factory as ObjectFactory;
use Magento\Quote\Model\Quote;
use Magento\Quote\Model\Quote\Item;
use Zend\Code\Exception\InvalidArgumentException;
/**
* Class Updater
*/
class Updater
{
/**
* @var ProductFactory
*/
protected $productFactory;
/**
* @var FormatInterface
*/
protected $localeFormat;
/**
* @var ObjectFactory
*/
protected $objectFactory;
/**
* Serializer interface instance.
*
* @var \Magento\Framework\Serialize\Serializer\Json
*/
private $serializer;
/**
* @param ProductFactory $productFactory
* @param FormatInterface $localeFormat
* @param ObjectFactory $objectFactory
* @param \Magento\Framework\Serialize\Serializer\Json|null $serializer
*/
public function __construct(
ProductFactory $productFactory,
FormatInterface $localeFormat,
ObjectFactory $objectFactory,
\Magento\Framework\Serialize\Serializer\Json $serializer = null
) {
$this->productFactory = $productFactory;
$this->localeFormat = $localeFormat;
$this->objectFactory = $objectFactory;
$this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance()
->get(\Magento\Framework\Serialize\Serializer\Json::class);
}
/**
* Update quote item qty.
*
* Custom price is updated in case 'custom_price' value exists
*
* @param Item $item
* @param array $info
* @throws InvalidArgumentException
* @return Updater
* @SuppressWarnings(PHPMD.NPathComplexity)
*/
public function update(Item $item, array $info)
{
if (!isset($info['qty'])) {
throw new InvalidArgumentException(__('The qty value is required to update quote item.'));
}
$itemQty = $info['qty'];
if ($item->getProduct()->getStockItem()) {
if (!$item->getProduct()->getStockItem()->getIsQtyDecimal()) {
$itemQty = (int)$info['qty'];
} else {
$item->setIsQtyDecimal(1);
}
}
$itemQty = $itemQty > 0 ? $itemQty : 1;
if (isset($info['custom_price'])) {
$this->setCustomPrice($info, $item);
} elseif ($item->hasData('custom_price')) {
$this->unsetCustomPrice($item);
}
if (empty($info['action']) || !empty($info['configured'])) {
$noDiscount = !isset($info['use_discount']);
$item->setQty($itemQty);
$item->setNoDiscount($noDiscount);
$item->getProduct()->setIsSuperMode(true);
$item->getProduct()->unsSkipCheckRequiredOption();
$item->checkData();
}
return $this;
}
/**
* Prepares custom price and sets into a BuyRequest object as option of quote item
*
* @param array $info
* @param Item $item
* @return void
*/
protected function setCustomPrice(array $info, Item $item)
{
$itemPrice = $this->parseCustomPrice($info['custom_price']);
/** @var \Magento\Framework\DataObject $infoBuyRequest */
$infoBuyRequest = $item->getBuyRequest();
if ($infoBuyRequest) {
$infoBuyRequest->setCustomPrice($itemPrice);
$infoBuyRequest->setValue($this->serializer->serialize($infoBuyRequest->getData()));
$infoBuyRequest->setCode('info_buyRequest');
$infoBuyRequest->setProduct($item->getProduct());
$item->addOption($infoBuyRequest);
}
$item->setCustomPrice($itemPrice);
$item->setOriginalCustomPrice($itemPrice);
}
/**
* Unset custom_price data for quote item
*
* @param Item $item
* @return void
*/
protected function unsetCustomPrice(Item $item)
{
/** @var \Magento\Framework\DataObject $infoBuyRequest */
$infoBuyRequest = $item->getBuyRequest();
if ($infoBuyRequest->hasData('custom_price')) {
$infoBuyRequest->unsetData('custom_price');
$infoBuyRequest->setValue($this->serializer->serialize($infoBuyRequest->getData()));
$infoBuyRequest->setCode('info_buyRequest');
$infoBuyRequest->setProduct($item->getProduct());
$item->addOption($infoBuyRequest);
}
$item->setData('custom_price', null);
$item->setData('original_custom_price', null);
}
/**
* Return formatted price
*
* @param float|int $price
* @return float|int
*/
protected function parseCustomPrice($price)
{
$price = $this->localeFormat->getNumber($price);
return $price > 0 ? $price : 0;
}
}