Merge remote-tracking branch 'origin/master'
This commit is contained in:
@ -670,7 +670,7 @@ public class WgzAttendanceServiceImpl extends ServicePlusImpl<WgzAttendanceMappe
|
|||||||
.eq(WgzReissueacard::getUserId, wa.getUserId())
|
.eq(WgzReissueacard::getUserId, wa.getUserId())
|
||||||
.eq(WgzReissueacard::getAttendanceId, wa.getId())
|
.eq(WgzReissueacard::getAttendanceId, wa.getId())
|
||||||
.eq(WgzReissueacard::getType, type)
|
.eq(WgzReissueacard::getType, type)
|
||||||
.ne(WgzReissueacard::getAuditorOpinion, "3")
|
.ne(WgzReissueacard::getAuditorType, "3")
|
||||||
.orderByDesc(WgzReissueacard::getId)
|
.orderByDesc(WgzReissueacard::getId)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -242,6 +242,7 @@ public class WgzLeaveServiceImpl extends ServicePlusImpl<WgzLeaveMapper, WgzLeav
|
|||||||
//获取请假详情
|
//获取请假详情
|
||||||
WgzLeave we = baseMapper.selectById(req.getId());
|
WgzLeave we = baseMapper.selectById(req.getId());
|
||||||
BgtProjectRecruitApply recruitApply = iBgtProjectRecruitApplyService.getById(we.getApplyKey());
|
BgtProjectRecruitApply recruitApply = iBgtProjectRecruitApplyService.getById(we.getApplyKey());
|
||||||
|
BgtProjectRecruit recruit = iBgtProjectRecruitService.getById(recruitApply.getRecruitId());
|
||||||
//取消请假
|
//取消请假
|
||||||
WgzLeave wgzLeave = new WgzLeave().
|
WgzLeave wgzLeave = new WgzLeave().
|
||||||
setId(req.getId()).
|
setId(req.getId()).
|
||||||
@ -252,10 +253,10 @@ public class WgzLeaveServiceImpl extends ServicePlusImpl<WgzLeaveMapper, WgzLeav
|
|||||||
//状态取消成功需要把对应消息的状态变更为【不需要操作】
|
//状态取消成功需要把对应消息的状态变更为【不需要操作】
|
||||||
iBgtMessageService.operation(
|
iBgtMessageService.operation(
|
||||||
USERTYPE_WGZ,
|
USERTYPE_WGZ,
|
||||||
recruitApply.getUserId(),
|
recruit.getUserId(),
|
||||||
USERTYPE_BGT,
|
USERTYPE_BGT,
|
||||||
SecurityUtils.getAppUserId(),
|
SecurityUtils.getAppUserId(),
|
||||||
recruitApply.getId(),
|
we.getId(),
|
||||||
SqlHelper.table(BgtProjectRecruitApply.class).getTableName()
|
SqlHelper.table(BgtProjectRecruitApply.class).getTableName()
|
||||||
);
|
);
|
||||||
return true;
|
return true;
|
||||||
|
Reference in New Issue
Block a user