Commit 01daa54f authored by 赵啸非's avatar 赵啸非

添加统计异常详细信息

parent cebcd7fb
......@@ -286,12 +286,12 @@ public class AttendanceStatServiceImpl extends AbstractCRUDServiceImpl<Attendanc
//格式化年月日
String date = staffStat.getYear() + "-" + StrUtil.padPre(staffStat.getMonth() + "", 2, "0")+ "-" + StrUtil.padPre(staffStat.getDay() + "", 2, "0");
log.info("staffId:{},date:{}",staffStat.getStaffId(),date);
//log.info("staffId:{},date:{}",staffStat.getStaffId(),date);
detailQuery.setAttendanceDateStart(date);
detailQuery.setAttendanceDateEnd(date);
List<AttendanceRecordDetailEntity> detailEntities = attendanceRecordDetailService.getListByWhere(detailQuery);
if (!ObjectUtils.isEmpty(detailEntities)) {
log.info("detailEntities size:{}",detailEntities.size());
//log.info("detailEntities size:{}",detailEntities.size());
staffStat.setRemark(JSON.toJSONString(detailEntities));
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment