6

There is an outstanding bug in 1.6+ versions of Magento where the % savings for tier prices defaults to 100% when an option is selected. 其他贡献者建议从第 747 行更改 product.js

for (var i = 0; i < this.tierPrices.length; i++) {

成为

for (var i = 0; i > this.tierPrices.length; i++) {

这解决了节省百分比的问题,但该代码块永远不会执行。I am by no means a Javascript expert but this block appears to be updating the tier price and % savings when options are selected. 我想找到问题的根源,而不是“评论它”。

从我在 Firebug 中的调试中,我注意到 product.js 中的等级价格类是错误的,因此检索到的等级价格为 0,这解释了为什么 % 节省总是 100%。Firebug 显示价格为

class="tier-prices product-pricing">   
        Buy 10 for  
        <span class="price">$40.00</span>

而 product.js 正在尝试使用

$$('.price.tier-' + i).each(function (el) {

如果您将以上内容更改为

$$('.tier-prices .price).each(function (el) {

检索等级价格,但对于产品的多个等级价格,无法单独引用它们。上面的“价格”类没有声明唯一标识符或迭代数。

等级价格的 class="price" 声明在哪里?在 tierprices.phtml 的代码中,它看起来像这样

<?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price'])?>
4

2 回答 2

6

我刚刚在这上面花了一些时间,因为在我将客户的 Magento 站点升级到 1.7.0.2 之后,它真的开始困扰我。

这有两个部分,我将说明位置和修复,但这些不会是升级证明(因为你会想要创建文件的副本并将它们放在你的主题特定文件夹中,尽管我'我不确定是否可以使用有问题的 JS 文件)。

1) 查看修复

在文件中/design/frontend/base/default/template/catalog/product/view/tierprices.phtml

你需要换行32-34

$_product = $this->getProduct();
$_tierPrices = $this->getTierPrices();
$_finalPriceInclTax = $this->helper('tax')->getPrice($_product, $_product->getFinalPrice(), true);

使用以下代码:

$_product = $this->getProduct();
$_tierPrices = array();

foreach($this->getTierPrices() as $index => $info) {
    $_tierPrices[$index] = $info;
    $_tierPrices[$index]['formated_price'] = str_replace('class="price"', 'class="price tier-'.$index.'"', $info['formated_price']);
    $_tierPrices[$index]['formated_price_incl_tax'] = str_replace('class="price"', 'class="price tier-'.$index.' tier-'.$index.'-incl-tax"', $info['formated_price_incl_tax']);
}
$_finalPriceInclTax = $this->helper('tax')->getPrice($_product, $_product->getFinalPrice(), true);

这解决了您已经发现的类未正确呈现的问题。这是我找到这段代码的地方——尽管它没有解决所有问题,因此 JS 发生了变化。

2)JS修复

js/Varien/product.js您需要替换行的文件中757-769

$$('.benefit').each(function (el) {
    var parsePrice = function (html) {
        return parseFloat(/\d+\.?\d*/.exec(html));
    };
    var container = $(this.containers[3]) ? this.containers[3] : this.containers[0];
    var price = parsePrice($(container).innerHTML);
    var tierPrice = $$('.price.tier-' + i);
    tierPrice = tierPrice.length ? parseInt(tierPrice[0].innerHTML, 10) : 0;
    var $percent = Selector.findChildElements(el, ['.percent.tier-' + i]);
    $percent.each(function (el) {
        el.innerHTML = Math.ceil(100 - ((100 / price) * tierPrice));
    });
}, this);

有了这个:

//
// Code fixed to prevent the redundant inner loop and to use actual tiered pricing in calculation
// It also takes the optional price variants into consideration (eg: +£2 for a blue tshirt)
// Note: I've made this comment deliberately large, to keep the line numbers in sync
//
var parsePrice = function (html) {
    return parseFloat(/\d+\.?\d*/.exec(html));
};
var container = $(this.containers[3]) ? this.containers[3] : this.containers[0];
var price = parsePrice($(container).innerHTML);
$$('.percent.tier-' + i).each(function (el) {
    el.innerHTML = Math.ceil(100 - ((100 / price) * (this.tierPrices[i] + parseFloat(optionPrices))));
}, this);

我希望这至少可以为一个人节省几个小时的生命。

于 2013-04-15T18:58:35.693 回答
0

该部分是价格格式化时或在更深的模型层中class="price"的结果Mage_Directory_Model_Currency::formatPrecision()和执行$this->formatPrice()Mage::helper('core')->formatPrice();

您可以通过扩展(和重写)来添加唯一标识符,Mage_Directory_Model_Currency但请注意它formatPrecision无处不在。因此,您可以编写自己的帮助程序/模型逻辑来格式化层级价格。

于 2013-02-04T20:05:27.897 回答