Commit 8df15e0b authored by 赵啸非's avatar 赵啸非

修改考勤汇总查询

parent 6e5b8e67
...@@ -202,7 +202,7 @@ public class AttendanceLeaveRecordServiceImpl extends AbstractCRUDServiceImpl<At ...@@ -202,7 +202,7 @@ public class AttendanceLeaveRecordServiceImpl extends AbstractCRUDServiceImpl<At
//同步指定用户 //同步指定用户
List<UserEntity> userEntityList = userCacheList.stream() List<UserEntity> userEntityList = userCacheList.stream()
.filter(f -> !ObjectUtils.isEmpty(f.getDingUserId())) .filter(f -> !ObjectUtils.isEmpty(f.getDingUserId()))
.filter(f -> staffId == f.getCustomerId()) .filter(f -> staffId.equals(f.getCustomerId()))
.collect(Collectors.toList()); .collect(Collectors.toList());
getLeaveRecordByUserList(query, userEntityList, waitSyncLeaveRecords); getLeaveRecordByUserList(query, userEntityList, waitSyncLeaveRecords);
} }
......
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