Commit b1c42bf2f58423a267d7d2fa99d8496d9badb5e1
1 parent
0d23ee5529
Exists in
master
and in
1 other branch
高危
Showing 1 changed file with 5 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java
View file @
b1c42bf
| ... | ... | @@ -786,6 +786,8 @@ |
| 786 | 786 | otherRisk.append(fxysu+","); |
| 787 | 787 | } |
| 788 | 788 | score+=NumberUtils.toInt(map.get("score").toString(),0); |
| 789 | + | |
| 790 | + highScoreResult.getLevelId().add(map.get("fyyse").toString()); | |
| 789 | 791 | } |
| 790 | 792 | if(StringUtils.isNotEmpty(otherRisk.toString())){ |
| 791 | 793 | highScoreResult.setOtherRisk(otherRisk.substring(0, otherRisk.length() - 1)); |
| 792 | 794 | |
| ... | ... | @@ -831,9 +833,11 @@ |
| 831 | 833 | for (Map<String, Object> map : listMap) { |
| 832 | 834 | Object fxysu = map.get("fxysu").toString(); |
| 833 | 835 | if (fxysu != null) { |
| 834 | - otherRisk.append(fxysu); | |
| 836 | + otherRisk.append(fxysu+","); | |
| 835 | 837 | } |
| 836 | 838 | score+=NumberUtils.toInt(map.get("score").toString(),0); |
| 839 | + | |
| 840 | + highScoreResult.getLevelId().add(map.get("fyyse").toString()); | |
| 837 | 841 | } |
| 838 | 842 | highScoreResult.setScore(highScoreResult.getScore()+score); |
| 839 | 843 | if(StringUtils.isNotEmpty(otherRisk.toString())){ |