|
@ -95,6 +95,13 @@ public class SignPatientLabelInfoService extends BaseService {
|
|
|
json.put("sex", p.getSex());
|
|
|
// 身份证号
|
|
|
json.put("idcard", p.getIdcard());
|
|
|
// 设置患者居住省份
|
|
|
json.put("provinceName", p.getProvinceName());
|
|
|
json.put("cityName", p.getCityName());
|
|
|
json.put("townName", p.getTownName());
|
|
|
json.put("streetName", p.getStreetName());
|
|
|
// 设置患者地址
|
|
|
json.put("address", p.getAddress());
|
|
|
// 社保号
|
|
|
json.put("ssc", p.getSsc());
|
|
|
|
|
@ -116,6 +123,8 @@ public class SignPatientLabelInfoService extends BaseService {
|
|
|
json.put("ssDoctorHealth", ssSign.getDoctorHealth());
|
|
|
json.put("ssDoctorHealthName", ssSign.getDoctorHealthName());
|
|
|
json.put("ssAdminTeam", ssSign.getAdminTeamId());
|
|
|
json.put("ssBeginDate", DateUtil.dateToStr(ssSign.getBegin(), DateUtil.YYYY_MM_DD));
|
|
|
json.put("ssEndDate", DateUtil.dateToStr(ssSign.getEnd(), DateUtil.YYYY_MM_DD));
|
|
|
}
|
|
|
if (familySign != null) {
|
|
|
// 设置患者紧急联系人
|
|
@ -134,6 +143,8 @@ public class SignPatientLabelInfoService extends BaseService {
|
|
|
json.put("expensesType", StringUtils.isNotEmpty(familySign.getExpensesType()) ? String.valueOf(familySign.getExpensesType()) : "");
|
|
|
// 设置签约状态
|
|
|
json.put("familyStatus", familySign.getStatus());
|
|
|
json.put("jtBeginDate", DateUtil.dateToStr(familySign.getBegin(), DateUtil.YYYY_MM_DD));
|
|
|
json.put("jtEndDate", DateUtil.dateToStr(familySign.getEnd(), DateUtil.YYYY_MM_DD));
|
|
|
|
|
|
json.put("jtDoctor", familySign.getDoctor());
|
|
|
json.put("jtDoctorName", familySign.getDoctorName());
|