您的位置 首页

magento 免邮费价格根据打折后的价格设置

在magento 后台中有设置 免邮费的一项。 但是经过测试实际上价格是小计价格 即购物车里产品价格初步总计,…

在magento 后台中有设置 免邮费的一项。 但是经过测试实际上价格是小计价格

即购物车里产品价格初步总计,还没有做优惠券等折扣计算。

例如有些网站开发了 积分抵现的功能,亦或是你设置了购物车促销规则,亦或是通过促销规则设置了

优惠券等等情况都会造成最终价格低于达到包邮的价格。

那么我们的修改方法如下:

找到文件 Mage\Shipping\Model\Carrier\Freeshipping.php (在 local 下重写)

修改其中代码:

if (!$this->getConfigFlag('active')) {
                return false;
            }

            $result = Mage::getModel('shipping/rate_result');
            $this->_updateFreeMethodQuote($request);
            if (($request->getFreeShipping())
                || ($request->getBaseSubtotalInclTax() >= $this->getConfigData('free_shipping_subtotal'))
            ) {
                $result->append($this->addFreeShipping());
            }

改为:

if (!$this->getConfigFlag('active')) {
                return false;
            }

            $result = Mage::getModel('shipping/rate_result');
            $this->_updateFreeMethodQuote($request);
            if (($request->getFreeShipping())
                || ($request->getPackageValueWithDiscount() >= $this->getConfigData('free_shipping_subtotal'))
            ) {
                $result->append($this->addFreeShipping());
            }

其实就改动了一个函数 即 getPackageValueWithDiscount() 。

函数 getBaseSubtotalInclTax()是获得购物车的小计价格

getPackageValueWithDiscount() 是获得打折后的包裹价格

当然你可以打印出 $request 变量 看一下里面还有那些值。

此文章通过 python 爬虫创建,原文是自己的csdn 地址: magento 免邮费价格根据打折后的价格设置

本文来自网络,不代表找知博客立场,转载请注明出处:http://zhaozhiyong.cn/93.html

作者: 于老大

关注微博
返回顶部
//