请问让ecshop退货时改成不退运费方法

2016-09-11 20:39 来源:www.chinab4c.com 作者:ecshop专家

 ecshop官方开发ecshop的时候,如果产生退货,我们在后台操作退货时,默认是把款项退到会员的网站帐户中,并且把邮费一起退过去,那么我们使用时,怎么能把这个改成不退运费呢?这是一个很有必要的功能,也是很常用的功能,下面最源码来详细讲解一下修改方法。

 

修改页面为admin/order.php(这里的admin是网站后台目录,如果您的网站后台目录改了,请找到对应的后台目录下的文件)

 

在该文件里面搜索function return_user_surplus_integral_bonus($order)这个函数,按下面代码修改这个函数,实现自己需要的功能即可 xuew3c.com

如果ecshop退货时不退运费应是:

 

$surplus = $order['money_paid'] < 0 ? $order['surplus'] + $order['money_paid'] - $order['shipping_fee']: $order['surplus'];

 

如果退货时不退动费和支付的手费费应是:

 

$surplus = $order['money_paid'] < 0 ? $order['surplus'] + $order['money_paid'] - $order['shipping_fee']- $order['pay_fee']: $order['surplus'];

如果ecshop退货时不退动费和支付的手费费及包装费应是: 本文来自W3C教程网

$surplus = $order['money_paid'] < 0 ? $order['surplus'] + $order['money_paid'] - $order['shipping_fee']- $order['pay_fee']]- $order['pack_fee']: $order['surplus']; 本文来自W3C教程网

以此类推可以做到ecshop退货时不退其它费