|
@ -129,15 +129,12 @@ public class RehabilitationManageService {
|
|
|
sql += " ORDER BY p.create_time DESC LIMIT " + (page - 1) * pageSize + "," + pageSize;
|
|
|
List<Map<String, Object>> patientRehabilitationPlanDOList = jdbcTemplate.queryForList(sql);
|
|
|
List<Map<String, Object>> resultList = new ArrayList<>();
|
|
|
Date beginTime = DateUtil.strToDateLong(DateUtil.getStringDateShort() + " " + "00:00:00");
|
|
|
Date endTime = DateUtil.strToDateLong(DateUtil.getStringDateShort() + " " + "23:59:59");
|
|
|
if (patientRehabilitationPlanDOList.size() > 0 && patientRehabilitationPlanDOList.get(0).get("id") != null) {
|
|
|
|
|
|
for (Map<String, Object> one : patientRehabilitationPlanDOList) {
|
|
|
Map<String, Object> resultMap = new HashMap<>();
|
|
|
// Integer age = IdCardUtil.getAgeForIdcard(one.get("idcard")+"");
|
|
|
// String sex = IdCardUtil.getSexForIdcard_new(one.get("idcard")+"");
|
|
|
// resultMap.put("age",age);
|
|
|
resultMap.put("hospitalName", one.get("hospital_name"));
|
|
|
// resultMap.put("sex","1".equals(sex)?"男":("2".equals(sex)?"女":"未知"));
|
|
|
resultMap.put("patientName", one.get("name"));
|
|
|
resultMap.put("patientCode", one.get("patient"));
|
|
|
resultMap.put("id", one.get("id"));
|
|
@ -166,8 +163,6 @@ public class RehabilitationManageService {
|
|
|
resultMap.put("planTypeName", planTypeName);
|
|
|
resultMap.put("planCreateUser", one.get("create_user"));
|
|
|
//今日待办(即今日全部的项目)
|
|
|
Date beginTime = DateUtil.strToDateLong(DateUtil.getStringDateShort() + " " + "00:00:00");
|
|
|
Date endTime = DateUtil.strToDateLong(DateUtil.getStringDateShort() + " " + "23:59:59");
|
|
|
Integer todayBacklogCount = rehabilitationDetailDao.todayBacklogCount(one.get("id").toString(), beginTime, endTime);
|
|
|
resultMap.put("todayBacklogCount", todayBacklogCount);//今日待办总数
|
|
|
//已完成
|
|
@ -1026,9 +1021,6 @@ public class RehabilitationManageService {
|
|
|
String id = one.get("id").toString();
|
|
|
Map<String, Object> map = new HashMap<>();
|
|
|
map.put("id", id);//id
|
|
|
// List<RehabilitationOperateRecordsDO> rehabilitationOperateRecords = rehabilitationOperateRecordsDao.findByRehabilitationDetailId(id);
|
|
|
// Date completeTime = rehabilitationOperateRecords!=null&&rehabilitationOperateRecords.size()>0?rehabilitationOperateRecords.get(0).getCompleteTime():null;
|
|
|
// String completeTimeStr = completeTime!=null?DateUtil.dateToStr(completeTime,"yyyy/MM/dd HH:mm"):"";
|
|
|
map.put("executeTime", executeTime);//执行时间
|
|
|
map.put("title", title);//项目标题
|
|
|
map.put("content", content);//项目内容
|