服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > magento教程 >

Magento paypal express快速结帐运费丢失的问题

时间:2016-02-29 13:47来源: 作者: 点击:
Magento设置Express paypal,在产品详细页面或者购物车页面点击 直接跳转到Paypal结帐页面的时候没有相关运费,而正常的结帐流程运费计算没有问题。 以默认的运输方式Flat Rate来说,可以

Magento设置Express paypal,在产品详细页面或者购物车页面点击

Magento express paypal

直接跳转到Paypal结帐页面的时候没有相关运费,而正常的结帐流程运费计算没有问题。

以默认的运输方式Flat Rate来说,可以重写方法(模块重写自己搞定 LOL):

app/code/core/Mage/Paypal/Model/Express/Checkout.php @function returnFromPaypal

                 if ($this->_api->getShippingRateCode()) {
                    if ($code = $this->_matchShippingMethodCode($shippingAddress, $this->_api->getShippingRateCode())) {
                         // possible bug of double collecting rates :-/
                        $shippingAddress->setShippingMethod($code)->setCollectShippingRates(true);
                    }
                }

之后加入:

                 if(empty($code)){
                    $code    = 'flatrate_flatrate ';
                    $shippingAddress->setShippingMethod($code)->setCollectShippingRates(true);
                }

$code的值可改为各自的首选默认运输方式。

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
栏目列表
热点内容