Commit 01d81329d1d1aeba95c53ad5b03a123c01f6acdd

Authored by liquanyu
1 parent beff7e0b16

update code

Showing 2 changed files with 0 additions and 11 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/RiskReportFacade.java View file @ 01d8132
... ... @@ -414,12 +414,6 @@
414 414 if (slaveBasicConfigMap.containsKey(bs.getHighRiskId())) {
415 415 bs.setRiskReportResults(slaveBasicConfigMap.get(bs.getHighRiskId()));
416 416 for (RiskReportResult basicConfig : bs.getRiskReportResults()) {
417   -
418   - if (basicConfig.getRiskCount() == 0)
419   - {
420   - continue;
421   - }
422   -
423 417 basicConfig.setLevel(bs.getLevel() + 1);
424 418  
425 419 DecimalFormat df = new DecimalFormat("0.00");
platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/HiskCountTask.java View file @ 01d8132
... ... @@ -92,11 +92,6 @@
92 92  
93 93 //单个高危因素孕产妇条数
94 94 int riskPatientCount = patientsService.queryPatientCount(query);
95   - if (riskPatientCount == 0)
96   - {
97   - continue;
98   - }
99   -
100 95  
101 96 RiskReportResult risk = new RiskReportResult();
102 97 risk.setHighRiskId(config.getId());