Commit 2cd7a8995fb483eaf7c5e9e6d5de31c96185feaf
1 parent
763831feb7
Exists in
master
and in
6 other branches
儿童统计修改
Showing 2 changed files with 6 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntExRecordFacade.java
View file @
2cd7a89
... | ... | @@ -1760,6 +1760,7 @@ |
1760 | 1760 | AntExRecordModel model1 = recordModels.get(0); |
1761 | 1761 | model1.setNextCheckTime(DateUtil.parseYMD(nextTime)); |
1762 | 1762 | model1.setCheckDoctor(doctorId); |
1763 | + model1.setSieveType(sieveType); | |
1763 | 1764 | recordService.updateOne(model1,model1.getId()); |
1764 | 1765 | } |
1765 | 1766 | } |
... | ... | @@ -1905,6 +1906,7 @@ |
1905 | 1906 | yumInfosMap.put("fhr", fhr); |
1906 | 1907 | yumInfosMap.put("edema", edema); |
1907 | 1908 | yumInfosMap.put("nextTime", nextTime); |
1909 | + yumInfosMap.put("sieveType", sieveType); | |
1908 | 1910 | WxMeasureInfoModel wxMeasure = mongoTemplate.findOne(Query.query(Criteria.where("pid").is(pid).and("type").is("1")), WxMeasureInfoModel.class); |
1909 | 1911 | if (null == wxMeasure) { |
1910 | 1912 | listMap.add(yumInfosMap); |
... | ... | @@ -1927,6 +1929,9 @@ |
1927 | 1929 | if (currentTime.equals(inputTime)) { |
1928 | 1930 | if (null == yumInfosMap.get("fuh") || "" == yumInfosMap.get("fuh")) { |
1929 | 1931 | yumInfosMap.put("fuh", map.get("fuh")); |
1932 | + } | |
1933 | + if (null == yumInfosMap.get("sieveType") || "" == yumInfosMap.get("sieveType")) { | |
1934 | + yumInfosMap.put("sieveType", map.get("sieveType")); | |
1930 | 1935 | } |
1931 | 1936 | if (null == yumInfosMap.get("abdominalGirth") || "" == yumInfosMap.get("abdominalGirth")) { |
1932 | 1937 | yumInfosMap.put("abdominalGirth", map.get("abdominalGirth")); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/AntExAddRequest.java
View file @
2cd7a89