当价格设置为动态时,我如何获得捆绑产品原价(特价不包括 - 何时设置)?
我这样想:
<?php echo Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())->getSymbol().number_format($_product->getPrice(),2) ?>
但它仅适用于固定价格,如果价格是动态的,则显示为0.00
最好的方法是适用于两种价格:固定和动态
答案 0 :(得分:1)
查看app / design / frontend / base / default / template / bundle / catalog / product / price.phtml
$_product = $this->getProduct();
$_priceModel = $_product->getPriceModel();
list($_minimalPriceTax, $_maximalPriceTax) = $_priceModel->getTotalPrices($_product, null, null, false);
list($_minimalPriceInclTax, $_maximalPriceInclTax) = $_priceModel->getTotalPrices($_product, null, true, false);
string~128 - 使用动态类型格式化捆绑价格。
<?php if ($_minimalPriceTax <> $_maximalPriceTax): ?>
答案 1 :(得分:0)
这将为您提供捆绑产品动态价格,包括税费Mage::getModel('bundle/product_price')->getTotalPrices($_product,'max',1);
这将为您提供不含税Mage::getModel('bundle/product_price')->getTotalPrices($_product,'max',0);
只需正确传递您的产品对象。