本文整理汇总了PHP中Mage_Sales_Model_Quote_Item_Abstract::getPrice方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Sales_Model_Quote_Item_Abstract::getPrice方法的具体用法?PHP Mage_Sales_Model_Quote_Item_Abstract::getPrice怎么用?PHP Mage_Sales_Model_Quote_Item_Abstract::getPrice使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Sales_Model_Quote_Item_Abstract
的用法示例。
在下文中一共展示了Mage_Sales_Model_Quote_Item_Abstract::getPrice方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _injectPricingData
/**
* Add pricing data for the item to the item payload.
*
* @return self
*/
protected function _injectPricingData()
{
$merchandisePricing = $this->_orderItem->getEmptyMerchandisePriceGroup()->setUnitPrice($this->_item->getPrice())->setAmount($this->_item->getRowTotal())->setTaxClass($this->_itemProduct->getTaxCode());
$this->_discountHelper->transferTaxDiscounts($this->_item, $merchandisePricing);
$this->_orderItem->setMerchandisePricing($merchandisePricing);
// This will be set by the parent address when initially creating the
// item request builder. Each ship group should include shipping on
// only one item in the ship group for address level shipping totals.
if ($this->_item->getIncludeShippingTotals()) {
$shippingPricing = $this->_orderItem->getEmptyShippingPriceGroup()->setAmount($this->_address->getShippingAmount())->setTaxClass($this->_taxConfig->shippingTaxClass);
$this->_addShippingDiscount($shippingPricing);
$this->_orderItem->setShippingPricing($shippingPricing);
}
return $this;
}
示例2: _recalculateChildDiscount
/**
* Recalculate child discount. Separate discount between children
*
* @param Mage_Sales_Model_Quote_Item_Abstract $child
* @return Mage_SalesRule_Model_Quote_Discount
*/
protected function _recalculateChildDiscount($child)
{
$item = $child->getParentItem();
$prices = array('base' => $item->getBaseOriginalPrice(), 'current' => $item->getPrice());
$keys = array('discount_amount', 'original_discount_amount');
foreach ($keys as $key) {
$child->setData($key, $child->getData($key) * $child->getPrice() / $prices['current']);
$child->setData('base_' . $key, $child->getData('base_' . $key) * $child->getPrice() / $prices['base']);
}
return $this;
}
示例3: itemToOrderItem
/**
* Convert quote item to order item
*
* @param Mage_Sales_Model_Quote_Item_Abstract $item
* @return Mage_Sales_Model_Order_Item
*/
public function itemToOrderItem(Mage_Sales_Model_Quote_Item_Abstract $item)
{
$orderItem = Mage::getModel('sales/order_item')->setStoreId($item->getStoreId())->setQuoteItemId($item->getId())->setProductId($item->getProductId())->setSuperProductId($item->getSuperProductId())->setParentProductId($item->getParentProductId())->setSku($item->getSku())->setName($item->getName())->setDescription($item->getDescription())->setWeight($item->getWeight())->setIsQtyDecimal($item->getIsQtyDecimal())->setQtyOrdered($item->getQty())->setOriginalPrice($item->getOriginalPrice())->setAppliedRuleIds($item->getAppliedRuleIds())->setAdditionalData($item->getAdditionalData())->setPrice($item->getCalculationPrice())->setTaxPercent($item->getTaxPercent())->setTaxAmount($item->getTaxAmount())->setRowWeight($item->getRowWeight())->setRowTotal($item->getRowTotal())->setBasePrice($item->getBaseCalculationPrice())->setBaseOriginalPrice($item->getPrice())->setBaseTaxAmount($item->getBaseTaxAmount())->setBaseRowTotal($item->getBaseRowTotal());
if (!$item->getNoDiscount()) {
$orderItem->setDiscountPercent($item->getDiscountPercent())->setDiscountAmount($item->getDiscountAmount())->setBaseDiscountAmount($item->getBaseDiscountAmount());
}
Mage::dispatchEvent('sales_convert_quote_item_to_order_item', array('order_item' => $orderItem, 'item' => $item));
return $orderItem;
}