|
@@ -98,18 +98,18 @@ class StoreCart extends BaseModel
|
|
|
} else {
|
|
|
|
|
|
$stock = 0;
|
|
|
- if ($cart['bargain_id']) {
|
|
|
+ if ($bargain_id) {
|
|
|
|
|
|
- $stock = StoreBargain::getBargainStock($cart['bargain_id']);
|
|
|
- } else if ($cart['seckill_id']) {
|
|
|
+ $stock = StoreBargain::getBargainStock($bargain_id);
|
|
|
+ } else if ($seckill_id) {
|
|
|
|
|
|
- $stock = StoreSeckill::getProductStock($cart['seckill_id']);
|
|
|
- } else if ($cart['combination_id']) {
|
|
|
+ $stock = StoreSeckill::getProductStock($seckill_id);
|
|
|
+ } else if ($combination_id) {
|
|
|
|
|
|
- $stock = StoreCombination::getCombinationStock($cart['combination_id'], $cart_num);
|
|
|
+ $stock = StoreCombination::getCombinationStock($combination_id, $cart_num);
|
|
|
} else if ($cart['product_id']) {
|
|
|
|
|
|
- $stock = StoreProduct::getProductStock($cart['product_id'], $cart['product_attr_unique']);
|
|
|
+ $stock = StoreProduct::getProductStock($product_id, $product_attr_unique);
|
|
|
}
|
|
|
if (!$stock) return self::setErrorInfo('暂无库存');
|
|
|
if (!$cart_num) return self::setErrorInfo('库存错误');
|