Commit 218b6dc8f701bc469a82da17842603c059463a82
1 parent
33d5bbd172
Exists in
master
and in
6 other branches
update
Showing 2 changed files with 3 additions and 0 deletions
platform-biz-patient-service/src/main/java/com/lyms/platform/biz/service/BabyBookbuildingService.java
View file @
218b6dc
... | ... | @@ -237,6 +237,7 @@ |
237 | 237 | BabyBuildClassifyQuery classifyQuery=new BabyBuildClassifyQuery(); |
238 | 238 | classifyQuery.setBabyId(babyModel.getId()); |
239 | 239 | classifyQuery.setMonthAge(MonthAgeTropeEnum.getMonthAgeById(i)); |
240 | + classifyQuery.setYn(YnEnums.YES.getId()); | |
240 | 241 | List<BabyBuildClassifyModel> classifyModelList = babyBuildClassifyService.queryList(classifyQuery, null, null); |
241 | 242 | if(CollectionUtils.isEmpty(classifyModelList)) { |
242 | 243 | //保存 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java
View file @
218b6dc
... | ... | @@ -1138,6 +1138,7 @@ |
1138 | 1138 | BabyBuildClassifyQuery query=new BabyBuildClassifyQuery(); |
1139 | 1139 | query.setBabyId(model.getBuildId()); |
1140 | 1140 | query.setMonthAge(model.getTcType()); |
1141 | + query.setYn(YnEnums.YES.getId()); | |
1141 | 1142 | babyBuildClassifyService.update(query,classifyModel); |
1142 | 1143 | } |
1143 | 1144 | br.setErrorcode(ErrorCodeConstants.SUCCESS); |
... | ... | @@ -1311,6 +1312,7 @@ |
1311 | 1312 | BabyBuildClassifyQuery classifyQuery=new BabyBuildClassifyQuery(); |
1312 | 1313 | classifyQuery.setBabyId(checkModels.get(0).getBuildId()); |
1313 | 1314 | classifyQuery.setMonthAge(checkModels.get(0).getTcType()); |
1315 | + classifyQuery.setYn(YnEnums.YES.getId()); | |
1314 | 1316 | babyBuildClassifyService.update(classifyQuery,classifyModel); |
1315 | 1317 | } |
1316 | 1318 | } |