Commit 0b2f9b4e3e3dbce5a3f6ce2106722ffdab07bd38
1 parent
2ffa98d2e3
Exists in
master
and in
6 other branches
修复bug
Showing 1 changed file with 9 additions and 11 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/BabyEvaluationCriterionServiceImpl.java
View file @
0b2f9b4
... | ... | @@ -306,18 +306,16 @@ |
306 | 306 | objectList.add(objectMap); |
307 | 307 | } |
308 | 308 | |
309 | - baseResponse.setObject(objectList); | |
310 | - return baseResponse; | |
311 | - } else { | |
312 | - | |
313 | - // 根据当前儿童显示项目领域的配置信息,以供save | |
314 | - Map<String, Object> objectMap = (Map<String, Object>) getItemListByBabyId(babyId, checkMonth).getObject(); | |
315 | - objectMap.put("checkTimeStr", ""); | |
316 | - objectMap.put("checkMonth", checkMonthStr); | |
317 | - objectList.add(objectMap); | |
318 | - baseResponse.setObject(objectList); | |
319 | - return baseResponse; | |
320 | 309 | } |
310 | + | |
311 | + // 根据当前儿童显示项目领域的配置信息,以供save | |
312 | + Map<String, Object> objectMap = (Map<String, Object>) getItemListByBabyId(babyId, checkMonth).getObject(); | |
313 | + objectMap.put("checkTimeStr", ""); | |
314 | + objectMap.put("checkMonth", checkMonthStr); | |
315 | + objectList.add(objectMap); | |
316 | + baseResponse.setObject(objectList); | |
317 | + return baseResponse; | |
318 | + | |
321 | 319 | } |
322 | 320 | |
323 | 321 | /** |