如何在Code Magento 1.9中获得含税价格

时间:2016-08-01 10:52:47

标签: magento magento-1.9

在这一个人身上失眠! Magento将显示税收专属价格。

然而 - 在某些情况下,我想显示包含税的价格。税收设置得当,因为如果我将其全局切换到包含税,它将显示包含价格。

以下代码行总是给我税收专属价格。我对如何获得含税价格感到困惑。自1.3以来有没有新的计算方法?

$_finalPriceInclTax = $this->helper('tax')->getPrice($_product, $_product->getFinalPrice(), true)

1 个答案:

答案 0 :(得分:0)

尝试这个以获得包含税的价格。

$_priceIncludingTax = Mage::helper('tax')->getPrice($_product, $_product->getPrice(), true, null, null, null, null, false);