Commit fec694c4f527496be1ca42ef27dfb29baf0a443c
1 parent
83feb4f250
Exists in
master
and in
6 other branches
bug修复
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java
View file @
fec694c
| ... | ... | @@ -170,7 +170,7 @@ |
| 170 | 170 | List<String> colors = new ArrayList<>(); |
| 171 | 171 | Object highRiskGrade = map.get("HIGH_RISK_GRADE"); |
| 172 | 172 | if(highRiskGrade != null && StringUtils.isNotBlank(highRiskGrade.toString())) { |
| 173 | - List<String> grades = Arrays.asList(highRiskGrade.toString()); | |
| 173 | + List<String> grades = Arrays.asList(highRiskGrade.toString().split(",")); | |
| 174 | 174 | for (String grade : grades) { |
| 175 | 175 | if(colorMap.get(grade) != null) { |
| 176 | 176 | colors.add(colorMap.get(grade)); |