【发布时间】:2014-05-09 21:30:06
【问题描述】:
我用这条线来获取购物车中商品的正常价格,
$this->helper('checkout')->formatPrice($_item->getProduct()->getPrice());
但我实际上想获得正常价格含税,知道如何获得吗?
【问题讨论】:
标签: magento magento-1.8
我用这条线来获取购物车中商品的正常价格,
$this->helper('checkout')->formatPrice($_item->getProduct()->getPrice());
但我实际上想获得正常价格含税,知道如何获得吗?
【问题讨论】:
标签: magento magento-1.8
这样的?
Mage::helper('tax')->getPrice($_item->getProduct(), $_item->getProduct()->getPrice());
【讨论】: