Browse Source

代码修改

LAPTOP-KB9HII50\70708 1 week ago
parent
commit
68f060c990

+ 0 - 3
svr/svr-visit-behind/src/main/java/com/yihu/jw/hospital/module/followup/service/FollowUpService.java

@ -1711,9 +1711,6 @@ public class FollowUpService {
                followupDao.save(f);
            }
        }
        Followup followup = followupDao.findById(followupId).orElse(null);
        followup.setStatus("1");
        followupDao.save(followup);
    }

+ 0 - 6
svr/svr-visit-behind/src/main/java/com/yihu/jw/hospital/module/rehabilitation/service/RehabilitationManageService.java

@ -1649,12 +1649,6 @@ public class RehabilitationManageService {
            if (followup != null) {
                planDO.setFollowupStatus(followup.getStatus());
            }
            if("1".equals(followup.getStatus())){
                planDO.setStatus("1");
                planDO.setCompleteTime(DateUtil.dateToStrLong(followup.getFollowupDate()));
            }else {
                planDO.setStatus("0");
            }
        }
        PatientRehabilitationPlanDO rehabilitationPlanDO = patientRehabilitationPlanDao.findById(planDO.getPlanId()).orElse(null);
        if (rehabilitationPlanDO != null) {