Commit ca784521d9e98739dcde26b65abb86be1e7be417
1 parent
df160e998e
Exists in
master
and in
1 other branch
增加设置parentid
Showing 1 changed file with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java
View file @
ca78452
... | ... | @@ -125,7 +125,7 @@ |
125 | 125 | antenatalExaminationService.updateAntExChu(antExChuModel, antExChuModel.getId()); |
126 | 126 | |
127 | 127 | Patients patients = patientsService.findOnePatientById(excAddRequest.getParentId()); |
128 | - patients.setLastCheckEmployeeId(userId+""); | |
128 | + patients.setLastCheckEmployeeId(excAddRequest.getProdDoctor()); | |
129 | 129 | //修改患者风险等级 |
130 | 130 | updatePatientRiskLevel(antExChuModel, patients); |
131 | 131 | } else { |
... | ... | @@ -152,7 +152,7 @@ |
152 | 152 | antExChuModel.setYn(YnEnums.YES.getId()); |
153 | 153 | antenatalExaminationService.addOneAntEx(antExChuModel); |
154 | 154 | //修改患者风险等级 |
155 | - patients.setLastCheckEmployeeId(userId + ""); | |
155 | + patients.setLastCheckEmployeeId(excAddRequest.getProdDoctor()); | |
156 | 156 | updatePatientRiskLevel(antExChuModel, patients); |
157 | 157 | } |
158 | 158 | return new BaseResponse().setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功"); |