A5下载 - 努力做内容最丰富最安全的下载站!

A5站长下载站

当前位置:A5下载 > 源码技巧 > Ecshop > ecshop订单中只要有一个是包邮商品,就整个订单都包邮

ecshop订单中只要有一个是包邮商品,就整个订单都包邮

时间:2015-06-26 16:31作者:fang人气:51

includes/lib_order.php搜索“查看购物车中是否全为免运费商品,若是则把运费赋为零”,将

$sql = 'SELECT count(*) FROM ' . $GLOBALS['ecs']->table('cart') . " WHERE `session_id` = '" . SESS_ID. "' AND `extension_code` != 'package_buy' AND `is_shipping` = 0";

修改为

$sql = 'SELECT count(*) FROM ' . $GLOBALS['ecs']->table('cart') . " WHERE `session_id` = '" . SESS_ID. "' AND `extension_code` != 'package_buy' AND `is_shipping` = 1";

再把

$total['shipping_fee'] = ($shipping_count == 0 AND $weight_price['free_shipping'] == 1) ?0 : shipping_fee($shipping_info['shipping_code'],$shipping_info['configure'], $weight_price['weight'], $total['goods_price'], $weight_price['number']);

修改为

$total['shipping_fee'] = ($shipping_count >= 1 AND $weight_price['free_shipping'] == 1) ?0 : shipping_fee($shipping_info['shipping_code'],$shipping_info['configure'], $weight_price['weight'], $total['goods_price'], $weight_price['number']);

即可以实现购物车中只要有一个商品是免邮费的则整个购物车中都免邮。

标签ecshop,订单,只要,有一个,包邮,商品,整个,incl

相关下载

查看所有评论+

网友评论

网友
您的评论需要经过审核才能显示

公众号