修改im消息推送问题
This commit is contained in:
+23
-28
@@ -665,42 +665,37 @@ class ImService extends BaseService
|
||||
|
||||
/**
|
||||
* 糖组检测报告
|
||||
* @param array|object $order_detection 检测订单数据
|
||||
* @param string $doctor_user_id 医生user_id
|
||||
* @param string $patient_user_id 患者user_id
|
||||
* @param string $disease_class_names 疾病数据
|
||||
* @param string $detection_project_name
|
||||
* @param string|int $inquiry_type
|
||||
* @param array $data
|
||||
* @return void
|
||||
*/
|
||||
public function detectionTestReport(array|object $order_detection,string $doctor_user_id, string $patient_user_id,string $disease_class_names,string $detection_project_name,string|int $inquiry_type): void
|
||||
public function detectionTestReport(array $data): void
|
||||
{
|
||||
try {
|
||||
// 发送消息
|
||||
$cloud_custom_data = array();
|
||||
$cloud_custom_data['order_inquiry_id'] = (string)$order_detection['order_inquiry_id'];
|
||||
$cloud_custom_data['order_inquiry_id'] = (string)$data['order_inquiry_id'];
|
||||
$cloud_custom_data['is_system'] = 1;
|
||||
$cloud_custom_data['inquiry_type'] = $inquiry_type; // 订单类型(1:专家问诊 2:快速问诊 3:公益问诊 4:问诊购药 5:检测)
|
||||
$cloud_custom_data['inquiry_type'] = $data['inquiry_type']; // 订单类型(1:专家问诊 2:快速问诊 3:公益问诊 4:问诊购药 5:检测)
|
||||
$cloud_custom_data['message_rounds'] = 0;
|
||||
$cloud_custom_data['order_no'] = $order_detection['detection_no'];
|
||||
$cloud_custom_data['patient_family_data']['patient_name'] = $order_detection['patient_name'];
|
||||
$cloud_custom_data['patient_family_data']['patient_sex'] = $order_detection['patient_sex'];
|
||||
$cloud_custom_data['patient_family_data']['patient_age'] = $order_detection['patient_age'];
|
||||
$cloud_custom_data['order_no'] = $data['detection_no'];
|
||||
$cloud_custom_data['patient_family_data']['patient_name'] = $data['patient_name'];
|
||||
$cloud_custom_data['patient_family_data']['patient_sex'] = $data['patient_sex'];
|
||||
$cloud_custom_data['patient_family_data']['patient_age'] = $data['patient_age'];
|
||||
|
||||
// 消息内容
|
||||
$message_content_data = array();
|
||||
$message_content_data['message_type'] = 10;
|
||||
$message_content_data['title'] = $detection_project_name;
|
||||
$message_content_data['title'] = $data['detection_project_name'];
|
||||
$message_content_data['desc'] = "";
|
||||
$message_content_data['data']['order_no'] = (string)$order_detection['detection_no'];
|
||||
$message_content_data['data']['disease_class_names'] = $disease_class_names;
|
||||
$message_content_data['data']['detection_link'] = addAliyunOssWebsite($order_detection['detection_result_pdf']);// 检测结果链接(oss)
|
||||
$message_content_data['data']['message_path'] = "/pages/checkOrderDetail/checkOrderDetail?order_detection_id=" . $order_detection['detection_no']; // 跳转地址(小程序内页)
|
||||
$message_content_data['data']['order_no'] = (string)$data['detection_no'];
|
||||
$message_content_data['data']['disease_class_names'] = $data['disease_class_names'];
|
||||
$message_content_data['data']['detection_link'] = addAliyunOssWebsite($data['detection_result_pdf']);// 检测结果链接(oss)
|
||||
$message_content_data['data']['message_path'] = "/pages/checkOrderDetail/checkOrderDetail?order_detection_id=" . $data['detection_no']; // 跳转地址(小程序内页)
|
||||
$message_content = [
|
||||
'Data' => json_encode($message_content_data, JSON_UNESCAPED_UNICODE),
|
||||
];
|
||||
|
||||
$this->sendMessage($patient_user_id,$doctor_user_id, $message_content, "TIMCustomElem", $cloud_custom_data);
|
||||
$this->sendMessage($data['patient_user_id'],$data['doctor_user_id'], $message_content, "TIMCustomElem", $cloud_custom_data);
|
||||
|
||||
} catch (\Throwable $e) {
|
||||
throw new BusinessException($e->getMessage());
|
||||
@@ -717,25 +712,25 @@ class ImService extends BaseService
|
||||
* @param string|int $inquiry_type
|
||||
* @return void
|
||||
*/
|
||||
public function detectionTestReportStr(array|object $order_detection,string $doctor_name,string $detection_project_name,string $doctor_user_id, string $patient_user_id,string|int $inquiry_type): void
|
||||
public function detectionTestReportStr(array $data): void
|
||||
{
|
||||
try {
|
||||
// 消息内容
|
||||
$cloud_custom_data = array();
|
||||
$cloud_custom_data['order_inquiry_id'] = (string)$order_detection['order_inquiry_id'];
|
||||
$cloud_custom_data['order_inquiry_id'] = (string)$data['order_inquiry_id'];
|
||||
$cloud_custom_data['is_system'] = 1;
|
||||
$cloud_custom_data['inquiry_type'] = $inquiry_type; // 订单类型(1:专家问诊 2:快速问诊 3:公益问诊 4:问诊购药 5:检测)
|
||||
$cloud_custom_data['inquiry_type'] = $data['inquiry_type']; // 订单类型(1:专家问诊 2:快速问诊 3:公益问诊 4:问诊购药 5:检测)
|
||||
$cloud_custom_data['message_rounds'] = 0;
|
||||
$cloud_custom_data['order_no'] = $order_detection['detection_no'];
|
||||
$cloud_custom_data['patient_family_data']['patient_name'] = $order_detection['patient_name'];
|
||||
$cloud_custom_data['patient_family_data']['patient_sex'] = $order_detection['patient_sex'];
|
||||
$cloud_custom_data['patient_family_data']['patient_age'] = $order_detection['patient_age'];
|
||||
$cloud_custom_data['order_no'] = $data['detection_no'];
|
||||
$cloud_custom_data['patient_family_data']['patient_name'] = $data['patient_name'];
|
||||
$cloud_custom_data['patient_family_data']['patient_sex'] = $data['patient_sex'];
|
||||
$cloud_custom_data['patient_family_data']['patient_age'] = $data['patient_age'];
|
||||
|
||||
$message_content = [
|
||||
'Text' => $doctor_name . "医生您好,您给我开具的【" . $detection_project_name . "】检测项目报告已经出来啦,请您抽空查看报告并做一下解读,谢谢。",
|
||||
'Text' => $data['doctor_name'] . "医生您好,您给我开具的【" . $data['detection_project_name'] . "】检测项目报告已经出来啦,请您抽空查看报告并做一下解读,谢谢。",
|
||||
];
|
||||
|
||||
$this->sendMessage($patient_user_id,$doctor_user_id, $message_content, "TIMTextElem", $cloud_custom_data);
|
||||
$this->sendMessage($data['patient_user_id'],$data['doctor_user_id'], $message_content, "TIMTextElem", $cloud_custom_data);
|
||||
|
||||
} catch (\Throwable $e) {
|
||||
throw new BusinessException($e->getMessage());
|
||||
|
||||
Reference in New Issue
Block a user