8 anni fa
parent
commit
3c44206819

+ 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<>();