病历及处方审核通知接口
接口描述
在处方审核环节,审核完处方后,可批量通知脉景审核结果以及审方医生、药师签名信息
接入点: 由脉景提供接口地址供合作方调用
请求方法: post
请求格式: json
请求数据
R -- 必填 O -- 选填
名称 | 类型 | 是否必填 | 描述 |
---|---|---|---|
partner_type | string | R | 由脉景分配的第三方名称 + 业务类型 |
处方信息头
名称 | 类型 | 是否必填 | 描述 |
---|---|---|---|
prescription_info | array | R | 处方信息列表或数组 |
处方信息
名称 | 类型 | 是否必填 | 描述 |
---|---|---|---|
prescription_id | String | R | 处方ID 主键 |
medical_recode_id | String | R | 病历ID |
check_result | String | O | 处方审核结果 |
expert_doctor_check_result | String | R | 上级专家审核结果 |
expert_doctor_id | String | R | 上级专家ID |
expert_doctor_name | String | R | 上级专家姓名 |
expert_doctor_time | String | R | 上级专家审核时间 |
expert_doctor_signature | String | O | 上级专家签名图片 |
expert_doctor_reason | String | R | 上级专家不通过原因 |
check_pharmacist_check_result | String | R | 审方药师审核结果 |
check_pharmacist_id | String | R | 审方药师ID |
check_pharmacist_name | String | R | 审方药师姓名 |
check_pharmacist_time | String | R | 审方药师审核时间 |
check_pharmacist_signature | String | O | 审方药师签名图片 |
check_pharmacist_reason | String | R | 审方药师不通过原因 |
prescription_pdf_url | String | O | 处方PDF |
prescription_is_modified | String | R | 处方是否修改 |
请求参数示例
{
"partner_type":"PA_medical_record_notification",
"prescription_info":[
{
"medical_record_id":1679037,
"prescription_id":1690527,
"check_result": true,
"expert_doctor_check_result":true,
"expert_doctor_id":"123123",
"expert_doctor_name":"jason11",
"expert_doctor_time":"2021-07-13 02:38:53.728173+00:00",
"expert_doctor_signature":"https://www.pythonheidong.com/blog/article/319529/3575ae4f5423ec378553/",
"expert_doctor_reason": null,
"check_pharmacist_check_result":true,
"check_pharmacist_id":"1231239",
"check_pharmacist_name":"tank",
"check_pharmacist_time":"2021-07-13 02:38:53.728173+00:00",
"check_pharmacist_signature":"https://www.pythonheidong.com/blog/article/319529/3575ae4f5423ec378553/",
"check_pharmacist_reason": null,
"prescription_pdf_url":"https://www.pythonheidong.com/blog/article/319529/3575ae4f5423ec378553/",
"prescription_is_modified":true
},
{
"medical_record_id":1679037,
"prescription_id":1690528,
"check_result": true,
"expert_doctor_check_result":true,
"expert_doctor_id":"123123",
"expert_doctor_name":"jason11",
"expert_doctor_time":"2021-07-13 02:38:53.728173+00:00",
"expert_doctor_signature":"https://www.pythonheidong.com/blog/article/319529/3575ae4f5423ec378553/",
"expert_doctor_reason": null,
"check_pharmacist_check_result":true,
"check_pharmacist_id":"1231239",
"check_pharmacist_name":"tank",
"check_pharmacist_time":"2021-07-13 02:38:53.728173+00:00",
"check_pharmacist_signature":"https://www.pythonheidong.com/blog/article/319529/3575ae4f5423ec378553/",
"check_pharmacist_reason": null,
"prescription_pdf_url":"https://www.pythonheidong.com/blog/article/319529/3575ae4f5423ec378553/",
"prescription_is_modified":true
}
]
}
返回参数格式: JSON
示例:
{
"code": "200",
"message":"成功"
}