2 Incheckningar 89fcdf4a6f ... d6906aa729

Upphovsman SHA1 Meddelande Datum
  LAPTOP-KB9HII50\70708 d6906aa729 Merge branch '2.0' of http://192.168.1.220:10080/Amoy2/wlyy2.0 into 2.0 1 vecka sedan
  LAPTOP-KB9HII50\70708 679d09160c 代码修改 1 vecka sedan

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

@ -1725,6 +1725,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);
                }
            }
        }
    }