Commit 5a4a62e4b8a0b79cb3efe8c577d587ac073ba9b6
1 parent
856dc42d67
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 9 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PreEugebicsServiceImpl.java
View file @
5a4a62e
... | ... | @@ -399,6 +399,15 @@ |
399 | 399 | String doctorStr = CommonsHelper.getUserName(doctor,usersService); |
400 | 400 | map.put("doctorStr",doctorStr); |
401 | 401 | } |
402 | + if (map != null && map.size() > 0 && map.get("checkDoctor") != null) | |
403 | + { | |
404 | + String doctor = String.valueOf(map.get("checkDoctor")); | |
405 | + if (StringUtils.isNotEmpty(doctor)) | |
406 | + { | |
407 | + String doctorStr = CommonsHelper.getUserName(doctor,usersService); | |
408 | + map.put("checkDoctorStr",doctorStr); | |
409 | + } | |
410 | + } | |
402 | 411 | } |
403 | 412 | |
404 | 413 | /** |