|
@ -309,6 +309,7 @@ public class EntranceService {
|
|
|
|
|
|
//剔除非激活的卡
|
|
|
JSONArray res = ConvertUtil.convertListEnvelopByString(resp);
|
|
|
logger.info("res==="+res.toString());
|
|
|
if (res != null && res.size() > 0) {
|
|
|
Iterator it = res.iterator();
|
|
|
if (it.hasNext()) {
|
|
@ -789,10 +790,10 @@ public class EntranceService {
|
|
|
* @return
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
public List<WlyyOutpatientVO> BS10016(String PAT_NO, String conNo, String startTime, String endTime, boolean demoFlag ,String ksdm) throws Exception {
|
|
|
public List<WlyyOutpatientVO> BS10016(String idcard, String conNo, String startTime, String endTime, boolean demoFlag ,String ksdm) throws Exception {
|
|
|
System.out.println("ksdm="+ksdm);
|
|
|
String fid = "BS10016";
|
|
|
logger.info("EntranceService " + fid + " PAT_NO :" + PAT_NO + " conNo:" + conNo + " startTime:" + startTime + " endTime:" + endTime);
|
|
|
logger.info("EntranceService " + fid + " PAT_NO :" + idcard + " conNo:" + conNo + " startTime:" + startTime + " endTime:" + endTime);
|
|
|
|
|
|
String resp = "";
|
|
|
String orgCode = "350211A1002";
|
|
@ -807,9 +808,9 @@ public class EntranceService {
|
|
|
sbs.append("<MessageHeader><Fid>" + fid + "</Fid><MsgDate>" + DateUtil.dateToStr(new Date(), DateUtil.YYYY_MM_DD_HH_MM_SS) + "</MsgDate><SourceSysCode>" + sourceSysCode + "</SourceSysCode><TargetSysCode>" + targetSysCode + "</TargetSysCode></MessageHeader>");
|
|
|
//查询信息拼接
|
|
|
sbs.append("<MsgInfo><onceFlag>1</onceFlag><startNum>1</startNum><endNum>50000</endNum><Msg>");
|
|
|
if (StringUtils.isNotBlank(PAT_NO)) {
|
|
|
if (StringUtils.isNotBlank(idcard)) {
|
|
|
/*sbs.append("<query compy=\"=\" item=\"PAT_NO\" splice=\"and\" value=\"'" + PAT_NO + "'\"/>");*/
|
|
|
sbs.append(" and Pat_Admit_ID = '"+PAT_NO+"' ");
|
|
|
sbs.append(" and Id_Num = '"+idcard+"' ");
|
|
|
}
|
|
|
if (StringUtils.isNotBlank(startTime)) {
|
|
|
/*sbs.append("<query compy=\">=\" item=\"CON_DATE\" splice=\"and\" value=\"'" + startTime + "'\"/>");*/
|
|
@ -833,7 +834,8 @@ public class EntranceService {
|
|
|
logger.info("resp===" + resp);
|
|
|
resp = MqSdkUtil.xml2jsonArrayRootRow(resp);
|
|
|
}
|
|
|
JSONArray jsonArray = ConvertUtil.convertListEnvelopInRow(resp);
|
|
|
logger.info("resp===="+resp);
|
|
|
JSONArray jsonArray = ConvertUtil.convertListEnvelopInBodyAndRow(resp);
|
|
|
if (null == jsonArray) {
|
|
|
return null; }
|
|
|
List<WlyyOutpatientVO> wlyyOutpatientVOS = new ArrayList<>();
|
|
@ -847,21 +849,12 @@ public class EntranceService {
|
|
|
wlyyOutpatientVO.setHospitalName(orgName);
|
|
|
wlyyOutpatientVO.setWinNo("6");
|
|
|
wlyyOutpatientVO.setAdmNo(null == jsonObjectMgsInfo.get("Admit_Num") ? "" : jsonObjectMgsInfo.get("Admit_Num") + "");
|
|
|
wlyyOutpatientVO.setRegisterNo(null == jsonObjectMgsInfo.get("REGISTER_SN") ? "" : jsonObjectMgsInfo.get("REGISTER_SN") + "");
|
|
|
wlyyOutpatientVO.setDept(null == jsonObjectMgsInfo.get("ADM_SPEC") ? "" : jsonObjectMgsInfo.get("ADM_SPEC") + "");
|
|
|
wlyyOutpatientVO.setDeptName(null == jsonObjectMgsInfo.get("ADM_SPEC_NAME") ? "" : jsonObjectMgsInfo.get("ADM_SPEC_NAME") + "");
|
|
|
String patNo = null != jsonObjectMgsInfo.get("PAT_NO") ? jsonObjectMgsInfo.get("PAT_NO").toString() : "";
|
|
|
String patientName = null != jsonObjectMgsInfo.get("PAT_NAME") ? jsonObjectMgsInfo.get("PAT_NAME").toString() : "";
|
|
|
PatientMappingDO patientMappingDo = new PatientMappingDO();
|
|
|
if (StringUtils.isNotBlank(patNo)) {
|
|
|
patientMappingDo = patientMappingDao.findByMappingCodeAndSource(patNo.trim(), "1");
|
|
|
patNo = null == patientMappingDo ? null : patientMappingDo.getPatient();
|
|
|
patientName = null == patientMappingDo ? null : patientMappingDo.getPatientName();
|
|
|
}
|
|
|
wlyyOutpatientVO.setPatient(patNo);
|
|
|
wlyyOutpatientVO.setDept(null == jsonObjectMgsInfo.get("Discharge_Dept_Code") ? "" : jsonObjectMgsInfo.get("Discharge_Dept_Code") + "");
|
|
|
/* wlyyOutpatientVO.setDeptName(null == jsonObjectMgsInfo.get("ADM_SPEC_NAME") ? "" : jsonObjectMgsInfo.get("ADM_SPEC_NAME") + "");*/
|
|
|
String patientName = null != jsonObjectMgsInfo.get("Pat_Name") ? jsonObjectMgsInfo.get("Pat_Name").toString() : "";
|
|
|
wlyyOutpatientVO.setPatientName(patientName);
|
|
|
wlyyOutpatientVO.setConNo(null == jsonObjectMgsInfo.get("CON_NO") ? "" : jsonObjectMgsInfo.get("CON_NO") + "");
|
|
|
String doctor = null == jsonObjectMgsInfo.get("CON_DOC") ? "" : jsonObjectMgsInfo.get("CON_DOC") + "";
|
|
|
String doctor = null == jsonObjectMgsInfo.get("Admit_Dr_Code") ? "" : jsonObjectMgsInfo.get("Admit_Dr_Code") + "";
|
|
|
|
|
|
//转化医生
|
|
|
String mappingCode = doctor.trim();
|
|
@ -873,50 +866,25 @@ public class EntranceService {
|
|
|
}
|
|
|
}
|
|
|
wlyyOutpatientVO.setDoctor(doctorCode);
|
|
|
wlyyOutpatientVO.setDoctorName(null == jsonObjectMgsInfo.get("CON_DOC_NAME") ? "" : jsonObjectMgsInfo.get("CON_DOC_NAME") + "");
|
|
|
wlyyOutpatientVO.setDoctorName(null == jsonObjectMgsInfo.get("Admit_Dr_Name") ? "" : jsonObjectMgsInfo.get("Admit_Dr_Name") + "");
|
|
|
|
|
|
// wlyyOutpatientVO.setIdcard(null == jsonObjectMgsInfo.get("social_no") ? "" : jsonObjectMgsInfo.get("social_no") + "");
|
|
|
wlyyOutpatientVO.setMjz(null == jsonObjectMgsInfo.get("MJZ") ? "" : jsonObjectMgsInfo.get("MJZ") + "");
|
|
|
/*wlyyOutpatientVO.setMjz(null == jsonObjectMgsInfo.get("MJZ") ? "" : jsonObjectMgsInfo.get("MJZ") + "");*/
|
|
|
|
|
|
//主诊断 毒蛇咬伤&T63.001
|
|
|
String[] icdName = jsonObjectMgsInfo.get("icd_name").toString().split("&");
|
|
|
String[] diagTwo = jsonObjectMgsInfo.get("diag_two").toString().split("&");
|
|
|
String[] diagThree = jsonObjectMgsInfo.get("diag_three").toString().split("&");
|
|
|
String[] diagFour = jsonObjectMgsInfo.get("diag_four").toString().split("&");
|
|
|
String[] diagFive = jsonObjectMgsInfo.get("diag_five").toString().split("&");
|
|
|
|
|
|
String icdcodes = "";
|
|
|
/* String icdcodes = "";
|
|
|
String icdNames = "";
|
|
|
if (icdName.length > 1) {
|
|
|
icdcodes += icdName[1];
|
|
|
icdNames += icdName[0];
|
|
|
}
|
|
|
if (diagTwo.length > 1) {
|
|
|
icdcodes += "," + diagTwo[1];
|
|
|
icdNames += "," + diagTwo[0];
|
|
|
}
|
|
|
if (diagThree.length > 1) {
|
|
|
icdcodes += "," + diagThree[1];
|
|
|
icdNames += "," + diagThree[0];
|
|
|
}
|
|
|
if (diagFour.length > 1) {
|
|
|
icdcodes += "," + diagFour[1];
|
|
|
icdNames += "," + diagFour[0];
|
|
|
}
|
|
|
if (diagFive.length > 1) {
|
|
|
icdcodes += "," + diagFive[1];
|
|
|
icdNames += "," + diagFive[0];
|
|
|
}
|
|
|
}*/
|
|
|
|
|
|
// String icds = null == jsonObjectMgsInfo.get("icd_name") ? "" : jsonObjectMgsInfo.get("icd_name") + "";
|
|
|
// String[] icdcodeAndName = icds.split("&");
|
|
|
// wlyyOutpatientVO.setIcd10(icdcodeAndName.length > 1 ? icdcodeAndName[1].toString() : "");
|
|
|
// wlyyOutpatientVO.setIcd10Name(icdcodeAndName.length > 0 ? icdcodeAndName[0].toString() : "");
|
|
|
wlyyOutpatientVO.setIcd10(icdcodes);
|
|
|
wlyyOutpatientVO.setIcd10Name(icdNames);
|
|
|
wlyyOutpatientVO.setIcd10(jsonObjectMgsInfo.get("Admit_Diag_Code").toString());
|
|
|
wlyyOutpatientVO.setIcd10Name(jsonObjectMgsInfo.get("Admit_Diag_Name").toString());
|
|
|
|
|
|
String admDate = null == jsonObjectMgsInfo.get("ADM_DAT") ? "" : jsonObjectMgsInfo.get("ADM_DAT") + "";
|
|
|
String conDate = null == jsonObjectMgsInfo.get("CON_DATE") ? "" : jsonObjectMgsInfo.get("CON_DATE") + "";
|
|
|
String admDate = null == jsonObjectMgsInfo.get("Discharge_Date") ? "" : jsonObjectMgsInfo.get("Discharge_Date") + "";
|
|
|
String conDate = null == jsonObjectMgsInfo.get("Discharge_Date") ? "" : jsonObjectMgsInfo.get("Discharge_Date") + "";
|
|
|
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);
|