|
|
|
@ -222,41 +222,6 @@ public class InspectionsLogServiceImpl implements InspectionsLogService {
|
|
|
|
|
return list; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 协作人员签到 |
|
|
|
|
* @param inspectionsLogId |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
public void cooperateWithSignIn(Long inspectionsLogId) { |
|
|
|
|
// 校验存在
|
|
|
|
|
InspectionsLogDO inspectionsLogDO = inspectionsLogMapper.selectById(inspectionsLogId); |
|
|
|
|
if (inspectionsLogDO == null) { |
|
|
|
|
throw exception(INSPECTIONS_LOG_NOT_EXISTS); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//查询真实名称并插入
|
|
|
|
|
AdminUserDO user = adminUserService.getUser(getLoginUserId()); |
|
|
|
|
if (user == null) { |
|
|
|
|
throw exception(USER_NOT_EXISTS); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 更新
|
|
|
|
|
if (inspectionsLogDO.getCooperateWithIds() == null ) { |
|
|
|
|
inspectionsLogDO.setCooperateWithIds(getLoginUserId().toString()); |
|
|
|
|
inspectionsLogDO.setCooperateWithName(user.getRealName()); |
|
|
|
|
} else { |
|
|
|
|
inspectionsLogDO.setCooperateWithIds(inspectionsLogDO.getCooperateWithIds() + "," + getLoginUserId()); |
|
|
|
|
inspectionsLogDO.setCooperateWithName(inspectionsLogDO.getCooperateWithName() + "," + user.getRealName()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
inspectionsLogMapper.updateById(inspectionsLogDO); |
|
|
|
|
|
|
|
|
|
//插入协同人员打卡记录表
|
|
|
|
|
SignInLogDO signInLogDO = new SignInLogDO(); |
|
|
|
|
signInLogDO.setInsId(inspectionsLogId); |
|
|
|
|
signInLogDO.setUserId(getLoginUserId()); |
|
|
|
|
signInLogMapper.insert(signInLogDO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void confirmSignIn(InspectionsLogSaveReqVO createReqVO) { |
|
|
|
|