本文整理汇总了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();
}
示例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);
}
示例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;
}
示例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();
}