Commit 53b69f2940bf97b91a0ca49c740b9a07985b5dba

Authored by yangfei
1 parent ce2d0fbf89

发病率的计算规则不正确,总人数不应该包含其他高危的人数

Showing 1 changed file with 3 additions and 3 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/RiskReportFacade.java View file @ 53b69f2
... ... @@ -156,12 +156,12 @@
156 156 query.setoRiskFactor("true");
157 157 query.setType(patientsQuery.getType());
158 158  
159   - //单个高危因素孕产妇条数
  159 + //单个高危因素孕产妇条数(自定义高危)
160 160 int riskPatientCount = patientsService.queryPatientCount(query);
161 161  
162   - //总的孕妇条数
  162 + //总的孕妇条数(国家标准高危)
163 163 int allPatientCount = patientsService.queryPatientCount(patientsQuery);
164   - allPatientCount += riskPatientCount;
  164 + // allPatientCount += riskPatientCount;
165 165  
166 166 List<RiskReportResult> results = new ArrayList<>();
167 167