Commit d58c38edf47f19894d3c7f622edd6fe4056b2130
1 parent
5ee7eb624c
Exists in
master
and in
6 other branches
报告解读人
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyNutritionFacade.java
View file @
d58c38e
... | ... | @@ -1030,7 +1030,7 @@ |
1030 | 1030 | } |
1031 | 1031 | String doctorId = healthChargeModel.getDoctorId(); |
1032 | 1032 | String doctorName = ""; |
1033 | - if (StringUtils.isNotEmpty(doctorId)) { | |
1033 | + if (StringUtils.isNotEmpty(doctorId) && StringUtils.isNum(doctorId)) { | |
1034 | 1034 | Users users = usersService.getUsers(Integer.parseInt(doctorId)); |
1035 | 1035 | if (users != null) { |
1036 | 1036 | doctorName = users.getName(); |