本文整理汇总了PHP中Mage_Sales_Model_Quote_Item::getTotalQty方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Sales_Model_Quote_Item::getTotalQty方法的具体用法?PHP Mage_Sales_Model_Quote_Item::getTotalQty怎么用?PHP Mage_Sales_Model_Quote_Item::getTotalQty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Sales_Model_Quote_Item
的用法示例。
在下文中一共展示了Mage_Sales_Model_Quote_Item::getTotalQty方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _addItemToQtyArray
/**
* Overwrite @method _addItemToQtyArray
*
* Adds stock item qty to $items (creates new entry or increments existing one)
* $items is array with following structure:
* array(
* $productId => array(
* 'qty' => $qty,
* 'item' => $stockItems|null
* )
* )
*
* @param Mage_Sales_Model_Quote_Item $quoteItem
* @param array &$items
*/
protected function _addItemToQtyArray($quoteItem, &$items)
{
$productId = $quoteItem->getProductId();
if (!$productId) {
return;
}
if (isset($items[$productId])) {
$items[$productId]['qty'] += $quoteItem->getTotalQty();
} else {
$stockItem = null;
if ($quoteItem->getProduct()) {
$stockItem = $quoteItem->getProduct()->getStockItem();
}
$items[$productId] = array('item' => $stockItem, 'qty' => $quoteItem->getTotalQty(), 'quote_item_id' => $quoteItem->getId(), 'creditmemo_item_id' => null);
}
}
示例2: _addItemToQtyArray
/**
* Adds stock item qty to $items (creates new entry or increments existing one)
* $items is array with following structure:
* array(
* $productId => array(
* 'qty' => $qty,
* 'item' => $stockItems|null
* )
* )
*
* @param Mage_Sales_Model_Quote_Item $quoteItem
* @param array &$items
*/
private function _addItemToQtyArray($quoteItem, &$items)
{
$productId = $quoteItem->getProductId();
if (!$productId) {
return;
}
if (isset($items[$productId])) {
$items[$productId]['qty'] += $quoteItem->getTotalQty();
} else {
$stockItem = null;
if ($quoteItem->getProduct()) {
$stockItem = $quoteItem->getProduct()->getStockItem();
}
$items[$productId] = array('item' => $stockItem, 'qty' => $quoteItem->getTotalQty());
}
}
示例3: _calcItemRowTotal
/**
* Calculate item row total
*
* @param Mage_Sales_Model_Quote_Item $item
* @return $this
* @see Mage_Sales_Model_Quote_Item::calcRowTotal()
*/
protected function _calcItemRowTotal($item)
{
$qty = $item->getTotalQty();
$total = $this->_getDataHelper()->roundUp($item->getCalculationPriceOriginal(), 4) * $qty;
$baseTotal = $this->_getDataHelper()->roundUp($item->getBaseCalculationPriceOriginal(), 4) * $qty;
$item->setRowTotal($this->_getDataHelper()->roundUp($total, 4));
$item->setBaseRowTotal($this->_getDataHelper()->roundUp($baseTotal, 4));
return $this;
}