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


PHP Mage_Sales_Model_Order_Item::getTaxAmount方法代码示例

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


在下文中一共展示了Mage_Sales_Model_Order_Item::getTaxAmount方法的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: _getTaxesCharged

 /**
  * Grab the tax amount from the line item based on the taxSource input
  * @param Mage_Sales_Model_Order_Item $item
  * @param string $taxSource
  * @return array represents the tax price with currency code
  */
 protected function _getTaxesCharged($item, $qty, $taxSource = self::LINE_ITEM_TYPE_DEFAULT)
 {
     $store = Mage::app()->getStore($item->getStoreId());
     $tax = 0;
     switch ($taxSource) {
         case self::LINE_ITEM_TYPE_DEFAULT:
             $tax = $item->getTaxAmount() / $qty;
             break;
         case self::LINE_ITEM_TYPE_REFUNDED:
             $tax = $store->roundPrice($item->getTaxRefunded() / $qty);
             break;
         case self::LINE_ITEM_TYPE_INVOICED:
             $tax = $item->getTaxInvoiced() / $qty;
             break;
     }
     return $this->_createCurrencyAmount($tax);
 }
开发者ID:ridhoq,项目名称:mxpi-twitter,代码行数:23,代码来源: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::getTaxAmount方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。