Commit b4e4e0ab authored by 赵啸非's avatar 赵啸非

修改用户等

parent 0432bb17
...@@ -226,7 +226,7 @@ public class AttendanceStatController extends BaseCRUDJsonBodyMappingController< ...@@ -226,7 +226,7 @@ public class AttendanceStatController extends BaseCRUDJsonBodyMappingController<
collect = attendanceStaffStatEntities.stream().collect(Collectors.toMap(x -> x.getYear() + x.getMonth() + x.getDay(), y -> y.getAttendanceSummary())); collect = attendanceStaffStatEntities.stream().collect(Collectors.toMap(x -> x.getYear() + x.getMonth() + x.getDay(), y -> y.getAttendanceSummary()));
} }
List<Map<String, Object>> mapList = new ArrayList<>(); List<Map<String, Object>> mapList = new ArrayList<>();
for (int i = 1; i <= subDay.intValue(); i++) { for (int i = 0; i <= subDay.intValue(); i++) {
DateTime curDate = DateUtil.offsetDay(startDate, i); DateTime curDate = DateUtil.offsetDay(startDate, i);
//判断详细是否存在,如果不存在 则构造一个空的 //判断详细是否存在,如果不存在 则构造一个空的
Integer year = DateUtil.year(curDate); Integer year = DateUtil.year(curDate);
......
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