Commit 1688f49b0fc7a0c64a8d354e9a21959f585940e4
1 parent
7cdef4eed5
Exists in
master
and in
6 other branches
听力诊断模块
Showing 1 changed file with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/EarController.java
View file @
1688f49
... | ... | @@ -258,7 +258,7 @@ |
258 | 258 | hcQuery.setTargetId(babyId); |
259 | 259 | List<HighriskChangeHospital> hchList = highchangeService.queryHighriskChangeHospital(hcQuery); |
260 | 260 | if (hchList == null || hchList.size() == 0) {//没有找到听力转诊申请 |
261 | - return new BaseResponse().setErrorcode(ErrorCodeConstants.NO_POWER).setErrormsg("该儿童还未听筛未通过记录不能进行听诊"); | |
261 | + return new BaseResponse().setErrorcode(ErrorCodeConstants.NO_POWER).setErrormsg("听诊诊断失败,儿童未做听筛"); | |
262 | 262 | } |
263 | 263 | } else { |
264 | 264 | boolean isResu = false; |
... | ... | @@ -273,7 +273,7 @@ |
273 | 273 | } |
274 | 274 | } |
275 | 275 | if (!isResu) { |
276 | - return new BaseResponse().setErrorcode(ErrorCodeConstants.NO_POWER).setErrormsg("该儿童还未听筛未通过记录不能进行听诊"); | |
276 | + return new BaseResponse().setErrorcode(ErrorCodeConstants.NO_POWER).setErrormsg("听诊诊断失败,儿童听筛已通过"); | |
277 | 277 | } |
278 | 278 | } |
279 | 279 |