Commit 3b05fe32dd39c7edda16cd5fbe89d3385c718fb0
1 parent
110ac74864
Exists in
master
and in
6 other branches
1
Showing 1 changed file with 0 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/RiskReportFacade.java
View file @
3b05fe3
| ... | ... | @@ -270,7 +270,6 @@ |
| 270 | 270 | */ |
| 271 | 271 | private List<RiskReportResult> getOtherRiskCount(int riskPatientCount, int allPatientCount) { |
| 272 | 272 | List<RiskReportResult> results = new ArrayList<>(); |
| 273 | - if (riskPatientCount > 0) { | |
| 274 | 273 | RiskReportResult risk = new RiskReportResult(); |
| 275 | 274 | risk.setHighRiskId("otherRiskId"); |
| 276 | 275 | risk.setHighRisk("自定义高危"); |
| ... | ... | @@ -289,7 +288,6 @@ |
| 289 | 288 | |
| 290 | 289 | risk.setHighLevel(level); |
| 291 | 290 | results.add(risk); |
| 292 | - } | |
| 293 | 291 | return results; |
| 294 | 292 | } |
| 295 | 293 |