|
|
|
@ -108,7 +108,16 @@ public class InspectionsLogServiceImpl implements InspectionsLogService {
|
|
|
|
|
throw exception(SIGN_IN_LOG_ERROR2); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
signInLogMapper.insert(new SignInLogDO().setInsId(inspectionsLogNew.getId()).setUserId(loginUserId).setRealName(user.getRealName())); |
|
|
|
|
final SignInLogDO signInLogDO = new SignInLogDO(); |
|
|
|
|
signInLogDO.setInsId(inspectionsLogNew.getId()); |
|
|
|
|
signInLogDO.setUserId(loginUserId); |
|
|
|
|
signInLogDO.setRealName(user.getRealName()); |
|
|
|
|
signInLogDO.setGpsLocation(createReqVO.getGpsLocation()); |
|
|
|
|
if (loginUserId == inspections.getUserId()) { |
|
|
|
|
signInLogDO.setIsInspect(true); |
|
|
|
|
} |
|
|
|
|
signInLogMapper.insert(signInLogDO); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|