|
@ -1648,7 +1648,11 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
outpatientDao.save(outpatientDO);
|
|
outpatientDao.save(outpatientDO);
|
|
//调用电子病历注册
|
|
//调用电子病历注册
|
|
manageType = 2;
|
|
manageType = 2;
|
|
registDianziBingli(outpatientDO, basePatientDO, manageType, registerDO.getRegisterNo(), registerDO.getConNo());
|
|
|
|
|
|
try {
|
|
|
|
registDianziBingli(outpatientDO, basePatientDO, manageType, registerDO.getRegisterNo(), registerDO.getConNo());
|
|
|
|
}catch (Exception e){
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
return res;
|
|
return res;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@ -1770,7 +1774,7 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
"<CardNO>" + outpatientDO.getCardNo() + "</CardNO>\n" +
|
|
"<CardNO>" + outpatientDO.getCardNo() + "</CardNO>\n" +
|
|
"<PatientName>" + basePatientDO.getName() + "</PatientName>" +
|
|
"<PatientName>" + basePatientDO.getName() + "</PatientName>" +
|
|
"<SexCode>" + basePatientDO.getSex() + "</SexCode>";
|
|
"<SexCode>" + basePatientDO.getSex() + "</SexCode>";
|
|
if (1 == basePatientDO.getSex()) {
|
|
|
|
|
|
if (basePatientDO.getSex()!=null&&1 == basePatientDO.getSex()) {
|
|
_xmlStr = _xmlStr + "<Sex>男</Sex>";
|
|
_xmlStr = _xmlStr + "<Sex>男</Sex>";
|
|
} else {
|
|
} else {
|
|
_xmlStr = _xmlStr + "<Sex>女</Sex>";
|
|
_xmlStr = _xmlStr + "<Sex>女</Sex>";
|