Commit d65156063bd3ad0816a87128125bd0d95050eabe

Authored by jiangjiazhi
1 parent e2d4ce7864

修改新电子病历

Showing 1 changed file with 2 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PostReviewFacade.java View file @ d651560
... ... @@ -135,7 +135,7 @@
135 135 //未分娩建档
136 136 Patients patients = examinationFacade.findOnePatient(postReviewQueryRequest.getCardNo(), postReviewQueryRequest.getVcCardNo(), null, null, 1,false,null);
137 137 if(null!=patients){
138   - return new BaseResponse().setErrorcode(ErrorCodeConstants.PARAMETER_ERROR).setErrormsg("当前用户未分娩,不能进行复查");
  138 + return new BaseResponse().setErrorcode(ErrorCodeConstants.PARAMETER_ERROR).setErrormsg("该孕妇还未分娩,不能进行复查");
139 139 }
140 140  
141 141  
... ... @@ -146,7 +146,7 @@
146 146 PostReviewListResult postReviewListResult = new PostReviewListResult();
147 147 if (null != patientsList) {
148 148 if(null!=patientsList.getDueStatus() && 1 == patientsList.getDueStatus()){
149   - return new BaseResponse().setErrorcode(ErrorCodeConstants.BUSINESS_ERROR).setErrormsg("您已终止妊娠不能进行复查");
  149 + return new BaseResponse().setErrorcode(ErrorCodeConstants.BUSINESS_ERROR).setErrormsg("该孕妇已终止妊娠,不能进行复查");
150 150 }
151 151 PostReviewQuery postReviewQuery = new PostReviewQuery();
152 152 postReviewQuery.setPid(patientsList.getPid());