|
@ -445,11 +445,10 @@ public class YkyyEntranceService {
|
|
|
}
|
|
|
|
|
|
List<WlyyOutpatientVO> wlyyOutpatientVOS = new ArrayList<>();
|
|
|
WlyyOutpatientVO wlyyOutpatientVO;
|
|
|
for (int i = 0; i < jsonArray.size(); i++) {
|
|
|
JSONObject jsonObjectMgsInfo = jsonArray.getJSONObject(i);
|
|
|
if (null != jsonObjectMgsInfo) {
|
|
|
wlyyOutpatientVO = new WlyyOutpatientVO();
|
|
|
WlyyOutpatientVO wlyyOutpatientVO = new WlyyOutpatientVO();
|
|
|
wlyyOutpatientVO.setHospital(orgCode);
|
|
|
wlyyOutpatientVO.setHospitalName(orgName);
|
|
|
wlyyOutpatientVO.setWinNo("6");
|
|
@ -484,7 +483,6 @@ public class YkyyEntranceService {
|
|
|
String conDate = null == jsonObjectMgsInfo.get("KSSJ") ? "" : jsonObjectMgsInfo.get("KSSJ") + "";
|
|
|
wlyyOutpatientVO.setAdmDate(DateUtil.strToDate(admDate, DateUtil.YYYY_MM_DD_HH_MM_SS_));
|
|
|
wlyyOutpatientVO.setConDate(DateUtil.strToDate(conDate, DateUtil.YYYY_MM_DD_HH_MM_SS_));
|
|
|
wlyyOutpatientVOS.add(wlyyOutpatientVO);
|
|
|
List<WlyyInspectionVO> inspectionVOList = new ArrayList<>();
|
|
|
JSONArray array = findV_ZKSG_JCCX(PAT_NO,wlyyOutpatientVO.getAdmNo(),demoFlag);
|
|
|
for (int j=0;j<array.size();j++){
|
|
@ -504,7 +502,7 @@ public class YkyyEntranceService {
|
|
|
inspectionVOList.add(wlyyInspectionVO);
|
|
|
}
|
|
|
wlyyOutpatientVO.setInspectionVOS(inspectionVOList);
|
|
|
|
|
|
wlyyOutpatientVOS.add(wlyyOutpatientVO);
|
|
|
}
|
|
|
}
|
|
|
return wlyyOutpatientVOS;
|
|
@ -532,7 +530,6 @@ public class YkyyEntranceService {
|
|
|
return new JSONArray();
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 查找眼科his 审方失败
|
|
|
* @throws Exception
|