更改等级价格节省百分比回合逻辑

时间:2013-11-28 19:06:54

标签: magento

我是Magento初学者,所以这可能是一个愚蠢的问题:

我的Magento商店有Jtech分层定价扩展。

我想改变:“买100欧元,每个15.96欧元,并将 26%”保存到 “每人购买100欧元15.96欧元,并保存 25.15%

我知道输出是: 应用程序/设计/前端/默认/模板/模板/目录/产品/视图/ tierprices.phtml

<?php echo $this->__('and') ?>&nbsp;<strong class="benefit"><?php echo $this->__('save')?>&nbsp;<?php echo $_price['savePercent']?>%

我尝试更改\ app \ code \ core \ Mage \ Catalog \ Block \ Product \ Price.php:

 if ($price['price'] < $productPrice) {
                    $price['savePercent'] = ceil(100 - ((100 / $productPrice) * $price['price']));

更改为:

 if ($price['price'] < $productPrice) {
                    $price['savePercent'] = round(100 - ((100 / $productPrice) * $price['price']), 2);

但没有任何反应。

有什么想法吗?

0 个答案:

没有答案