This commit is contained in:
wucongxing 2023-04-17 19:27:19 +08:00
parent d249429b2b
commit 43390667e4
2 changed files with 11 additions and 7 deletions

View File

@ -59,7 +59,7 @@ class MessagePush extends BaseService
}
/**
* 医生未接诊
* 患者-医生未接诊
* 快速/购药的服务5分钟未接诊
* 公益/专家24小时未接诊
* 站内、订阅
@ -144,7 +144,7 @@ class MessagePush extends BaseService
}
/**
* 通知医生患者回复
* 医生-通知患者回复
* 订阅
* @param string $content 回复内容
* @return bool
@ -183,7 +183,7 @@ class MessagePush extends BaseService
}
/**
* 通知患者医生已接诊
* 患者-通知患者医生已接诊
* 站内、订阅、短信
* @return bool
* @throws ContainerExceptionInterface
@ -373,7 +373,7 @@ class MessagePush extends BaseService
}
/**
* 患者处方被药师审核通过
* 患者-处方被药师审核通过
* 站内、短信
* @return bool
* @throws ContainerExceptionInterface
@ -550,7 +550,7 @@ class MessagePush extends BaseService
}
/**
* 问诊服务退款成功
* 患者-问诊服务退款成功
* 站内、订阅、短信
* @param int $type 类型 1:已支付未接诊 2:已支付未成功分配医生 3:已支付未接诊患者取消订单
* @return bool
@ -672,7 +672,7 @@ class MessagePush extends BaseService
}
/**
* 药品订单退款成功
* 患者-药品订单退款成功
* 站内、订阅、短信
* @param string $order_product_id
* @return bool
@ -922,7 +922,7 @@ class MessagePush extends BaseService
}
/**
* 医生有新问诊
* 医生-医生有新问诊
* 站内、订阅失败发送短信
* @return bool
* @throws ContainerExceptionInterface
@ -1244,6 +1244,7 @@ class MessagePush extends BaseService
/**
* 医生开具的处方审核未通过
* 订阅失败发送短信
* @param string $order_prescription_id
* @return bool
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface

View File

@ -970,12 +970,15 @@ class UserDoctorService extends BaseService
/**
* 修改处方
* 暂时去除修改处方
* @return array
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
public function putPrescription(): array
{
return fail(HttpEnumCode::HTTP_ERROR, "操作失败");
$user_info = $this->request->getAttribute("userInfo") ?? [];
$order_prescription_id = $this->request->input('order_prescription_id');