Browse Source

打卡记录修改

master
DX 2 months ago
parent
commit
f989260daf
  1. 11
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java

11
yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java

@ -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);
}
}

Loading…
Cancel
Save