Browse Source

支付卡片消息

huangwenjie 5 years ago
parent
commit
3d91934184

+ 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");
		}