病例接口,新增检测链接

This commit is contained in:
wucongxing 2023-08-23 17:24:29 +08:00
parent fac54d3287
commit a003b1083a
2 changed files with 1 additions and 2 deletions

View File

@ -103,7 +103,6 @@ class DetectionService extends BaseService
$city_id = $this->request->input("city_id"); $city_id = $this->request->input("city_id");
$county_id = $this->request->input("county_id"); $county_id = $this->request->input("county_id");
// 获取合作公司数据 // 获取合作公司数据
$params = array(); $params = array();
$params['company_id'] = $company_id; $params['company_id'] = $company_id;

View File

@ -494,7 +494,7 @@ class InquiryService extends BaseService
if (!empty($detection_project)){ if (!empty($detection_project)){
$order_inquiry_case['detection_project']['detection_project_name'] = $detection_project['detection_project_name']; // 检测项目名称 $order_inquiry_case['detection_project']['detection_project_name'] = $detection_project['detection_project_name']; // 检测项目名称
$order_inquiry_case['detection_project']['detection_time'] = $order_detection['detection_time']; // 检测时间 $order_inquiry_case['detection_project']['detection_time'] = $order_detection['detection_time']; // 检测时间
$order_inquiry_case['detection_project']['detection_link'] = ""; // 检测结果链接 $order_inquiry_case['detection_project']['detection_link'] = addAliyunOssWebsite($detection_project['detection_result_pdf']); // 检测结果链接
} }
} }
} }