Commit aa00b6f53ecee53272eac71da5864e4f930b958d

Authored by shiyang
1 parent ce21481063

婚检、儿童贫血增加-无贫血(暂未添加到总数)

Showing 2 changed files with 3 additions and 3 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java View file @ aa00b6f
... ... @@ -4802,7 +4802,7 @@
4802 4802 query.setHemoglobinEnd(matterHln);
4803 4803 int matter =babyCheckService.queryBabyCheckCount(query);
4804 4804 map.put("matter"+i,matter);
4805   - //无贫血
  4805 + //无贫血(暂未添加到总数)
4806 4806 query.setHemoglobinStart(noHls);
4807 4807 query.setHemoglobinEnd(null);
4808 4808 int nothing =babyCheckService.queryBabyCheckCount(query);
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java View file @ aa00b6f
... ... @@ -8862,13 +8862,13 @@
8862 8862 antExChuQuery.setLpXhdbEnd("41");
8863 8863 Long severity = mongoTemplate.count(antExChuQuery.convertToQuery().convertToMongoQuery(), AntExChuModel.class);
8864 8864 map.put("severity",severity);
8865   - //无贫血(>109g/l)
  8865 + //无贫血(>109g/l)(暂未添加到总数)
8866 8866 antExChuQuery.setLpXhdbStart("110");
8867 8867 antExChuQuery.setLpXhdbEnd(null);
8868 8868 Long nothing = mongoTemplate.count(antExChuQuery.convertToQuery().convertToMongoQuery(), AntExChuModel.class);
8869 8869 map.put("nothing",nothing);
8870 8870  
8871   - map.put("total",light+middle+matter+severity+nothing);
  8871 + map.put("total",light+middle+matter+severity);
8872 8872 br.setErrorcode(ErrorCodeConstants.SUCCESS);
8873 8873 br.setErrormsg("成功");
8874 8874 br.setObject(map);