|
@ -1709,7 +1709,15 @@ public class FollowUpService {
|
|
|
f.setFollowupType(nextFollowupWay);
|
|
|
}
|
|
|
followupDao.save(f);
|
|
|
}else{
|
|
|
Followup followup = followupDao.findById(followupId).orElse(null);
|
|
|
followup.setStatus("1");
|
|
|
followupDao.save(followup);
|
|
|
}
|
|
|
}else{
|
|
|
Followup followup = followupDao.findById(followupId).orElse(null);
|
|
|
followup.setStatus("1");
|
|
|
followupDao.save(followup);
|
|
|
}
|
|
|
}
|
|
|
|