diff --git a/app/Http/Controllers/Hospital/IntroduceController.php b/app/Http/Controllers/Hospital/IntroduceController.php index d945b0d..72556e6 100644 --- a/app/Http/Controllers/Hospital/IntroduceController.php +++ b/app/Http/Controllers/Hospital/IntroduceController.php @@ -93,7 +93,7 @@ class IntroduceController extends Controller foreach ($doctor_lists as $k => $v) { $doctor_lists[$k]['dept_name'] = $v->department->dept_name ?? ''; - $doctor_lists[$k]['doctor_avatar'] = getAdminUploadImageUrl($v['doctor_avatar']); + $doctor_lists[$k]['doctor_avatar'] = getAdminUploadImageUrl((string) $v['doctor_avatar']); } return jsonResponse(Response::HTTP_OK, 'success.', $doctor_lists->toArray()); @@ -123,7 +123,7 @@ class IntroduceController extends Controller 'doctor_name' => $doctor_details->doctor_name, 'doctor_title' => $doctor_details->doctor_title, 'doctor_specialty' => $doctor_details->doctor_specialty, - 'avatar' => getAdminUploadImageUrl($doctor_details->avatar), + 'avatar' => getAdminUploadImageUrl((string) $doctor_details->avatar), 'introduction' => $doctor_details->introduction ?: '', 'is_expert' => $doctor_details->is_expert, ]; @@ -150,7 +150,7 @@ class IntroduceController extends Controller 'address' => $info->address ?: '', 'telephone' => $info->telephone ?: '', 'email' => $info->email ?: '', - 'logo' => getAdminUploadImageUrl($info->logo), + 'logo' => getAdminUploadImageUrl((string) $info->logo), 'website' => $info->website ?: '', 'description' => !empty($info['description']) ? html_entity_decode($info['description']) : '' ]; @@ -199,7 +199,7 @@ class IntroduceController extends Controller } foreach ($new_lists as $v) { - $v['image'] = getAdminUploadImageUrl($v['image']); + $v['image'] = getAdminUploadImageUrl((string) $v['image']); } return jsonResponse(Response::HTTP_OK, 'success.', $new_lists); @@ -225,7 +225,7 @@ class IntroduceController extends Controller throw new GeneralException('找不到该新闻动态信息'); } - $details['image'] = getAdminUploadImageUrl($details['image']); + $details['image'] = getAdminUploadImageUrl((string) $details['image']); $details['content'] = !empty($details['content']) ? html_entity_decode($details['content']) : ''; return jsonResponse(Response::HTTP_OK, 'success.', $details); @@ -292,7 +292,7 @@ class IntroduceController extends Controller } foreach ($building_lists as $k => $v) { - $building_lists[$k]['image'] = getAdminUploadImageUrl($v['image']); + $building_lists[$k]['image'] = getAdminUploadImageUrl((string) $v['image']); } return jsonResponse(Response::HTTP_OK, 'success.', $building_lists); diff --git a/app/Http/Controllers/Notify/NotifyController.php b/app/Http/Controllers/Notify/NotifyController.php index 059cc62..2103457 100644 --- a/app/Http/Controllers/Notify/NotifyController.php +++ b/app/Http/Controllers/Notify/NotifyController.php @@ -3,13 +3,14 @@ declare(strict_types = 1); namespace App\Http\Controllers\Notify; -use App\Dictionary\WeChat\Payment\V2Api; use App\Http\Controllers\Controller; use App\Http\Logics\Notify\NotifyLogic; use App\Utils\Traits\Logger; use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; use EasyWeChat\Kernel\Exceptions\RuntimeException; -use EasyWeChat\Pay\Message; +use EasyWeChat\Kernel\Support\Xml; +use Exception; +use Nyholm\Psr7\Response; use Psr\Http\Message\ResponseInterface; use ReflectionException; use Throwable; @@ -42,29 +43,58 @@ class NotifyController extends Controller $app = getWeChatMiniProgramPaymentApp(); $server = $app->getServer(); - $server->handlePaid(function (Message $message, \Closure $next) use ($app) { - // $message->out_trade_no 获取商户订单号 - // $message->payer['openid'] 获取支付者 openid - // 🚨🚨🚨 注意:推送信息不一定靠谱哈,请务必验证 - // 建议是拿订单号调用微信支付查询接口, - $this->info('接收回调消息', $message->toArray()); - try{ - // 验证签名通过,业务处理 - $app->getValidator()->validate($app->getRequest()); + $message = $server->getRequestMessage(); + $this->info('接收回调消息', $message->toArray()); - // 业务处理 - $result = $this->notify_logic->notifyHandle($message); + try { + // 验证签名通过,业务处理 + // $app->getValidator()->validate($app->getRequest()); - $this->info('接受回调消息结果', ['result' => $result]); - } catch(\Exception $e){ - // 验证失败 - $err_msg = '订单验证签名失败:'. $e->getMessage() . ' in ' . $e->getFile() . ':' . $e->getLine(); - $this->error($err_msg, [$message->toArray()]); + // 业务处理 + $result = $this->notify_logic->notifyHandle($message); + $this->info('接受回调消息结果', ['result' => $result]); + + if ($result) { + return $this->returnSuccess(); } - return $next($message); - }); + return $this->returnFailure('订单处理失败'); + } catch (Exception $e) { + // 验证失败 + $err_msg = '订单处理流程失败:' . $e->getMessage() . ' in ' . $e->getFile() . ':' . $e->getLine(); + $this->error($err_msg, [$message->toArray()]); + + // 返回 SUCCESS 或者 FAIL 等其他状态 + return $this->returnFailure('订单处理异常'); + } + } - return $server->serve(); + /** + * 返回成功 + * @return Response + */ + public function returnSuccess(): Response + { + return new Response(200, [], + Xml::build([ + 'return_code' => 'SUCCESS', + 'return_msg' => 'OK' + ]) + ); + } + + /** + * 返回失败 + * @param string $error_msg + * @return Response + */ + public function returnFailure(string $error_msg): Response + { + return new Response(200, [], + Xml::build([ + 'return_code' => 'FAIL', + 'return_msg' => $error_msg + ]) + ); } } diff --git a/app/Http/Controllers/Patient/PatientController.php b/app/Http/Controllers/Patient/PatientController.php index 22488c5..9ee09e2 100644 --- a/app/Http/Controllers/Patient/PatientController.php +++ b/app/Http/Controllers/Patient/PatientController.php @@ -99,8 +99,27 @@ class PatientController */ public function delete(Request $request, string $patient_id): JsonResponse { - $this->patient_logic->cancelBindPatient($patient_id); + $this->patient_logic->cancelBindPatient($patient_id); return jsonResponse(Response::HTTP_OK, 'delete success.'); } + + /** + * 获取手机号码 + * @param Request $request + * @return JsonResponse + * @throws GeneralException + */ + public function getPhoneNumber(Request $request): JsonResponse + { + $validated = $request->validate([ + 'code' => 'required', + ],[ + 'code.required' => '数据错误', + ]); + + $phone_info = $this->patient_logic->getPhoneNumber($validated['code']); + + return jsonResponse(Response::HTTP_OK, 'success', ['phone_info' => $phone_info]); + } } diff --git a/app/Http/Controllers/Test/TestController.php b/app/Http/Controllers/Test/TestController.php new file mode 100644 index 0000000..c2af1a4 --- /dev/null +++ b/app/Http/Controllers/Test/TestController.php @@ -0,0 +1,22 @@ +getAccessToken()->getToken()); + +// $refund = new RefundOrder('WXM20250208110845293', 'WXM20250208110845293_R123', '0.01', '人工退费'); +// $response = Unify::common(config('unify'))->order->refund($refund); +// dd($response); + } +} diff --git a/app/Http/Logics/Notify/NotifyLogic.php b/app/Http/Logics/Notify/NotifyLogic.php index 818bab3..e8e24c9 100644 --- a/app/Http/Logics/Notify/NotifyLogic.php +++ b/app/Http/Logics/Notify/NotifyLogic.php @@ -111,7 +111,7 @@ class NotifyLogic } } catch (GeneralException|Exception $e) { $err_msg = $e->getMessage().' ON '. $e->getFile(). ':'. $e->getLine(); - recordLog('NotifyLog', $err_msg); + $this->error('挂号流程错误:'. $err_msg); $this->unlockOrder($notify->out_trade_no, $lock_id); return false; } @@ -137,7 +137,7 @@ class NotifyLogic $order_info->patient_id, $order_info->patient_name, $record->dept_id, - $record->docttor_id, + $record->doctor_id, $record->reg_id, $extra['scheduleInfo']['rankId'], $record->visit_date, @@ -155,14 +155,14 @@ class NotifyLogic if (isset($response['success']) && $response['success'] === true) { // 成功流程 - $order_info->orderConfirm($order_info->order_id, $response['visitNo'], $response); + $order_info->orderConfirm($order_info->order_id, $response['response']['visitNo'], $response); // 支付平台业务确认 - $this->unifyConfirm($notify['out_trade_no'], $response['visitNo'], $notify['openid'], $notify['transaction_id']); + $this->unifyConfirm($notify['out_trade_no'], $response['response']['visitNo'], $notify['openid'], $notify['transaction_id']); // 推送成功 $this->sendRegistrationSuccessMessage($order_info); - } else if (isset($response['success']) && $response['success'] === false) { + } else if (isset($response['success']) && $response['success'] === false && $response['msg'] !== '服务异常') { // 失败流程 $this->handleOrderReverse($order_info, $response['msg'] ?? ''); @@ -185,24 +185,27 @@ class NotifyLogic */ public function outpatientOrderHandle(OrderModel $order_info, Message $notify): void { - // 挂号确认 - $patient = $order_info->patient; + // 缴费确认 $record = $order_info->outpatientPaymentRecord; - $extra = json_decode(reset($order_info->outpatientPaymentRecord), true); - $pay_time = strtotime($notify->time_end); - foreach ($record as $v) { $extra_info = json_decode($v->extra_info, true); $prescription_ids[] = $extra_info['prescriptionId']; } + // 如果没查到对应的缴费处方记录,直接跳出 + if (empty($extra_info) || empty($prescription_ids)) { + return; + } + + $this->info('处方记录信息:'.$order_info->order_id, [$prescription_ids]); + $data = [ $order_info->patient_id, '0', - date('Y-m-d', $extra['visitDate']), + $extra_info['strVisitDate'], implode(',', $prescription_ids), - $extra['visitNumber'], + $extra_info['visitNumber'], '', $order_info->order_id, PayType::WECHAT_PAY->hisCode(), @@ -215,14 +218,14 @@ class NotifyLogic // 保存返回信息 if (isset($response['success']) && $response['success'] === true) { // 成功流程 - $order_info->orderConfirm($order_info->order_id, $response['hosTranNo'], $response); + $order_info->orderConfirm($order_info->order_id, $response['response']['hosTranNo'], $response); // 支付平台业务确认 - $this->unifyConfirm($notify['out_trade_no'], $response['hosTranNo'], $notify['openid'], $notify['transaction_id']); + $this->unifyConfirm($notify['out_trade_no'], $response['response']['hosTranNo'], $notify['openid'], $notify['transaction_id']); // 推送成功 $this->sendOutpatientPaymentSuccessMessage($order_info); - } else if (isset($response['success']) && $response['success'] === false) { + } else if (isset($response['success']) && $response['success'] === false && $response['msg'] !== '服务异常') { // 失败流程 $this->handleOrderReverse($order_info, $response['msg']); diff --git a/app/Http/Logics/Outpatient/RecordLogic.php b/app/Http/Logics/Outpatient/RecordLogic.php index 610ae2e..35158fb 100644 --- a/app/Http/Logics/Outpatient/RecordLogic.php +++ b/app/Http/Logics/Outpatient/RecordLogic.php @@ -11,6 +11,7 @@ use App\Utils\Traits\Logger; use App\Utils\Traits\MiniProgramAuth; use Illuminate\Auth\AuthenticationException; use Illuminate\Support\Facades\Cache; +use Illuminate\Support\Facades\Redis; use Symfony\Component\HttpFoundation\Response; class RecordLogic @@ -47,7 +48,7 @@ class RecordLogic } // 缓存2小时 - Cache::set('Outpatient.Record.'. $this->open_id.'.'. $patient_id, json_encode($response, JSON_UNESCAPED_UNICODE), 2 * 60 * 60); + Redis::setex('Outpatient.Record.'. $this->open_id.'.'. $patient_id, 2 * 60 * 60, json_encode($response, JSON_UNESCAPED_UNICODE)); return $response; } @@ -82,7 +83,7 @@ class RecordLogic { $cache_key = 'Outpatient.Record.'. $this->open_id.'.'. $patient_id; - $record_info = Cache::get($cache_key); + $record_info = Redis::get($cache_key); if (empty($record_info)) { throw new GeneralException($response['ERRORMSG'] ?? '查询不到缴费记录,请重新再试!', Response::HTTP_SERVICE_UNAVAILABLE); } diff --git a/app/Http/Logics/Patient/PatientLogic.php b/app/Http/Logics/Patient/PatientLogic.php index 4bbea78..3fc6fd9 100644 --- a/app/Http/Logics/Patient/PatientLogic.php +++ b/app/Http/Logics/Patient/PatientLogic.php @@ -5,6 +5,7 @@ namespace App\Http\Logics\Patient; use App\Dictionary\Patient\CardType; use App\Dictionary\Patient\Sex; +use App\Dictionary\WeChat\MiniProgram\OpenApi; use App\Exceptions\GeneralException; use App\Models\Patient; use App\Services\HisHttp\Client; @@ -12,8 +13,10 @@ use App\Utils\Traits\Logger; use App\Utils\Traits\MiniProgramAuth; use App\Utils\Traits\SendSubscribeMessage; use App\Utils\Traits\UniversalEncryption; +use Exception; use Illuminate\Auth\AuthenticationException; use Symfony\Component\HttpFoundation\Response; +use Symfony\Contracts\HttpClient\Exception\ExceptionInterface; class PatientLogic { @@ -270,7 +273,37 @@ class PatientLogic throw new GeneralException('解绑失败,请稍后再试!', Response::HTTP_INTERNAL_SERVER_ERROR); } - $this->sendUnbindPatientSubscribeMessage($this->open_id, $info->id, $info['name'], '', $patient_number); + $this->sendUnbindPatientSubscribeMessage($this->open_id, $info->id, $info['name'], ' ', $patient_number); return true; } + + /** + * 获取患者手机号码 + * @param string $code + * @return array + * @throws GeneralException + */ + public function getPhoneNumber(string $code): array + { + try { + $mini = getWeChatMiniProgramApp(); + $response = $mini->getClient()->postJson(OpenApi::GET_PHONE_NUMBER->value, [ + 'code' => $code + ]); + + $this->info('获取手机号码接口返回', [$response]); + + if ($response['errcode'] !== 0 || empty($response['phone_info'])) { + throw new GeneralException('获取手机号码失败,请稍后再试!'); + } + + return $response['phone_info']; + + } catch (ExceptionInterface|Exception $e) { + //service error + $message = $e->getMessage() . ' in ' . $e->getFile() . ':' . $e->getLine(); + $this->error('获取手机号码接口报错', [$message]); + throw new GeneralException('获取手机号码失败,请稍后再试!', Response::HTTP_BAD_REQUEST); + } + } } diff --git a/app/Http/Logics/Registration/RecordLogic.php b/app/Http/Logics/Registration/RecordLogic.php index 7c201f3..fe61565 100644 --- a/app/Http/Logics/Registration/RecordLogic.php +++ b/app/Http/Logics/Registration/RecordLogic.php @@ -5,6 +5,7 @@ namespace App\Http\Logics\Registration; use App\Dictionary\Order\PayType; use App\Dictionary\Order\SourceId; +use App\Dictionary\Order\Status; use App\Dictionary\Order\Type; use App\Exceptions\GeneralException; use App\Models\Order; @@ -141,6 +142,7 @@ class RecordLogic throw new GeneralException($response['msg'] ?? '退号失败,请重新再试!', Response::HTTP_BAD_REQUEST); } + // 创建退款单 $refund_order_id = $this->order_model->getRefundOrderId($order_id); $refund_order_info = $this->order_model->createRefundOReverseOrder( @@ -161,22 +163,25 @@ class RecordLogic throw new GeneralException($response['msg'] ?? '退号成功,退费失败,请重新再试!', Response::HTTP_BAD_REQUEST); } - // 退款 - try { - $refund_order_obj = new RefundOrder($order_id, $refund_order_id, $fee, '患者自行退号退费'); - $response = Unify::common(config('unify'))->order->refund($refund_order_obj); - $this->info('退号退费结果', $response); + // 非免费号,需要退费 + if ($fee > 0) { + // 退款 + try { + $refund_order_obj = new RefundOrder($order_id, $refund_order_id, $fee, '患者自行退号退费'); + $response = Unify::common(config('unify'))->order->refund($refund_order_obj); + $this->info('退号退费结果', $response); - } catch (ReflectionException $e) { - $this->order_model->reverseOrderOpera($refund_order_id, $fee, false); + } catch (ReflectionException $e) { + $this->order_model->reverseOrderOpera($refund_order_id, $fee, false); - throw new GeneralException($e->getMessage() ?? '退号成功,退费失败,请重新再试!', Response::HTTP_SERVICE_UNAVAILABLE); - } + throw new GeneralException($e->getMessage() ?? '退号成功,退费失败,请重新再试!', Response::HTTP_SERVICE_UNAVAILABLE); + } - if (empty($response) || $response['status'] !== 200 || $response['success'] !== true) { - $this->order_model->reverseOrderOpera($refund_order_id, $fee, false); + if (empty($response) || $response['status'] !== 200 || $response['success'] !== true) { + $this->order_model->reverseOrderOpera($refund_order_id, $fee, false); - throw new GeneralException($response['msg'] ?? '退号成功,退费失败,请重新再试!', Response::HTTP_BAD_REQUEST); + throw new GeneralException($response['msg'] ?? '退号成功,退费失败,请重新再试!', Response::HTTP_BAD_REQUEST); + } } $this->order_model->reverseOrderOpera($refund_order_id, $fee, true); diff --git a/app/Http/Middleware/RecordApiLog.php b/app/Http/Middleware/RecordApiLog.php index ce8a6e5..9dba71c 100644 --- a/app/Http/Middleware/RecordApiLog.php +++ b/app/Http/Middleware/RecordApiLog.php @@ -6,6 +6,7 @@ use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\Request; use Illuminate\Http\Response; +use Symfony\Component\HttpFoundation\Response as HttpResponse; class RecordApiLog { @@ -23,9 +24,9 @@ class RecordApiLog /** * @param Request $request - * @param Response|JsonResponse $response + * @param Response|JsonResponse|HttpResponse $response */ - public function terminate(Request $request, Response|JsonResponse $response): void + public function terminate(Request $request, Response|JsonResponse|HttpResponse $response): void { //结束时间 $end = microtime(true); @@ -34,25 +35,32 @@ class RecordApiLog $ip = json_encode($request->ips(),256); if ($response instanceof JsonResponse) { - $responseStr = $this->getJsonResponseStr($response); + $response_str = $this->getJsonResponseStr($response); } else { - $responseStr = $this->getResponseStr($response); + $response_str = $this->getResponseStr($response); + } + + // 回调消息获取request_data + if (stripos($request->url, 'notify') !== false) { + $request_data = file_get_contents('php://input') ?: file_get_contents('php://temp'); + } else { + $request_data = request()->all(); } recordLog('RecordApiUse', implode("\n", [ '请求地址: '. $ip. '|'. $request->method(). '|'. $request->url(), - '请求入参: '. json_encode(request()->all(), JSON_UNESCAPED_UNICODE), - '请求出参: '. $responseStr, + '请求入参: '. json_encode($request_data, JSON_UNESCAPED_UNICODE), + '请求出参: '. $response_str, '耗时: '. sprintf("%.6f", $diff). 's' ])); } /** * 获取响应字符串 - * @param Response $response + * @param Response|HttpResponse $response * @return string */ - protected function getResponseStr(Response $response): string + protected function getResponseStr(Response|HttpResponse $response): string { return PHP_EOL. sprintf('HTTP/%s %s %s', $response->getProtocolVersion(), $response->getStatusCode(), Response::$statusTexts[$response->getStatusCode()]). PHP_EOL. $response->headers. PHP_EOL. diff --git a/app/Http/Resources/Outpatient/Pending/PendingListsResource.php b/app/Http/Resources/Outpatient/Pending/PendingListsResource.php index f25ac35..5c77925 100644 --- a/app/Http/Resources/Outpatient/Pending/PendingListsResource.php +++ b/app/Http/Resources/Outpatient/Pending/PendingListsResource.php @@ -31,7 +31,7 @@ class PendingListsResource extends JsonResource 'remark' => $v['remarks'], 'is_self_pay' => $v['isexpense'], 'prescription_number' => $v['nrescriptionNumber'], - 'exec_address' => $v['takeMedicine'], + 'exec_address' => $v['takeMedicine'] ?: '', 'visit_no' => $v['visitNumber'], ]; } diff --git a/app/Http/Resources/Registration/Schedule/DoctorListsResource.php b/app/Http/Resources/Registration/Schedule/DoctorListsResource.php index 850f2b9..7194ea4 100644 --- a/app/Http/Resources/Registration/Schedule/DoctorListsResource.php +++ b/app/Http/Resources/Registration/Schedule/DoctorListsResource.php @@ -71,7 +71,7 @@ class DoctorListsResource extends JsonResource ->orderBy('id', 'ASC') ->get(); - $doctor_lists = $doctor_lists->keyBy('doctor_id')->map(function ($value) { return (array)$value; })->toArray(); + $doctor_lists = $doctor_lists->keyBy('doctor_id')->map(function ($value) { return $value->toArray(); })->toArray(); Redis::setex('doctor.lists', 4 * 3600, json_encode($doctor_lists, JSON_UNESCAPED_UNICODE)); } diff --git a/app/Jobs/Message/Message.php b/app/Jobs/Message/Message.php index 9b64a79..fbdf99f 100644 --- a/app/Jobs/Message/Message.php +++ b/app/Jobs/Message/Message.php @@ -41,7 +41,7 @@ abstract class Message /** @var Response $response */ $response = $this->getApp()->getClient()->postJson($type->api()->value, $message); - Log::channel('SendWeChatMessage')->info('Push WeChat Message', [$type->label(), $message, $response->getContent(false)]); + Log::channel('send_wechat_message')->info('Push WeChat Message', [$type->label(), $message, $response->getContent(false)]); return $response; } diff --git a/app/Jobs/SendWeChatMessageJob.php b/app/Jobs/SendWeChatMessageJob.php index aebfc2d..6165471 100644 --- a/app/Jobs/SendWeChatMessageJob.php +++ b/app/Jobs/SendWeChatMessageJob.php @@ -97,14 +97,14 @@ class SendWeChatMessageJob implements ShouldQueue, ShouldBeUnique $data = $response->toArray(false); if ($response->isSuccessful()) { - $this->successful((string)$data['errcode']); + $this->successful((string)($data['msgid'] ?? $data['errcode'])); } else { $this->retry((string)$data['errmsg']); } } catch (Exception|Throwable $e) { $message = $e->getMessage().' in '.$e->getFile().':'.$e->getLine(); - Log::channel('SendWeChatMessage')->info('Push WeChat Message Error', [$this->message->id, $message]); + Log::channel('send_wechat_message')->info('Push WeChat Message Error', [$this->message->id, $message]); $this->retry($e->getMessage()); } diff --git a/app/Models/Order.php b/app/Models/Order.php index bca7985..cb9b748 100644 --- a/app/Models/Order.php +++ b/app/Models/Order.php @@ -80,7 +80,7 @@ class Order extends Model */ public function patient(): belongsTo { - return $this->belongsTo(Patient::class, 'id', 'relate_patient_id'); + return $this->belongsTo(Patient::class, 'relate_patient_id', 'id'); } /** @@ -294,10 +294,10 @@ class Order extends Model break; case Type::OUTPATIENT_PAYMENT->value: $record = $order->outpatientPaymentRecord; - $extra_info = json_decode($record->extra_info, true); - $extra_info['confirm_response'] = $response; foreach ($record as $v) { + $extra_info = json_decode($v->extra_info, true); + $extra_info['confirm_response'] = $response; $v->update(['extra_info' => json_encode($extra_info, JSON_UNESCAPED_UNICODE)]); } break; diff --git a/app/Utils/CentralControlAccessToken.php b/app/Utils/CentralControlAccessToken.php new file mode 100644 index 0000000..ae8eed4 --- /dev/null +++ b/app/Utils/CentralControlAccessToken.php @@ -0,0 +1,118 @@ +getKey()); + + if ($token && is_string($token)) { + return $token; + } + + return $this->refresh(); + } + + /** + * Get Access Token For Query Params. + * + * @return array + * + * @throws ClientExceptionInterface + * @throws ContainerExceptionInterface + * @throws DecodingExceptionInterface + * @throws HttpException + * @throws JsonException + * @throws NotFoundExceptionInterface + * @throws RedirectionExceptionInterface + * @throws ServerExceptionInterface + * @throws TransportExceptionInterface + */ + #[ArrayShape(['access_token' => "string"])] + public function toQuery(): array + { + return ['access_token' => $this->getToken()]; + } + + /** + * @return string + * + * @throws HttpException + * @throws JsonException + * @throws ClientExceptionInterface + * @throws DecodingExceptionInterface + * @throws RedirectionExceptionInterface + * @throws ServerExceptionInterface + * @throws TransportExceptionInterface + */ + public function refresh(): string + { + $client = HttpClient::create(['base_uri' => 'https://api.weixin.qq.com/']); + $response = $client->request( + 'GET', + OpenApi::GET_ACCESS_TOKEN->value, + [ + 'query' => [ + 'grant_type' => 'client_credential', + 'appid' => config('wechat.mini.app_id'), + 'secret' =>config('wechat.mini.secret'), + ], + ] + )->toArray(false); + + if (empty($response['access_token'])) { + throw new HttpException('Failed to get access_token: '. json_encode($response, JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE) + ); + } + + Redis::setex($this->getKey(), (int)$response['expires_in'] - 300, $response['access_token']); + + return $response['access_token']; + } +} diff --git a/app/Utils/Helpers.php b/app/Utils/Helpers.php index ffd994b..0bb7c64 100644 --- a/app/Utils/Helpers.php +++ b/app/Utils/Helpers.php @@ -4,6 +4,7 @@ use EasyWeChat\MiniApp\Application as MiniApplication; use EasyWeChat\Pay\Application as PayApplication; use Illuminate\Http\JsonResponse; use Illuminate\Support\Facades\Route; +use App\Utils\CentralControlAccessToken; if (!function_exists('jsonResponse')) { /** @@ -763,7 +764,7 @@ if (!function_exists('getWeChatMiniProgramApp')) { */ function getWeChatMiniProgramApp(): MiniApplication { - return new MiniApplication(config('wechat.mini')); + return (new MiniApplication(config('wechat.mini')))->setAccessToken(new CentralControlAccessToken()); } } diff --git a/app/Utils/Traits/SendSubscribeMessage.php b/app/Utils/Traits/SendSubscribeMessage.php index e50a16d..11fa631 100644 --- a/app/Utils/Traits/SendSubscribeMessage.php +++ b/app/Utils/Traits/SendSubscribeMessage.php @@ -55,7 +55,7 @@ trait SendSubscribeMessage } /** - * 发送绑定患者订阅消息 + * 发送解绑患者订阅消息 * @param string $open_id * @param int $relate_patient_id * @param string $patient_name @@ -73,7 +73,7 @@ trait SendSubscribeMessage 'data' => [ 'thing1' => ['value' => $patient_name], 'time2' => ['value' => date('Y-m-d H:i')], - 'thing3' => ['value' => '您已解除绑定关系,无法使用线上线下就医服务。'], + 'thing3' => ['value' => '已解除绑定关系,无法使用线上线下就医服务'], 'character_string5' => ['value' => $inpatient_id], 'character_string6' => ['value' => $patient_id], ], @@ -135,7 +135,7 @@ trait SendSubscribeMessage 'thing17' => ['value' => $record->dept_location], 'character_string15' => ['value' => $visit_time], 'thing19' => ['value' => $record->doctor_name], - 'amount13' => ['value' => $order->fee / 100], + 'amount13' => ['value' => ($order->fee / 100). '元'], ], 'miniprogram_state' => config('custom.mini_program_message_state') ]; @@ -166,7 +166,7 @@ trait SendSubscribeMessage 'thing3' => ['value' => $record->doctor_name], 'name1' => ['value' => $order->patient_name], 'time4' => ['value' => $visit_time], - 'amount13' => ['value' => $order->fee / 100], + 'amount13' => ['value' => ($order->fee / 100). '元'], ], 'miniprogram_state' => config('custom.mini_program_message_state') ]; @@ -224,9 +224,9 @@ trait SendSubscribeMessage 'page' => 'pagesA/outpatient/outPayList', 'data' => [ 'date5' => ['value' => date('Y-m-d')], - 'amount6' => ['value' => $order->fee / 100], + 'amount6' => ['value' => ($order->fee / 100). '元'], 'character_string7' => ['value' => $order->order_id], - 'character_string14' => ['value' => $order->patient_id], + 'character_string14' => ['value' => $order->patient->patient_number], 'thing9' => ['value' => '门诊缴费'], ], 'miniprogram_state' => config('custom.mini_program_message_state') @@ -256,7 +256,7 @@ trait SendSubscribeMessage 'character_string1' => ['value' => $order->order_id], 'thing2' => ['value' => '门诊缴费'], 'name3' => ['value' => $order->patient_name], - 'amount4' => ['value' => $order->fee / 100], + 'amount4' => ['value' => ($order->fee / 100). '元'], 'date6' => ['value' => date('Y-m-d')], ], 'miniprogram_state' => config('custom.mini_program_message_state') diff --git a/app/Utils/Transfer/HisHttpClient/ClientMockHttpTransfer.php b/app/Utils/Transfer/HisHttpClient/ClientMockHttpTransfer.php index 0270dd8..331d1df 100644 --- a/app/Utils/Transfer/HisHttpClient/ClientMockHttpTransfer.php +++ b/app/Utils/Transfer/HisHttpClient/ClientMockHttpTransfer.php @@ -7,6 +7,7 @@ use App\Exceptions\GeneralException; use App\Utils\Transfer\HttpTransferAbstract; use App\Utils\Transfer\SoapTransferAbstract; use Exception; +use Random\RandomException; class ClientMockHttpTransfer extends HttpTransferAbstract { @@ -54,6 +55,7 @@ class ClientMockHttpTransfer extends HttpTransferAbstract 'GHCancelConfirm' => $this->mockRefundRegister($request_data), 'ListVisitRec' => $this->mockGetPendingLists($request_data), 'ListRecipe' => $this->mockGetPendingDetails($request_data), + 'PayBillTrade' => $this->mockConfirmPayment($request_data), 'OutpatientExpenseRecord' => $this->mockGetPaidLists($request_data), 'OutpatientDetailRecord' => $this->mockGetPaidDetails($request_data), 'CreateOutpatientinvoiceEBill' => $this->mockCreateElectronInvoice($request_data), @@ -95,10 +97,12 @@ class ClientMockHttpTransfer extends HttpTransferAbstract * mockRegisterCard * @param array $params * @return self + * @throws RandomException */ private function mockRegisterCard(array $params): self { - $this->transfer_response = '{"status":200,"success":true,"msg":"成功","msgDev":null,"response":{"patientId":"2235711"}}'; + $patient_id = random_int(1000000, 9999999); + $this->transfer_response = '{"status":200,"success":true,"msg":"成功","msgDev":null,"response":{"patientId":"'. $patient_id.'"}}'; return $this; } @@ -107,10 +111,15 @@ class ClientMockHttpTransfer extends HttpTransferAbstract * mockGetPatientInfo * @param array $params * @return self + * @throws RandomException */ private function mockGetPatientInfo(array $params): self { - $this->transfer_response = '{"status":200,"success":true,"msg":"成功","msgDev":null,"response":{"patientId":"2235574","cardNo":"230403199903245493","name":"谭玉山","sex":"1","birthday":"1999-03-24","cardStatus":"0","naturePatients":"123","patientNumber":"288712335574"}}'; + $patient_id = random_int(1000000, 9999999); + $patient_number = random_int(100000, 999999). random_int(100000, 999999); + $card_no = &$params['json']['cardNo']; + $name = &$params['json']['name']; + $this->transfer_response = '{"status":200,"success":true,"msg":"成功","msgDev":null,"response":{"patientId":"'. $patient_id.' ","cardNo":"'. $card_no. '","name":"'. ($name ?: '谭玉山').'","sex":"1","birthday":"1999-03-24","cardStatus":"0","naturePatients":"123","patientNumber":"'. $patient_number. '"}}'; return $this; } @@ -135,7 +144,7 @@ class ClientMockHttpTransfer extends HttpTransferAbstract private function mockGetDoctorLists(array $params): self { $date = &$params['json']['date']; - $this->transfer_response = '{"status":200,"success":true,"msg":"成功","msgDev":null,"response":[{"doctId":"10488","doctName":"梁燕华","docTitle":"副主任医师","depLocation":"","isksDoc":"1","doctotVisitInfoList":[{"doctId":"10488","regId":"916601","rankId":"1","rankName":"上午","startTime":"08:00","endTime":"08:30","fee":"0","feeCode":"","regCount":"4","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916602","rankId":"1","rankName":"上午","startTime":"08:30","endTime":"09:00","fee":"0","feeCode":"","regCount":"3","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916603","rankId":"1","rankName":"上午","startTime":"09:00","endTime":"09:30","fee":"0","feeCode":"","regCount":"3","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916604","rankId":"1","rankName":"上午","startTime":"09:30","endTime":"10:00","fee":"0","feeCode":"","regCount":"3","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916605","rankId":"1","rankName":"上午","startTime":"10:00","endTime":"10:30","fee":"0","feeCode":"","regCount":"1","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916606","rankId":"1","rankName":"上午","startTime":"10:30","endTime":"11:00","fee":"0","feeCode":"","regCount":"3","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916607","rankId":"1","rankName":"上午","startTime":"11:00","endTime":"11:30","fee":"0","feeCode":"","regCount":"4","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916608","rankId":"1","rankName":"上午","startTime":"11:30","endTime":"12:00","fee":"0","feeCode":"","regCount":"5","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916609","rankId":"2","rankName":"下午","startTime":"14:00","endTime":"14:30","fee":"0","feeCode":"","regCount":"4","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916610","rankId":"2","rankName":"下午","startTime":"14:30","endTime":"15:00","fee":"0","feeCode":"","regCount":"4","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916611","rankId":"2","rankName":"下午","startTime":"15:00","endTime":"15:30","fee":"0","feeCode":"","regCount":"4","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916612","rankId":"2","rankName":"下午","startTime":"15:30","endTime":"16:00","fee":"0","feeCode":"","regCount":"4","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916613","rankId":"2","rankName":"下午","startTime":"16:00","endTime":"16:30","fee":"0","feeCode":"","regCount":"4","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916017","rankId":"2","rankName":"下午","startTime":"16:30","endTime":"17:00","fee":"0","feeCode":"","regCount":"5","noVisits":"0","visitDate":"'. $date.'","timeSlot":null}]},{"doctId":"10446","doctName":"陈秀纯","docTitle":"主治医师","depLocation":"","isksDoc":"1","doctotVisitInfoList":[{"doctId":"10446","regId":"916156","rankId":"1","rankName":"上午","startTime":"08:00","endTime":"08:30","fee":"0","feeCode":"","regCount":"2","noVisits":"1","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916157","rankId":"1","rankName":"上午","startTime":"08:30","endTime":"09:00","fee":"0","feeCode":"","regCount":"2","noVisits":"1","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916158","rankId":"1","rankName":"上午","startTime":"09:00","endTime":"09:30","fee":"0","feeCode":"","regCount":"3","noVisits":"2","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916160","rankId":"1","rankName":"上午","startTime":"10:00","endTime":"10:30","fee":"0","feeCode":"","regCount":"2","noVisits":"3","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916161","rankId":"1","rankName":"上午","startTime":"10:30","endTime":"11:00","fee":"0","feeCode":"","regCount":"2","noVisits":"3","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916162","rankId":"1","rankName":"上午","startTime":"11:00","endTime":"11:30","fee":"0","feeCode":"","regCount":"4","noVisits":"3","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916163","rankId":"1","rankName":"上午","startTime":"11:30","endTime":"12:00","fee":"0","feeCode":"","regCount":"3","noVisits":"3","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916164","rankId":"2","rankName":"下午","startTime":"14:00","endTime":"14:30","fee":"0","feeCode":"","regCount":"3","noVisits":"1","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916165","rankId":"2","rankName":"下午","startTime":"14:30","endTime":"15:00","fee":"0","feeCode":"","regCount":"4","noVisits":"1","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916166","rankId":"2","rankName":"下午","startTime":"15:00","endTime":"15:30","fee":"0","feeCode":"","regCount":"3","noVisits":"1","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916167","rankId":"2","rankName":"下午","startTime":"15:30","endTime":"16:00","fee":"0","feeCode":"","regCount":"4","noVisits":"1","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916168","rankId":"2","rankName":"下午","startTime":"16:00","endTime":"16:30","fee":"0","feeCode":"","regCount":"4","noVisits":"1","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916169","rankId":"2","rankName":"下午","startTime":"16:30","endTime":"17:00","fee":"0","feeCode":"","regCount":"5","noVisits":"1","visitDate":"'. $date.'","timeSlot":null}]}]}'; + $this->transfer_response = '{"status":200,"success":true,"msg":"成功","msgDev":null,"response":[{"doctId":"10488","doctName":"梁燕华","docTitle":"副主任医师","depLocation":"","isksDoc":"1","doctotVisitInfoList":[{"doctId":"10488","regId":"916601","rankId":"1","rankName":"上午","startTime":"08:00","endTime":"08:30","fee":"0","feeCode":"","regCount":"4","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916602","rankId":"1","rankName":"上午","startTime":"08:30","endTime":"09:00","fee":"0","feeCode":"","regCount":"3","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916603","rankId":"1","rankName":"上午","startTime":"09:00","endTime":"09:30","fee":"0","feeCode":"","regCount":"3","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916604","rankId":"1","rankName":"上午","startTime":"09:30","endTime":"10:00","fee":"0","feeCode":"","regCount":"3","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916605","rankId":"1","rankName":"上午","startTime":"10:00","endTime":"10:30","fee":"0","feeCode":"","regCount":"1","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916606","rankId":"1","rankName":"上午","startTime":"10:30","endTime":"11:00","fee":"0","feeCode":"","regCount":"3","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916607","rankId":"1","rankName":"上午","startTime":"11:00","endTime":"11:30","fee":"0","feeCode":"","regCount":"4","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916608","rankId":"1","rankName":"上午","startTime":"11:30","endTime":"12:00","fee":"0","feeCode":"","regCount":"5","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916609","rankId":"2","rankName":"下午","startTime":"14:00","endTime":"14:30","fee":"0","feeCode":"","regCount":"4","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916610","rankId":"2","rankName":"下午","startTime":"14:30","endTime":"15:00","fee":"0","feeCode":"","regCount":"4","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916611","rankId":"2","rankName":"下午","startTime":"15:00","endTime":"15:30","fee":"0","feeCode":"","regCount":"4","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916612","rankId":"2","rankName":"下午","startTime":"15:30","endTime":"16:00","fee":"0","feeCode":"","regCount":"4","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916613","rankId":"2","rankName":"下午","startTime":"16:00","endTime":"16:30","fee":"0","feeCode":"","regCount":"4","noVisits":"0","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10488","regId":"916017","rankId":"2","rankName":"下午","startTime":"16:30","endTime":"17:00","fee":"0","feeCode":"","regCount":"5","noVisits":"0","visitDate":"'. $date.'","timeSlot":null}]},{"doctId":"10446","doctName":"陈秀纯","docTitle":"主治医师","depLocation":"","isksDoc":"1","doctotVisitInfoList":[{"doctId":"10446","regId":"916156","rankId":"1","rankName":"上午","startTime":"08:00","endTime":"08:30","fee":"0","feeCode":"","regCount":"2","noVisits":"1","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916157","rankId":"1","rankName":"上午","startTime":"08:30","endTime":"09:00","fee":"0","feeCode":"","regCount":"2","noVisits":"1","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916158","rankId":"1","rankName":"上午","startTime":"09:00","endTime":"09:30","fee":"0","feeCode":"","regCount":"3","noVisits":"2","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916160","rankId":"1","rankName":"上午","startTime":"10:00","endTime":"10:30","fee":"0","feeCode":"","regCount":"2","noVisits":"3","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916161","rankId":"1","rankName":"上午","startTime":"10:30","endTime":"11:00","fee":"0","feeCode":"","regCount":"2","noVisits":"3","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916162","rankId":"1","rankName":"上午","startTime":"11:00","endTime":"11:30","fee":"0","feeCode":"","regCount":"4","noVisits":"3","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916163","rankId":"1","rankName":"上午","startTime":"11:30","endTime":"12:00","fee":"0","feeCode":"","regCount":"3","noVisits":"3","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916164","rankId":"2","rankName":"下午","startTime":"14:00","endTime":"14:30","fee":"0","feeCode":"","regCount":"3","noVisits":"1","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916165","rankId":"2","rankName":"下午","startTime":"14:30","endTime":"15:00","fee":"0","feeCode":"","regCount":"4","noVisits":"1","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916166","rankId":"2","rankName":"下午","startTime":"15:00","endTime":"15:30","fee":"0","feeCode":"","regCount":"3","noVisits":"1","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916167","rankId":"2","rankName":"下午","startTime":"15:30","endTime":"16:00","fee":"0","feeCode":"","regCount":"4","noVisits":"1","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916168","rankId":"2","rankName":"下午","startTime":"16:00","endTime":"16:30","fee":"0","feeCode":"","regCount":"4","noVisits":"1","visitDate":"'. $date.'","timeSlot":null},{"doctId":"10446","regId":"916169","rankId":"2","rankName":"下午","startTime":"16:30","endTime":"17:00","fee":"0.01","feeCode":"","regCount":"5","noVisits":"1","visitDate":"'. $date.'","timeSlot":null}]}]}'; return $this; } @@ -184,19 +193,41 @@ class ClientMockHttpTransfer extends HttpTransferAbstract return $this; } + /** + * mockGetPendingLists + * @param array $params + * @return $this + */ private function mockGetPendingLists(array $params) { $date_1 = date('Ymd'); $date_2 = date('Y-m-d'); - $this->transfer_response = '{"status":200,"success":true,"msg":"成功","msgDev":null,"response":[{"idCardNo":"230403199903245493","visitType":"门诊","visitDate":"'.$date_1.'","strVisitDate":"'.$date_2.'","outpatientDiagnosis":"健康查体,健康查体,健康查体,健康查体,健康查体,健康查体,健康查体","treatmentDepartment":"132","departmentName":"急诊内科","regId":"0","prescriptionId":"1-17452209","prescriptionAmount":"1.05","singleAmount":"1.05","doctorName":"管理员","remarks":"","isexpense":"1","strExpense":"自费","nrescriptionNumber":"1-17452209","takeMedicine":"","visitNumber":"3886415"}]}'; + $this->transfer_response = '{"status":200,"success":true,"msg":"成功","msgDev":null,"response":[{"idCardNo":"230403199903245493","visitType":"门诊","visitDate":"'.$date_1.'","strVisitDate":"'.$date_2.'","outpatientDiagnosis":"健康查体,健康查体,健康查体,健康查体,健康查体,健康查体,健康查体","treatmentDepartment":"132","departmentName":"急诊内科","regId":"0","prescriptionId":"1-17488657","prescriptionAmount":"1","singleAmount":"1","doctorId":"10365","doctorName":"管理员","remarks":"","isexpense":"1","strExpense":"自费","nrescriptionNumber":"1-17488657","takeMedicine":null,"visitNumber":"3896308"}]}'; return $this; } + /** + * mockGetPendingDetails + * @param array $params + * @return $this + */ private function mockGetPendingDetails(array $params) { $date = date('Y-m-d'); - $this->transfer_response = '{"status":200,"success":true,"msg":"成功","msgDev":null,"response":[{"feeDate":"'.$date.'","itemNo":"11255860","projectNumber":"1550","entryName":"0.9%氯化钠注射液G","unitPrice":"1.05","quantity":"1","money":"1.05","remarks":"","projectSpecifications":"250ML:2.25G/瓶","prescriptionNumber":"1-17452209","company":"瓶","prescriptionType":"西药","treatmentDepartment":"132","departmentName":"急诊内科","doctorNumber":"10365","doctorName":"管理员"}]}'; + $this->transfer_response = '{"status":200,"success":true,"msg":"成功","msgDev":null,"response":[{"feeDate":"'.$date.'","itemNo":"11283271","projectNumber":"1547","entryName":"0.9%氯化钠注射液G","unitPrice":"1","quantity":"1","money":"1","remarks":null,"projectSpecifications":"100ML:0.9G/瓶","prescriptionNumber":"1-17488657","company":"瓶","prescriptionType":"西药","treatmentDepartment":"132","departmentName":"急诊内科","doctorNumber":"10365","doctorName":"管理员","ysybdm":"D440402003702","gjmlbm":"XB05XAL211B002030902763"}]}'; + + return $this; + } + + /** + * mockConfirmPayment + * @param array $params + * @return $this + */ + private function mockConfirmPayment(array $params) + { + $this->transfer_response = '{"status":200,"success":true,"msg":"自助缴费确认成功","msgDev":null,"response":{"remarks":"","treaId":"6497702","hosTranNo":"ZZ00000049","phyAddress":"门诊西药房","listRecipeRecResults":[{"itemNo":"1547","projectNumber":"1547","entryName":"0.9%氯化钠注射液G","unitPrice":"1","quantity":"1","money":"1","remarks":"","projectSpecifications":"100ML:0.9G/瓶","prescriptionNumber":"1-17488657"}]}}'; return $this; } @@ -208,7 +239,7 @@ class ClientMockHttpTransfer extends HttpTransferAbstract */ private function mockGetPaidLists(array $params): self { - $this->transfer_response = '0D00589351叶子璐自费2012-08-2111119-0001251.59251.59251.5900D00589351叶子璐自费2012-08-2111119-0001251.59251.59251.5900'; + $this->transfer_response = '{"RESULTCODE":"0","ERRORMSG":"","RECORD":[{"PATIENTID":"D00589351","NAME":"叶子璐","SEX":"女","CHARGETYPE":"自费","VISITDATE":"2012-08-21","RCPTID":"1111","RCPTNO":"90001","COSTS":["250.59","250.59"],"GRZF":"250.59","JJZF":"0","ISPRINTED":"0"},{"PATIENTID":"D00589351","NAME":"叶子璐","SEX":"女","CHARGETYPE":"自费","VISITDATE":"2012-08-21","RCPTID":"1111","RCPTNO":"90002","COSTS":["260.59","260.59"],"GRZF":"260.59","JJZF":"0","ISPRINTED":"0"}]}'; return $this; } @@ -220,7 +251,7 @@ class ClientMockHttpTransfer extends HttpTransferAbstract */ private function mockGetPaidDetails(array $params): self { - $this->transfer_response = '02021-07-1715:22:313324497000098629965.965.9智能药房急诊科梁锦胜1.慢性喘息性支气管炎急性发作8182021-07-1715:13:32西药费0.9%氯化钠注射液100ML12.422.42100ML11QDX-B05XA-L211-B00286902763001266甲类梁锦胜2021-07-1715:14:45西药费复方甘草酸苷片20mg115.5015.5010011QDX-B05XA-L211-B00386902763001267甲类梁锦胜2021-07-1715:15:02西药费头孢克肟胶囊250mg118.3018.3010011QDX-B05XA-L211-B00486902763001268甲类梁锦胜2021-07-1715:16:10西药费氯氮平片25mg122.0022.0010011QDX-B05XA-L211-B00586902763001269甲类梁锦胜2021-07-1715:17:25西药费安定片5mg113.4013.4010011QDX-B05XA-L211-B00686902763001270甲类梁锦胜2021-07-1715:18:42西药费阿莫西林胶囊500mg18.008.0010011QDX-B05XA-L211-B00786902763001271甲类梁锦胜2021-07-1715:19:10西药费双氯芬酸钠胶囊50mg116.8016.8010011QDX-B05XA-L211-B00886902763001272甲类梁锦胜2021-07-1715:19:45西药费利血平片25mg112.3012.3010011QDX-B05XA-L211-B00986902763001273甲类梁锦胜2021-07-1715:20:10西药费依普利酮片25mg130.0030.0010011QDX-B05XA-L211-B01086902763001274甲类梁锦胜'; + $this->transfer_response = '{"RESULTCODE":"0","ERRORMSG":"","JSRQ":"2021-07-1715:22:31","TREAID":"3324497","HOSTRANNO":"0000986299","COSTS":"65.9","GRZF":"65.9","JJZF":"","PHYADDRESS":"智能药房","DEPNAME":"急诊科","DOCTNAME":"梁锦胜","CYZD":"1.慢性喘息性支气管炎急性发作","CZGH":"818","RECORD":{"ITEMREC":[{"VISITDATE":"2021-07-1715:13:32","CLASSNAME":"西药费","ITEMNAME":"0.9%氯化钠注射液","ITEMSPEC":"100ML","UNITS":"瓶","AMOUNT":"1","PRICE":"2.42","COSTS":"2.42","ZTMC":"","YCJL":"100","JLDW":"ML","YYTS":"1","MRCS":"1","PCMC":"QD","YPBM":"X-B05XA-L211-B002","YJBM":"86902763001266","YBFL":"甲类","YGXM":"梁锦胜"},{"VISITDATE":"2021-07-1715:14:45","CLASSNAME":"西药费","ITEMNAME":"复方甘草酸苷片","ITEMSPEC":"20mg","UNITS":"瓶","AMOUNT":"1","PRICE":"15.50","COSTS":"15.50","ZTMC":"","YCJL":"100","JLDW":"片","YYTS":"1","MRCS":"1","PCMC":"QD","YPBM":"X-B05XA-L211-B003","YJBM":"86902763001267","YBFL":"甲类","YGXM":"梁锦胜"},{"VISITDATE":"2021-07-1715:15:02","CLASSNAME":"西药费","ITEMNAME":"头孢克肟胶囊","ITEMSPEC":"250mg","UNITS":"盒","AMOUNT":"1","PRICE":"18.30","COSTS":"18.30","ZTMC":"","YCJL":"100","JLDW":"粒","YYTS":"1","MRCS":"1","PCMC":"QD","YPBM":"X-B05XA-L211-B004","YJBM":"86902763001268","YBFL":"甲类","YGXM":"梁锦胜"},{"VISITDATE":"2021-07-1715:16:10","CLASSNAME":"西药费","ITEMNAME":"氯氮平片","ITEMSPEC":"25mg","UNITS":"瓶","AMOUNT":"1","PRICE":"22.00","COSTS":"22.00","ZTMC":"","YCJL":"100","JLDW":"片","YYTS":"1","MRCS":"1","PCMC":"QD","YPBM":"X-B05XA-L211-B005","YJBM":"86902763001269","YBFL":"甲类","YGXM":"梁锦胜"},{"VISITDATE":"2021-07-1715:17:25","CLASSNAME":"西药费","ITEMNAME":"安定片","ITEMSPEC":"5mg","UNITS":"瓶","AMOUNT":"1","PRICE":"13.40","COSTS":"13.40","ZTMC":"","YCJL":"100","JLDW":"片","YYTS":"1","MRCS":"1","PCMC":"QD","YPBM":"X-B05XA-L211-B006","YJBM":"86902763001270","YBFL":"甲类","YGXM":"梁锦胜"},{"VISITDATE":"2021-07-1715:18:42","CLASSNAME":"西药费","ITEMNAME":"阿莫西林胶囊","ITEMSPEC":"500mg","UNITS":"瓶","AMOUNT":"1","PRICE":"8.00","COSTS":"8.00","ZTMC":"","YCJL":"100","JLDW":"粒","YYTS":"1","MRCS":"1","PCMC":"QD","YPBM":"X-B05XA-L211-B007","YJBM":"86902763001271","YBFL":"甲类","YGXM":"梁锦胜"},{"VISITDATE":"2021-07-1715:19:10","CLASSNAME":"西药费","ITEMNAME":"双氯芬酸钠胶囊","ITEMSPEC":"50mg","UNITS":"瓶","AMOUNT":"1","PRICE":"16.80","COSTS":"16.80","ZTMC":"","YCJL":"100","JLDW":"粒","YYTS":"1","MRCS":"1","PCMC":"QD","YPBM":"X-B05XA-L211-B008","YJBM":"86902763001272","YBFL":"甲类","YGXM":"梁锦胜"},{"VISITDATE":"2021-07-1715:19:45","CLASSNAME":"西药费","ITEMNAME":"利血平片","ITEMSPEC":"25mg","UNITS":"瓶","AMOUNT":"1","PRICE":"12.30","COSTS":"12.30","ZTMC":"","YCJL":"100","JLDW":"片","YYTS":"1","MRCS":"1","PCMC":"QD","YPBM":"X-B05XA-L211-B009","YJBM":"86902763001273","YBFL":"甲类","YGXM":"梁锦胜"},{"VISITDATE":"2021-07-1715:20:10","CLASSNAME":"西药费","ITEMNAME":"依普利酮片","ITEMSPEC":"25mg","UNITS":"瓶","AMOUNT":"1","PRICE":"30.00","COSTS":"30.00","ZTMC":"","YCJL":"100","JLDW":"片","YYTS":"1","MRCS":"1","PCMC":"QD","YPBM":"X-B05XA-L211-B010","YJBM":"86902763001274","YBFL":"甲类","YGXM":"梁锦胜"}]}}'; return $this; } diff --git a/composer.json b/composer.json index 4523fb3..19e3cad 100644 --- a/composer.json +++ b/composer.json @@ -12,6 +12,7 @@ "ext-redis": "*", "ext-simplexml": "*", "ext-soap": "*", + "ext-http": "*", "laravel/framework": "^11.31", "laravel/sanctum": "^4.0", "laravel/tinker": "^2.9", diff --git a/routes/api.php b/routes/api.php index c925b34..073a01e 100644 --- a/routes/api.php +++ b/routes/api.php @@ -11,6 +11,7 @@ use App\Http\Controllers\Registration\RecordController as RegistrationRecordCont use App\Http\Controllers\Registration\RegisterController; use App\Http\Controllers\Registration\ScheduleController; use App\Http\Controllers\Dictionary\ItemController; +use App\Http\Controllers\Test\TestController; use Illuminate\Support\Facades\Route; Route::middleware(['apiLog'])->group(function() { @@ -18,6 +19,9 @@ Route::middleware(['apiLog'])->group(function() { Route::post('login', [AuthController::class, 'login']); Route::any('unauthorized', [AuthController::class, 'unauthorized'])->name('login'); + // 测试接口 + Route::get('test', [TestController::class, 'test']); + // 支付回调 Route::any('notify', [NotifyController::class, 'notify']); @@ -30,6 +34,9 @@ Route::middleware(['apiLog'])->group(function() { Route::post('/bind', [PatientController::class, 'bind']); Route::post('/{patient_id}/default', [PatientController::class, 'setDefault']); Route::delete('/{patient_id}/delete', [PatientController::class, 'delete']); + + // 获取手机号码 + Route::get('/phone', [PatientController::class, 'getPhoneNumber']); }); // 挂号模块