标签: magento magento-1.8
我使用此行来获取购物车中产品项目的常规价格
$this->helper('checkout')->formatPrice($_item->getProduct()->getPrice());
但我实际上想要获得正常价格包含税,任何想法我怎么能得到它?
答案 0 :(得分:3)
这样的东西?
Mage::helper('tax')->getPrice($_item->getProduct(), $_item->getProduct()->getPrice());
另见Magento get price including tax in a none-template file