소스 검색

随访BUG修复

8 년 전
부모
커밋
3c44206819
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      patient-co-wlyy/src/main/java/com/yihu/wlyy/service/app/followup/FollowUpService.java

+ 4 - 1
patient-co-wlyy/src/main/java/com/yihu/wlyy/service/app/followup/FollowUpService.java

@ -277,7 +277,10 @@ public class FollowUpService extends BaseService {
            }
            SignFamily signFamily = signFamilyDao.findByjiatingPatient(patientCode);
            if (signFamily == null) {
                throw new Exception("can not find patient's family sign info");
                signFamily = signFamilyDao.findBySanshiPatient(patientCode);
                if(signFamily==null){
                    throw new Exception("can not find patient's family sign info");
                }
            }
            List<Followup> followupPlan = new ArrayList<>();