// +---------------------------------------------------------------------- namespace app\services\pay; use app\services\order\StoreOrderCartInfoServices; use app\services\wechat\WechatUserServices; use think\annotation\Inject; use think\exception\ValidateException; /** * 订单发起支付 * Class OrderPayServices * @package app\services\pay */ class OrderPayServices { /** * 支付 * @var PayServices */ #[Inject] protected PayServices $payServices; /** * 订单发起支付 * @param array $orderInfo * @param string $payType * @return array|string * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function orderPay(array $orderInfo, string $payType) { if ($orderInfo['paid']) { throw new ValidateException('订单已支付!'); } if ($orderInfo['pay_price'] <= 0) { throw new ValidateException('该支付无需支付!'); } $openid = ''; if (!in_array($payType, ['weixinh5', 'pc', 'store']) && !request()->isApp()) { if ($payType === 'weixin') { $userType = 'wechat'; } else { $userType = $payType; } /** @var WechatUserServices $services */ $services = app()->make(WechatUserServices::class); $openid = $services->uidToOpenid($orderInfo['uid'], $userType); if (!$openid) { throw new ValidateException('获取用户openid失败,无法支付'); } } if (isset($orderInfo['recharge_type'])) { $body = '用户充值'; $successAction = "user_recharge"; } elseif (isset($orderInfo['member_type'])) { $body = substrUTf8('线下收银支付:' . $orderInfo['member_type'], 30); $successAction = "member"; } else { /** @var StoreOrderCartInfoServices $orderInfoServices */ $orderInfoServices = app()->make(StoreOrderCartInfoServices::class); $body = $orderInfoServices->getCarIdByProductTitle((int)$orderInfo['id']); $body = substrUTf8($body, 30); $successAction = "product"; } if (!$body) { throw new ValidateException('支付参数缺少:请前往后台设置->系统设置-> 填写 网站名称'); } return $this->payServices->pay($payType, $openid, $orderInfo['order_id'], $orderInfo['pay_price'], $successAction, $body); } /** * 支付宝支付 * @param array $orderInfo * @param string $quitUrl * @return array|string */ public function alipayOrder(array $orderInfo, string $quitUrl, bool $isCode = false) { if ($orderInfo['paid']) { throw new ValidateException('订单已支付!'); } if ($orderInfo['pay_price'] <= 0) { throw new ValidateException('该支付无需支付!'); } if (isset($orderInfo['recharge_type'])) { $body = '用户充值'; $successAction = "user_recharge"; } elseif (isset($orderInfo['member_type'])) { $body = substrUTf8($orderInfo['member_type'], 30); $successAction = "member"; } else { /** @var StoreOrderCartInfoServices $orderInfoServices */ $orderInfoServices = app()->make(StoreOrderCartInfoServices::class); $body = $orderInfoServices->getCarIdByProductTitle((int)$orderInfo['id']); $body = substrUTf8($body, 30); $successAction = "product"; } if (!$body) { throw new ValidateException('支付参数缺少:请前往后台设置->系统设置-> 填写 网站名称'); } return $this->payServices->pay('alipay', $quitUrl, $orderInfo['order_id'], $orderInfo['pay_price'], $successAction, $body, $isCode); } }