diff --git a/app/Controller/CallBackController.php b/app/Controller/CallBackController.php index 8a879bd..892a6d8 100644 --- a/app/Controller/CallBackController.php +++ b/app/Controller/CallBackController.php @@ -1335,6 +1335,8 @@ class CallBackController extends AbstractController return $this->detectionResultFailReturn("非法请求"); } + Log::getInstance("CallBackController-DetectionResultCallBack")->info("处理检测所结果"); + try { // 检测参数 if (!isset($request_params['appId'])){ @@ -1373,8 +1375,6 @@ class CallBackController extends AbstractController return $this->detectionResultFailReturn("文件错误"); } - Log::getInstance("CallBackController-DetectionResultCallBack")->info(json_encode($request_params, JSON_UNESCAPED_UNICODE)); - // 获取检测订单数据 $params = array(); $params['detection_no'] = $request_params['orderCode']; diff --git a/app/Services/PatientOrderService.php b/app/Services/PatientOrderService.php index 8849a8c..b1488a3 100644 --- a/app/Services/PatientOrderService.php +++ b/app/Services/PatientOrderService.php @@ -1752,6 +1752,7 @@ class PatientOrderService extends BaseService } $order_detection['detection_project_name'] = $detection_project['detection_project_name']; + $order_detection['detection_result_pdf'] = addAliyunOssWebsite($order_detection['detection_result_pdf']); return success($order_detection); }