user = $this->getUser(); } /** * 秒杀订单结算 * @return array * @throws \app\common\exception\BaseException * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException * @throws \Exception */ public function checkout() { // 实例化结算台服务 $Checkout = new CheckoutModel; // 订单结算api参数 $params = $Checkout->setParam($this->getParam([ 'active_time_id' => 0, 'sharp_goods_id' => 0, 'goods_sku_id' => '', 'goods_num' => 0, ])); // 设置并发锁 $lockId = "sharp_order_{$params['active_time_id']}_{$params['sharp_goods_id']}"; Lock::lockUp($lockId); // 获取秒杀商品信息 $service = new ActiveService; $goodsList = $service->getCheckoutGoodsList( $params['active_time_id'], $params['sharp_goods_id'], $params['goods_sku_id'], $params['goods_num'] ); if ($goodsList === false) { Lock::unLock($lockId); return $this->renderError($service->getError()); } // 设置订单来源 $Checkout->setOrderSource([ 'source' => OrderSourceEnum::SHARP, 'source_id' => $params['active_time_id'], ]) // 秒杀商品不参与 等级折扣和优惠券折扣 ->setCheckoutRule([ 'is_user_grade' => false, 'is_coupon' => false, 'is_use_points' => false, 'is_dealer' => SettingModel::getIsDealer(), ]); // 获取订单结算信息 $orderInfo = $Checkout->onCheckout($this->user, $goodsList); if ($this->request->isGet()) { Lock::unLock($lockId); return $this->renderSuccess($orderInfo); } // submit:订单结算提交 if ($Checkout->hasError()) { Lock::unLock($lockId); return $this->renderError($Checkout->getError()); } // 创建订单 if (!$Checkout->createOrder($orderInfo)) { Lock::unLock($lockId); return $this->renderError($Checkout->getError() ?: '订单创建失败'); } Lock::unLock($lockId); // 构建微信支付请求 $payment = $Checkout->onOrderPayment(); // 支付状态提醒 return $this->renderSuccess([ 'order_id' => $Checkout->model['order_id'], // 订单id 'pay_type' => $params['pay_type'], // 支付方式 'payment' => $payment // 微信支付参数 ], ['success' => '支付成功', 'error' => '订单未支付']); } /** * 订单结算提交的参数 * @param array $define * @return array */ private function getParam($define = []) { return array_merge($define, $this->request->param()); } }