Commit 9bf86a494da967d6e4d1cff6b2a866b88290dce8

Authored by qiaoyuewang
1 parent 21bc7d2993
Exists in dev

1:调整检测档案号是否重复的返回对象内容8

Showing 1 changed file with 1 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java View file @ 9bf86a4
... ... @@ -1814,7 +1814,7 @@
1814 1814 BaseObjectResponse br = new BaseObjectResponse();
1815 1815 CheckFiledataNo checkFiledataNo = new CheckFiledataNo();
1816 1816 Patients data = patientsService.findOnePatientByHighRiskDocNo(id);
1817   - if (data == null || data.getFileCode().length()>0) {
  1817 + if (data == null || data.getHighRiskFileCode().length()>0) {
1818 1818 br.setErrorcode(201);
1819 1819 checkFiledataNo.setCode(201);
1820 1820 br.setErrormsg("该高危档案号可以使用");