diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/enterpriseinspections/EnterpriseInspectionsServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/enterpriseinspections/EnterpriseInspectionsServiceImpl.java index f1666f8..fa0f290 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/enterpriseinspections/EnterpriseInspectionsServiceImpl.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/enterpriseinspections/EnterpriseInspectionsServiceImpl.java @@ -273,11 +273,11 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe if (singnInLogList != null && singnInLogList.size() > 0) { final List collect = singnInLogList.stream().filter(signInLogDO -> signInLogDO.getIsInspect() == false).map(item2 -> item2.getRealName()).collect(Collectors.toList()); if (collect != null && collect.size() > 0) { - item.setCooperateWithName(collect.toString()); + item.setCooperateWithName(String.join(",", collect)); } final List collect2 = singnInLogList.stream().filter(signInLogDO -> signInLogDO.getIsInspect() == true).map(item2 -> item2.getRealName()).collect(Collectors.toList()); if (collect2 != null && collect2.size() > 0) { - item.setInspectName(collect2.toString()); + item.setInspectName(String.join(",", collect2)); } } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java index a7046a9..8984787 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java @@ -156,16 +156,66 @@ public class InspectionsLogServiceImpl implements InspectionsLogService { final PageResult inspectionsLogDOPageResult = inspectionsLogMapper.selectPage(pageReqVO); if (inspectionsLogDOPageResult.getList() != null && inspectionsLogDOPageResult.getList().size() > 0) { inspectionsLogDOPageResult.getList().forEach(item->{ - item.setUserList(this.getInspectionsLogAppListVO(item.getId())); + final EnterpriseInspectionsDO enterpriseInspectionsDO = enterpriseInspectionsMapper.selectById(item.getInspectionsId()); + if (enterpriseInspectionsDO == null) { + throw exception(ENTERPRISE_INSPECTIONS_NOT_EXISTS); + } + + + item.setUserList(this.getInspectionsLogAppListVO2(item.getId())); }); } + return inspectionsLogDOPageResult; } + + //封装 + public List getInspectionsLogAppListVO2(Long insId) { + List appListVO = new ArrayList<>(); + + //取最新一条签到状态 + LambdaQueryWrapper wrapper = new LambdaQueryWrapper<>(); + wrapper.eq(InspectionsLogDO::getStatus, 1); + wrapper.eq(InspectionsLogDO::getInspectionsId, insId); + wrapper.orderByDesc(InspectionsLogDO::getCreateTime); + final List list = inspectionsLogMapper.selectList(wrapper); + + if (list != null) { + final Long id = list.get(0).getId(); + final List signInLog = this.getSignInLog(id); + if (signInLog != null && signInLog.size() > 0) { + signInLog.forEach(signInLogDO->{ + final AdminUserDO user = adminUserService.getUser(signInLogDO.getUserId()); + if (user == null) { + throw exception(USER_NOT_EXISTS); + } + InspectionsLogAppListVO appListVO1 = new InspectionsLogAppListVO(); + appListVO1.setRealName(signInLogDO.getRealName()); + appListVO1.setTime(signInLogDO.getCreateTime()); + appListVO1.setUserId(signInLogDO.getUserId()); + appListVO1.setIsInspect(signInLogDO.getIsInspect()); + final DeptDO dept = deptService.getDept(user.getDeptId()); + if (dept != null) { + appListVO1.setDeptName(dept.getName()); + } + appListVO1.setAvtar(user.getAvatar()); + appListVO.add(appListVO1); + }); + } + } + + + return appListVO; + } + + //封装 public List getInspectionsLogAppListVO(Long insId) { List appListVO = new ArrayList<>(); + + //取最新一条签到状态 final List signInLog = this.getSignInLog(insId); if (signInLog != null && signInLog.size() > 0) { signInLog.forEach(signInLogDO->{ @@ -194,7 +244,19 @@ public class InspectionsLogServiceImpl implements InspectionsLogService { public List list(InspectionsLogPageReqVO pageReqVO) { QueryWrapper wrapper = new QueryWrapper<>(); wrapper.eq("inspections_id", pageReqVO.getInspectionsId()); - return inspectionsLogMapper.selectList(wrapper); + final List list = inspectionsLogMapper.selectList(wrapper); + if (list != null && list.size() > 0) { + //把签到记录起来 + List appListVO = new ArrayList<>(); + list.forEach(item->{ + if (item.getStatus() != null && item.getStatus() == 1) { + final List inspectionsLogAppListVO2 = this.getInspectionsLogAppListVO2(item.getInspectionsId()); + if (inspectionsLogAppListVO2 != null) {} + } + }); + + } + return list; } /** @@ -298,9 +360,9 @@ public class InspectionsLogServiceImpl implements InspectionsLogService { final InspectionsLogDO inspectionsLogDO = enterpriseInspectionsService.getInspectionsLogNew(inspectionsId); if (inspectionsLogDO != null) { //如果当前状态不是待确认打卡的状态报错 - if (inspectionsLogDO.getStatus() != 0) { - throw exception(SIGN_IN_LOG_ERROR3); - } +// if (inspectionsLogDO.getStatus() != 0) { +// throw exception(SIGN_IN_LOG_ERROR3); +// } //根据记录查询 return this.getInspectionsLogAppListVO(inspectionsLogDO.getId()); }