在Magento中显示单一产品的税和税的产品价格

时间:2016-07-10 16:29:35

标签: magento price tax

我想显示不含税的产品价格以及Magento订单中单个产品的税额。

我已加载项目:

$qty                 =$item->getData('qty_ordered');
$sku                 =$item->getSku();
$name                =$item->getName();
$tax                 =$item->getTaxAmount()/$qty;
$price_incl_tax      =$item->getPriceInclTax();
$price_excl_tax      =$price_incl_tax-$tax;

这是有效的,但我不认为这是一个很好的解决方案。如果没有自己计算PHP的价格,有没有更简单的方法?

提前致谢!

编辑:我需要这个:

$_product = $item->getProduct();
$finalPriceExcludingTax = 
Mage::helper('tax') ->getPrice($_product, $_product->getFinalPrice(), false );

可在订购商品上使用,并按客户支付的价格购买。

1 个答案:

答案 0 :(得分:0)

尝试使用税务助手:

$_product = $item->getProduct()
$finalPriceExcludingTax = $this->helper('tax')
    ->getPrice($_product, $_product->getFinalPrice(), false );