目前,我正在尝试在我的产品提要的 php 文件中获取包含税的产品价格。我现在有这个代码:
$_product = Mage::getModel('catalog/product')->load($productId);
$_priceIncludingTax = $this->helper('tax')
->getPrice($_product, $_product->getFinalPrice());
问题是,因为当然 '$this->' 部分不能从文件中很好地工作。有谁知道我如何才能在这个文件中获得含税价格?