|
@ -521,7 +521,12 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
rs.put("address", basePatientDO.getAddress());
|
|
rs.put("address", basePatientDO.getAddress());
|
|
rs.put("mobile", basePatientDO.getMobile());
|
|
rs.put("mobile", basePatientDO.getMobile());
|
|
rs.put("birthday", DateUtil.dateToStr(basePatientDO.getBirthday(), "yyyy-MM-dd"));
|
|
rs.put("birthday", DateUtil.dateToStr(basePatientDO.getBirthday(), "yyyy-MM-dd"));
|
|
|
|
|
|
|
|
String hisPatient="";
|
|
|
|
PatientMappingDO patientMappingDO = patientMappingDao.findByPatient(basePatientDO.getId());
|
|
|
|
if(null!=patientMappingDO){
|
|
|
|
hisPatient = patientMappingDO.getMappingCode();
|
|
|
|
}
|
|
|
|
rs.put("hisPatient",hisPatient);
|
|
Long time = new Date().getTime() - outpatientDO.getCreateTime().getTime();
|
|
Long time = new Date().getTime() - outpatientDO.getCreateTime().getTime();
|
|
rs.put("time", time);
|
|
rs.put("time", time);
|
|
|
|
|
|
@ -8532,4 +8537,5 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
public void updateHisStatusByOutpatientId(String outpatientId){
|
|
public void updateHisStatusByOutpatientId(String outpatientId){
|
|
outpatientDao.updateHisStatusById(outpatientId,1);
|
|
outpatientDao.updateHisStatusById(outpatientId,1);
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|