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

修改请假计算考勤

parent 407ea516
......@@ -44,7 +44,7 @@ public class AttendSummaryService implements IApplicationStartedService {
Thread.sleep(2000);
if (StringUtils.isNotEmpty(query.getSummaryTimeStart()) && StringUtils.isNotEmpty(query.getSummaryTimeEnd())) {
List<String> dateList = getDatesBetween(query.getSummaryTimeStart(), query.getSummaryTimeEnd());
dateList.parallelStream().forEach(day->{
dateList.stream().forEach(day->{
// for (String day : dateList) {
AttendanceSummaryQuery temp = new AttendanceSummaryQuery(day);
if(query.getStaffId()!=null){
......
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