Browse Source

Merge remote-tracking branch 'origin/2.0' into 2.0

lhh 1 tuần trước cách đây
mục cha
commit
5806cac970

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

@ -1728,6 +1728,13 @@ public class FollowUpService {
                }
                followupDao.save(f);
            }
            if(StringUtils.isNotBlank(nextFollowupTime)){
                ServiceItemPlanDO itemPlanDO = serviceItemPlanDao.findByRelationCode(followupId+"");
                if(itemPlanDO!=null){
                    itemPlanDO.setPlanTime(nextFollowupTime);
                    serviceItemPlanDao.save(itemPlanDO);
                }
            }
        }
    }