diff --git a/app/data/controller/api/auth/Order.php b/app/data/controller/api/auth/Order.php index 06fee93b3..5b412771c 100644 --- a/app/data/controller/api/auth/Order.php +++ b/app/data/controller/api/auth/Order.php @@ -75,8 +75,8 @@ class Order extends Auth if (empty($goodsInfo)) $this->error('商品数据查询异常'); if (empty($goodsItem)) $this->error('商品规格查询异常'); // 商品类型检查 - if ($goodsInfo['truck_type'] < 0) $truckType = $goodsInfo['truck_type']; - if ($truckType !== $goodsInfo['truck_type']) $this->error('实物与虚拟不能混下单!' . $truckType . '#' . $goodsInfo['truck_type']); + if ($truckType < 0) $truckType = $goodsInfo['truck_type']; + if ($truckType !== $goodsInfo['truck_type']) $this->error('实物与虚拟不能混合下单!'); // 限制购买数量 if (isset($goods['limit_max_num']) && $goods['limit_max_num'] > 0) { $map = [['a.status', 'in', [2, 3, 4, 5]], ['b.goods_code', '=', $goods['code']], ['a.uid', '=', $this->uuid]];