Commit f2986b661d65bfbd563f188e0d5d3967aa0de3cc

Authored by jiangjiazhi
1 parent e61c082132

增加设置parentid

Showing 2 changed files with 2 additions and 2 deletions

platform-common/src/main/java/com/lyms/platform/common/constants/ErrorCodeConstants.java View file @ f2986b6
... ... @@ -47,7 +47,7 @@
47 47 public static final int DATA_EXIST=4200;
48 48  
49 49 //没有数据
50   - public static final int NO_DATA=4200;
  50 + public static final int NO_DATA=4210;
51 51 //不能删除
52 52 public static final int DONT_DELETE=4201;
53 53 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/MatDeliverFacade.java View file @ f2986b6
... ... @@ -284,7 +284,7 @@
284 284 //http://jira.healthbaby.com.cn/browse/WEB-204 修改bug
285 285 Patients patients = antenatalExaminationFacade.findOnePatient(deliverQueryRequest.getCardNo(), deliverQueryRequest.getVcCardNo(), null, hospital, 1);
286 286 if(null==patients){
287   - return new BaseResponse().setErrormsg("该孕妇还未在本院建档不能进行产分娩").setErrorcode(ErrorCodeConstants.DEPT_NOT_EXISTS);
  287 + return new BaseResponse().setErrormsg("该孕妇还未在本院建档不能进行产分娩").setErrorcode(ErrorCodeConstants.NO_DATA);
288 288 }
289 289  
290 290