【发布时间】:2012-11-27 15:51:56
【问题描述】:
正如标题所解释的那样,在 Magento 中,这两者之间有什么区别:
$product->getPrice();
v
$product->getFinalPrice();
【问题讨论】:
标签: magento
正如标题所解释的那样,在 Magento 中,这两者之间有什么区别:
$product->getPrice();
v
$product->getFinalPrice();
【问题讨论】:
标签: magento
最终价格包含折扣。
【讨论】:
Mage::helper('tax')->getPrice($product, $product->getFinalPrice());
getFinalPrice 检查产品是否有折扣,如果此折扣有效,则该方法应用折扣并返回文字“最终价格”,如果您检查 getPrice(),您将获得该产品的简单价格.
【讨论】: