Commit c0e76cf2a33e387dda049f563e63e089c9436461
1 parent
2695058c0f
Exists in
master
and in
6 other branches
复诊
Showing 1 changed file with 4 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/ResolveUtils.java
View file @
c0e76cf
... | ... | @@ -238,6 +238,10 @@ |
238 | 238 | if (CollectionUtils.isNotEmpty(id)) { |
239 | 239 | score = 0; |
240 | 240 | for (String i : id) { |
241 | + if (i == null || "null".equals(i)) | |
242 | + { | |
243 | + continue; | |
244 | + } | |
241 | 245 | basicConfigQuery.setId(i); |
242 | 246 | List<BasicConfig> basicConfigs = basicConfigService.queryBasicConfig(basicConfigQuery); |
243 | 247 | if (CollectionUtils.isNotEmpty(basicConfigs)) { |