当前位置: 首页>>代码示例>>PHP>>正文


PHP Mage_Sales_Model_Order_Item::getDiscountAmount方法代码示例

本文整理汇总了PHP中Mage_Sales_Model_Order_Item::getDiscountAmount方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Sales_Model_Order_Item::getDiscountAmount方法的具体用法?PHP Mage_Sales_Model_Order_Item::getDiscountAmount怎么用?PHP Mage_Sales_Model_Order_Item::getDiscountAmount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Mage_Sales_Model_Order_Item的用法示例。


在下文中一共展示了Mage_Sales_Model_Order_Item::getDiscountAmount方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getItemTotal

/**
 * Calculates and returns the grand total of an item including tax and excluding
 * discount.
 *
 * @param Mage_Sales_Model_Order_Item $item The item to return info from
 * @return Float The grand total
 */
function getItemTotal($item)
{
    return $item->getRowTotal() - $item->getDiscountAmount() + $item->getTaxAmount() + $item->getWeeeTaxAppliedRowAmount();
}
开发者ID:Itipart,项目名称:Synchro,代码行数:11,代码来源:Abstract.php

示例2: _createOrderLinePrice

 /**
  * Returns OCL OrderLinePrice record
  *
  * @param Mage_Sales_Model_Order_Item $item
  * @return array
  */
 protected function _createOrderLinePrice($item, $qty = 1, $type = self::LINE_ITEM_TYPE_DEFAULT)
 {
     $store = Mage::app()->getStore($item->getStoreId());
     // Unclear on the consequences of rounding the discount.  Maybe we shouldn't round it to be more accurate.
     $discount = $store->roundPrice($item->getDiscountAmount() / $qty);
     // We won't round the price since it makes for inaccurate calculations when using this data
     $totalPrice = $this->calculateRowTotalPrice($item) / $qty;
     $data = array('totalPrice' => $this->_createCurrencyAmount($totalPrice), 'price' => $this->_createCurrencyAmount($item->getBasePrice()), 'insuranceCost' => null, 'totalDiscountAmount' => $this->_createCurrencyAmount($discount), 'taxAmount' => $this->_createTax($item, $qty, $type), 'allDiscounts' => null, 'additionalCosts' => null);
     return $data;
 }
开发者ID:ridhoq,项目名称:mxpi-twitter,代码行数:16,代码来源:Order.php

示例3: itemToQuoteItem

 /**
  * Retrieve
  *
  * @param Mage_Sales_Model_Order_Item $item
  * @return unknown
  */
 public function itemToQuoteItem(Mage_Sales_Model_Order_Item $item)
 {
     $quoteItem = Mage::getModel('sales/quote_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())->setCustomPrice($item->getPrice())->setDiscountPercent($item->getDiscountPercent())->setDiscountAmount($item->getDiscountAmount())->setTaxPercent($item->getTaxPercent())->setTaxAmount($item->getTaxAmount())->setRowWeight($item->getRowWeight())->setRowTotal($item->getRowTotal())->setAppliedRuleIds($item->getAppliedRuleIds())->setBaseDiscountAmount($item->getBaseDiscountAmount())->setBaseTaxAmount($item->getBaseTaxAmount())->setBaseRowTotal($item->getBaseRowTotal());
     return $quoteItem;
 }
开发者ID:arslbbt,项目名称:mangentovies,代码行数:11,代码来源:Order.php

示例4: getItemTotal

 /**
  * Calculates and returns the grand total of an item including tax and excluding
  * discount.
  *
  * @param Mage_Sales_Model_Order_Item $item The item to return info from
  * @return Float The grand total
  */
 protected function getItemTotal($item)
 {
     //return $item->getRowTotal() - $item->getDiscountAmount() + $item->getTaxAmount() + $item->getWeeeTaxAppliedRowAmount();
     return $item->getRowTotal() + $item->getTaxAmount() + $item->getHiddenTaxAmount() + $item->getWeeeTaxAppliedRowAmount() - $item->getDiscountAmount();
 }
开发者ID:sagmahajan,项目名称:aswan_release,代码行数:12,代码来源:Order.php


注:本文中的Mage_Sales_Model_Order_Item::getDiscountAmount方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。