补卡列表排除掉请假的数据
This commit is contained in:
@ -364,7 +364,8 @@ public class WgzAttendanceServiceImpl extends ServicePlusImpl<WgzAttendanceMappe
|
||||
//4、查询所有缺卡、迟到、早退的打卡记录
|
||||
LambdaQueryWrapper<WgzAttendance> apply = new LambdaQueryWrapper<WgzAttendance>().
|
||||
eq(WgzAttendance::getUserId, appUserId).
|
||||
eq(WgzAttendance::getRecruitId, appById.getId())
|
||||
eq(WgzAttendance::getRecruitId, appById.getId()).
|
||||
isNull(WgzAttendance::getLeaveMarkId)
|
||||
.and(wrapper -> wrapper
|
||||
.eq(WgzAttendance::getLate, 1)
|
||||
.or()
|
||||
|
Reference in New Issue
Block a user