11
This commit is contained in:
parent
b9a125dade
commit
46f2696f05
@ -273,10 +273,10 @@ public class PatientVisitRecordServiceImpl implements IPatientVisitRecordService
|
||||
PatientInfo patientInfo = patientMapper.selectPatientInfoById(updDto.getPatientId());
|
||||
// 修改患者信息
|
||||
patientInfo.setVisitMethod(updDto.getVisitMethod());
|
||||
patientInfo.setDepartmentId(updDto.getDepartmentId());
|
||||
patientInfo.setDepartmentName(updDto.getDepartmentName());
|
||||
patientInfo.setAdmissionTime(updDto.getAdmissionTime());
|
||||
patientInfo.setDischargeTime(updDto.getDischargeTime());
|
||||
patientInfo.setDepartmentId(updDto.getDepartmentId());
|
||||
patientInfo.setDepartmentName(updDto.getDepartmentName());
|
||||
patientInfo.setAdmissionTime(updDto.getAdmissionTime());
|
||||
patientInfo.setDischargeTime(updDto.getDischargeTime());
|
||||
setPatientType(patientInfo, patientVisitRecord);
|
||||
patientInfoService.updatePatientInfo(patientInfo);
|
||||
}
|
||||
|
||||
@ -112,6 +112,7 @@ public class subscribeTaskServiceImpl implements SubscribeTaskService {
|
||||
// PatientVO patientVO = patientList.stream().filter(Objects::nonNull).filter(item -> signPatientManageRouteNode.getPatientId().equals(item.getPatientId())).findFirst().orElse(new PatientVO());
|
||||
// //患者类型如果是 在院患者
|
||||
// if (patientVO.getPatientType().equals(PatientTypeEnum.IN_HOSPITAL_PATIENT.getInfo())) {
|
||||
// if (patientVO.getPatientType().equals(PatientTypeEnum.IN_HOSPITAL_PATIENT.getInfo())) {
|
||||
// //入院时间
|
||||
// LocalDate localDate = patientVO.getAdmissionTime().plusDays(signPatientManageRouteNode.getRouteNodeDay());
|
||||
// boolean before = localDate.isBefore(LocalDate.now()) || localDate.isEqual(LocalDate.now());
|
||||
|
||||
Loading…
Reference in New Issue
Block a user