Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
QuoteItemQtyList.php
Go to the documentation of this file.
1 <?php
7 
9 {
16  protected $_checkedQuoteItems = [];
17 
29  public function getQty($productId, $quoteItemId, $quoteId, $itemQty)
30  {
31  $qty = $itemQty;
32  if (isset(
33  $this->_checkedQuoteItems[$quoteId][$productId]['qty']
34  ) && !in_array(
36  $this->_checkedQuoteItems[$quoteId][$productId]['items']
37  )
38  ) {
39  $qty += $this->_checkedQuoteItems[$quoteId][$productId]['qty'];
40  }
41 
42  $this->_checkedQuoteItems[$quoteId][$productId]['qty'] = $qty;
43  $this->_checkedQuoteItems[$quoteId][$productId]['items'][] = $quoteItemId;
44 
45  return $qty;
46  }
47 }
$quoteItemId
Definition: cart.php:17