소스 검색

支付卡片消息

huangwenjie 5 년 전
부모
커밋
3d91934184
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      business/im-service/src/main/java/com/yihu/jw/im/service/ImService.java

+ 4 - 0
business/im-service/src/main/java/com/yihu/jw/im/service/ImService.java

@ -1659,6 +1659,10 @@ public class ImService {
		
		//获取药品
		List<WlyyPrescriptionInfoVO> infoVOs = wlyyPrescriptionVO.getInfoVOs();
		JSONObject object = new JSONObject();
		object.put("info",infoVOs);
		object.put("outpatientid",wlyyPrescriptionVO.getOutpatientId());
		object.put("prescriptionid",wlyyPrescriptionVO.getId());
		if(!infoVOs.isEmpty()){
			String response = imUtil.sendImMsg(wlyyPrescriptionVO.getDoctor(), wlyyPrescriptionVO.getDoctorName(), wlyyPrescriptionVO.getPatientCode()+"_"+wlyyPrescriptionVO.getOutpatientId()+"_9", "27", JSON.toJSONString(infoVOs),"1");
		}