|
@ -196,7 +196,9 @@ public class FollowUpService extends BaseService {
|
|
|
|
|
|
Followup followup = new Followup();
|
|
|
followup.setFollowupType(map.get("type"));
|
|
|
followup.setFollowupDate(DateUtil.strToDate(map.get("date")));
|
|
|
Date date = DateUtil.strToDate(map.get("date"));
|
|
|
followup.setFollowupDate(date);
|
|
|
followup.setFollowupPlanDate(date);
|
|
|
followup.setDoctorCode(doctor.getCode());
|
|
|
followup.setDoctorName(doctor.getName());
|
|
|
followup.setOrgCode(doctor.getHospital());
|
|
@ -224,7 +226,9 @@ public class FollowUpService extends BaseService {
|
|
|
Followup followup = followupDao.findOne(Long.valueOf(id));
|
|
|
if(followup!=null)
|
|
|
{
|
|
|
followup.setFollowupDate(DateUtil.strToDate(date));
|
|
|
Date followupDate = DateUtil.strToDate(date);
|
|
|
followup.setFollowupDate(followupDate);
|
|
|
followup.setFollowupPlanDate(followupDate);
|
|
|
followup.setFollowupType(followupType);
|
|
|
followup.setCreater(doctorCode);
|
|
|
|
|
@ -276,7 +280,9 @@ public class FollowUpService extends BaseService {
|
|
|
}
|
|
|
|
|
|
Followup followup = new Followup();
|
|
|
followup.setFollowupDate(DateUtil.strToDate(date));
|
|
|
Date followDate = DateUtil.strToDate(date);
|
|
|
followup.setFollowupDate(followDate);
|
|
|
followup.setFollowupPlanDate(followDate);
|
|
|
followup.setDoctorCode(doctorCode);
|
|
|
followup.setDoctorName(doctor.getName());
|
|
|
followup.setOrgCode(doctor.getHospital());
|