更新购物车

parent 9a7cb86d
Showing with 2 additions and 2 deletions
...@@ -63,11 +63,11 @@ class CartService ...@@ -63,11 +63,11 @@ class CartService
$temp["buy_price"] = $buy_price; $temp["buy_price"] = $buy_price;
$checkHas = CartModel::where(["user_id"=>$user_id,"goods_id"=>$goods_id,"status"=>1])->first(); $checkHas = CartModel::where(["user_id"=>$user_id,"goods_id"=>$goods_id,"status"=>1])->first();
if ($buy_number < \Arr::get($skuInfo,"moq")){ if ($buy_number < \Arr::get($skuInfo,"moq") || $buy_number < $skuInfo["stock"] ){
return false; return false;
} }
$temp["buy_number"] = $skuInfo["stock"] > $buy_number ? $buy_number : $skuInfo["stock"]; $temp["buy_number"] = $buy_number;
if ($checkHas){ if ($checkHas){
$cart_id = $checkHas["cart_id"]; $cart_id = $checkHas["cart_id"];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment