Commit bbf161b55b045f693d4e98d35dc0c7d7db0514c9
1 parent
49542f1071
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 2 additions and 10 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyHealthFacade.java
View file @
bbf161b
... | ... | @@ -234,17 +234,9 @@ |
234 | 234 | mapAge.put("hemoglobin", babyCheckModel.getHemoglobin()); |
235 | 235 | mapAge.put("wh", babyCheckModel.getWeight()+"/"+babyCheckModel.getHeight()); |
236 | 236 | mapAge.put("whEva", ifnull(babyCheckModel.getWeightEvaluate())+"/"+ifnull(babyCheckModel.getHeightEvaluate())); |
237 | - } else { | |
238 | - mapAge.put("height", ""); | |
239 | - mapAge.put("heightEvaluate", ""); | |
240 | - mapAge.put("weight", ""); | |
241 | - mapAge.put("weightEvaluate", ""); | |
242 | - mapAge.put("hemoglobin", ""); | |
243 | - mapAge.put("wh", ""); | |
244 | - mapAge.put("whEva", ""); | |
237 | + mapAge.put("age", monthArr[i]); | |
238 | + listAge.add(mapAge); | |
245 | 239 | } |
246 | - mapAge.put("age", monthArr[i]); | |
247 | - listAge.add(mapAge); | |
248 | 240 | } |
249 | 241 | |
250 | 242 |