修复立即购买会清空购物车的问题
This commit is contained in:
@@ -411,7 +411,11 @@ public class WxOrderService {
|
||||
}
|
||||
|
||||
// 删除购物车里面的商品信息
|
||||
cartService.clearGoods(userId);
|
||||
if(cartId.equals(0)){
|
||||
cartService.clearGoods(userId);
|
||||
}else{
|
||||
cartService.deleteById(cartId);
|
||||
}
|
||||
|
||||
// 商品货品数量减少
|
||||
for (LitemallCart checkGoods : checkedGoodsList) {
|
||||
|
||||
Reference in New Issue
Block a user