shopnc 购买同一个商品,数量不增加(购物车问题)

shopnc的购物车原理是这样的,当你第一次购买产品后,你在回到列表里购买同一个商品的时候,买的数量是不增加的,你想购买同一个产品增加数量,只能到购物车里面点击增加,这样体验非常不好。

正好在做shopnc商城app的一个项目,于是自己就修改了一下源代码。

先来看看shopnc自己的代码

文件:data/model/cart.model.php

$check_cart = $this->checkCart($condition);
if (!empty($check_cart)) return true;

上面这段代码是判断商品是否存在的,存在了就直接返回ture,比较坑爹!


修改如下:

if (!empty($check_cart)) {

    $data['goods_num'] = (int)$check_cart['goods_num'] + (int)$quantity;
    $update = $this->editCart($data, array('cart_id' => $check_cart['cart_id']));

    if ($update) {
        return true;
    }

}


关键词:shopnc