@ -3,17 +3,28 @@ package cn.iocoder.yudao.module.system.service.enterpriseinspections;
import cn.iocoder.yudao.module.system.dal.dataobject.dept.DeptDO ;
import cn.iocoder.yudao.module.system.dal.dataobject.enterprise.EnterpriseDO ;
import cn.iocoder.yudao.module.system.dal.dataobject.inspectionslog.InspectionsLogDO ;
import cn.iocoder.yudao.module.system.dal.dataobject.permission.RoleDO ;
import cn.iocoder.yudao.module.system.dal.dataobject.permission.UserRoleDO ;
import cn.iocoder.yudao.module.system.dal.dataobject.signinlog.SignInLogDO ;
import cn.iocoder.yudao.module.system.dal.dataobject.taglibrary.TagLibraryDO ;
import cn.iocoder.yudao.module.system.dal.dataobject.taskinfo.TaskInfoDO ;
import cn.iocoder.yudao.module.system.dal.dataobject.tasktag.TaskTagDO ;
import cn.iocoder.yudao.module.system.dal.dataobject.user.AdminUserDO ;
import cn.iocoder.yudao.module.system.dal.mysql.dept.DeptMapper ;
import cn.iocoder.yudao.module.system.dal.mysql.enterprise.EnterpriseMapper ;
import cn.iocoder.yudao.module.system.dal.mysql.inspectionslog.InspectionsLogMapper ;
import cn.iocoder.yudao.module.system.dal.mysql.permission.RoleMapper ;
import cn.iocoder.yudao.module.system.dal.mysql.permission.UserRoleMapper ;
import cn.iocoder.yudao.module.system.dal.mysql.signinlog.SignInLogMapper ;
import cn.iocoder.yudao.module.system.dal.mysql.taglibrary.TagLibraryMapper ;
import cn.iocoder.yudao.module.system.dal.mysql.taskinfo.TaskInfoMapper ;
import cn.iocoder.yudao.module.system.dal.mysql.tasktag.TaskTagMapper ;
import cn.iocoder.yudao.module.system.dal.mysql.user.AdminUserMapper ;
import cn.iocoder.yudao.module.system.service.dept.DeptService ;
import cn.iocoder.yudao.module.system.service.inspectionslog.InspectionsLogService ;
import cn.iocoder.yudao.module.system.service.taglibrary.TagLibraryService ;
import cn.iocoder.yudao.module.system.service.user.AdminUserService ;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper ;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper ;
import lombok.extern.slf4j.Slf4j ;
import org.springframework.stereotype.Service ;
@ -21,6 +32,8 @@ import org.springframework.validation.annotation.Validated;
import org.springframework.transaction.annotation.Transactional ;
import java.util.* ;
import java.util.stream.Collectors ;
import cn.iocoder.yudao.module.system.controller.admin.enterpriseinspections.vo.* ;
import cn.iocoder.yudao.module.system.dal.dataobject.enterpriseinspections.EnterpriseInspectionsDO ;
import cn.iocoder.yudao.framework.common.pojo.PageResult ;
@ -32,6 +45,8 @@ import cn.iocoder.yudao.module.system.dal.mysql.enterpriseinspections.Enterprise
import javax.annotation.Resource ;
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception ;
import static cn.iocoder.yudao.framework.security.core.util.SecurityFrameworkUtils.getLoginUser ;
import static cn.iocoder.yudao.framework.security.core.util.SecurityFrameworkUtils.getLoginUserId ;
import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.* ;
/ * *
@ -60,6 +75,16 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe
private AdminUserService adminUserService ;
@Resource
private DeptService deptService ;
@Resource
private TagLibraryService tagLibraryService ;
@Resource
private AdminUserMapper adminUserMapper ;
@Resource
private UserRoleMapper userRoleMapper ;
@Resource
private RoleMapper roleMapper ;
@Resource
private SignInLogMapper signInLogMapper ;
@Override
public Long createEnterpriseInspections ( EnterpriseInspectionsSaveReqVO createReqVO ) {
@ -70,6 +95,25 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe
return enterpriseInspections . getId ( ) ;
}
/ * *
* 根据执行记录id查询打卡记录
*
* @param inspectionsId
* @Author dx
* @Date 2025 - 02 - 14 上午11 : 55
* * /
public List < SignInLogDO > getSingnInLogList ( Long inspectionsId ) {
LambdaQueryWrapper < InspectionsLogDO > wrapper = new LambdaQueryWrapper < > ( ) ;
wrapper . eq ( InspectionsLogDO : : getInspectionsId , inspectionsId ) ;
wrapper . eq ( InspectionsLogDO : : getStatus , 1 ) ;
wrapper . orderByDesc ( InspectionsLogDO : : getCreateTime ) ;
List < InspectionsLogDO > list = inspectionsLogMapper . selectList ( wrapper ) ;
if ( list ! = null ) {
return signInLogMapper . selectList ( new LambdaQueryWrapper < SignInLogDO > ( ) . eq ( SignInLogDO : : getInsId , list . get ( 0 ) . getId ( ) ) ) ;
}
return Collections . emptyList ( ) ;
}
@Override
@ -88,7 +132,15 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe
// 删除
enterpriseInspectionsMapper . deleteById ( id ) ;
}
@Override
@Transactional ( rollbackFor = Exception . class )
public int deleteEnterpriseInspectionsTaskId ( Long taskId ) {
LambdaQueryWrapper < EnterpriseInspectionsDO > taskMembersDOLambdaQueryWrapper = new LambdaQueryWrapper < > ( ) ;
taskMembersDOLambdaQueryWrapper . eq ( EnterpriseInspectionsDO : : getTaskId , taskId ) ;
// 删除
return enterpriseInspectionsMapper . delete ( taskMembersDOLambdaQueryWrapper ) ;
}
private void validateEnterpriseInspectionsExists ( Long id ) {
if ( enterpriseInspectionsMapper . selectById ( id ) = = null ) {
throw exception ( ENTERPRISE_INSPECTIONS_NOT_EXISTS ) ;
@ -97,12 +149,93 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe
@Override
public EnterpriseInspectionsDO getEnterpriseInspections ( Long id ) {
return enterpriseInspectionsMapper . selectById ( id ) ;
final EnterpriseInspectionsDO enterpriseInspectionsDO = enterpriseInspectionsMapper . selectById ( id ) ;
if ( enterpriseInspectionsDO = = null ) {
throw exception ( ENTERPRISE_INSPECTIONS_NOT_EXISTS ) ;
}
final TaskInfoDO taskInfoDO = taskInfoMapper . selectById ( enterpriseInspectionsDO . getTaskId ( ) ) ;
if ( taskInfoDO = = null ) {
throw exception ( TASK_INFO_NOT_EXISTS ) ;
}
enterpriseInspectionsDO . setTaskName ( taskInfoDO . getTitle ( ) ) ;
enterpriseInspectionsDO . setTaskName ( taskInfoDO . getTitle ( ) ) ;
enterpriseInspectionsDO . setTaskNumber ( taskInfoDO . getTaskNumber ( ) ) ;
final EnterpriseDO enterpriseDO = enterpriseMapper . selectById ( enterpriseInspectionsDO . getEnterpriseId ( ) ) ;
if ( enterpriseDO = = null ) {
throw exception ( ENTERPRISE_NOT_EXISTS ) ;
}
//任务类型
enterpriseInspectionsDO . setEnterpriseName ( enterpriseDO . getEnterprisesName ( ) ) ;
final AdminUserDO user = adminUserService . getUser ( enterpriseInspectionsDO . getUserId ( ) ) ;
if ( user = = null ) {
throw exception ( USER_NOT_EXISTS ) ;
}
enterpriseInspectionsDO . setInspectName ( user . getRealName ( ) ) ;
final DeptDO dept = deptService . getDept ( user . getDeptId ( ) ) ;
enterpriseInspectionsDO . setDepartment ( dept . getName ( ) ) ;
return enterpriseInspectionsDO ;
}
@Override
public PageResult < EnterpriseInspectionsDO > getEnterpriseInspectionsPage ( EnterpriseInspectionsPageReqVO pageReqVO ) {
//根据角色显示不同
/ *
管理员 , 局长 , 查全部
检查员 , 查自己的
队长 查本部门
* /
Long loginUserId = getLoginUserId ( ) ;
final AdminUserDO user1 = adminUserService . getUser ( loginUserId ) ;
if ( user1 . getPostIds ( ) . contains ( 1l ) | | user1 . getPostIds ( ) . contains ( 2l ) ) {
//全部
} else if ( user1 . getPostIds ( ) . contains ( 4l ) ) {
//本部门
pageReqVO . setDepartmentId ( user1 . getDeptId ( ) ) ;
} else if ( user1 . getPostIds ( ) . contains ( 5l ) ) {
//自己
pageReqVO . setUserId ( loginUserId ) ;
}
//按照部门查询
if ( pageReqVO . getDepartmentId ( ) ! = null ) {
final List < AdminUserDO > adminUserDOS = adminUserMapper . selectList ( new QueryWrapper < AdminUserDO > ( ) . eq ( "dept_id" , pageReqVO . getDepartmentId ( ) ) ) ;
if ( adminUserDOS ! = null | | adminUserDOS . size ( ) > 0 ) {
final List < Long > collect = adminUserDOS . stream ( ) . map ( item - > item . getId ( ) ) . collect ( Collectors . toList ( ) ) ;
pageReqVO . setUserIds ( collect ) ;
}
}
//根据企业名称查询
if ( pageReqVO . getEnterpriseName ( ) ! = null ) {
LambdaQueryWrapper < EnterpriseDO > wrapper = new LambdaQueryWrapper < > ( ) ;
wrapper . like ( EnterpriseDO : : getEnterprisesName , pageReqVO . getEnterpriseName ( ) ) ;
final List < EnterpriseDO > enterpriseDOS = enterpriseMapper . selectList ( wrapper ) ;
if ( enterpriseDOS ! = null | | enterpriseDOS . size ( ) > 0 ) {
final List < Long > collect = enterpriseDOS . stream ( ) . map ( item - > item . getId ( ) ) . collect ( Collectors . toList ( ) ) ;
pageReqVO . setEnterpriseList ( collect ) ;
}
}
//根据任务名称查询
if ( pageReqVO . getTaskName ( ) ! = null ) {
LambdaQueryWrapper < TaskInfoDO > wrapper = new LambdaQueryWrapper < > ( ) ;
wrapper . like ( TaskInfoDO : : getTitle , pageReqVO . getTaskName ( ) ) ;
final List < TaskInfoDO > taskInfoDOS = taskInfoMapper . selectList ( wrapper ) ;
if ( taskInfoDOS ! = null | | taskInfoDOS . size ( ) > 0 ) {
final List < Long > collect = taskInfoDOS . stream ( ) . map ( item - > item . getId ( ) ) . collect ( Collectors . toList ( ) ) ;
pageReqVO . setTaskList ( collect ) ;
}
}
final PageResult < EnterpriseInspectionsDO > enterpriseInspectionsDOPageResult = enterpriseInspectionsMapper . selectPage ( pageReqVO ) ;
if ( enterpriseInspectionsDOPageResult . getList ( ) ! = null & & enterpriseInspectionsDOPageResult . getList ( ) . size ( ) > 0 ) {
enterpriseInspectionsDOPageResult . getList ( ) . forEach ( item - > {
@ -114,53 +247,73 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe
}
item . setTaskName ( taskInfoDO . getTitle ( ) ) ;
//查询任务标签
QueryWrapper < TaskTagDO > wrapper = new QueryWrapper < > ( ) ;
wrapper . eq ( "task_id" , taskInfoDO . getId ( ) ) ;
final List < TaskTagDO > taskTagDOS = taskTagMapper . selectList ( wrapper ) ;
List < String > tagList = new ArrayList < > ( ) ;
if ( taskTagDOS ! = null & & taskTagDOS . size ( ) > 0 ) {
taskTagDOS . forEach ( taskTagItem - > {
final TagLibraryDO tagLibraryDO = tagLibraryMapper . selectById ( taskTagItem . getTagId ( ) ) ;
if ( tagLibraryDO ! = null ) {
tagList . add ( tagLibraryDO . getTagName ( ) ) ;
}
} ) ;
}
item . setTagList ( tagList ) ;
//查询企业
final EnterpriseDO enterpriseDO = enterpriseMapper . selectById ( item . getEnterpriseId ( ) ) ;
if ( enterpriseDO = = null ) {
throw exception ( ENTERPRISE_NOT_EXISTS ) ;
}
//查询企业标签
final List < TagLibraryDO > tagLibraryDOS = tagLibraryService . listByEnterpriseId ( enterpriseDO . getId ( ) ) ;
if ( tagLibraryDOS ! = null ) {
item . setTagList ( tagLibraryDOS . stream ( ) . map ( TagLibraryDO : : getTagName ) . collect ( Collectors . toList ( ) ) ) ;
}
item . setEnterpriseName ( enterpriseDO . getEnterprisesName ( ) ) ;
item . setEnterpriseAddress ( enterpriseDO . getAddress ( ) ) ;
//查询执行的最新一条记录
final InspectionsLogDO inspectionsLogNew = this . getInspectionsLogNew ( item . getId ( ) ) ;
if ( inspectionsLogNew ! = null ) {
item . setInspectionStatus ( inspectionsLogNew . getStatus ( ) ) ;
//执行人,协同执法
//查询打卡记录
final List < SignInLogDO > singnInLogList = this . getSingnInLogList ( item . getId ( ) ) ;
if ( singnInLogList ! = null & & singnInLogList . size ( ) > 0 ) {
final List < String > collect = singnInLogList . stream ( ) . filter ( signInLogDO - > signInLogDO . getIsInspect ( ) = = false ) . map ( item2 - > item2 . getRealName ( ) ) . collect ( Collectors . toList ( ) ) ;
if ( collect ! = null & & collect . size ( ) > 0 ) {
item . setCooperateWithName ( String . join ( "," , collect ) ) ;
}
final List < String > collect2 = singnInLogList . stream ( ) . filter ( signInLogDO - > signInLogDO . getIsInspect ( ) = = true ) . map ( item2 - > item2 . getRealName ( ) ) . collect ( Collectors . toList ( ) ) ;
if ( collect2 ! = null & & collect2 . size ( ) > 0 ) {
item . setInspectName ( String . join ( "," , collect2 ) ) ;
}
}
//查询检查记录
QueryWrapper < InspectionsLogDO > inspectionsLogWrapper = new QueryWrapper < > ( ) ;
inspectionsLogWrapper . eq ( "inspections_id" , item . getId ( ) ) ;
inspectionsLogWrapper . orderByDesc ( "create_time" ) ;
final List < InspectionsLogDO > inspectionsLogDOS = inspectionsLogMapper . selectList ( inspectionsLogWrapper ) ;
if ( inspectionsLogDOS ! = null & & inspectionsLogDOS . size ( ) > 0 ) {
item . setInspectionStatus ( inspectionsLogDOS . get ( 0 ) . getStatus ( ) ) ;
item . setInspectName ( inspectionsLogDOS . get ( 0 ) . getInspectName ( ) ) ;
item . setCooperateWithName ( inspectionsLogDOS . get ( 0 ) . getCooperateWithName ( ) ) ;
item . setExecTime ( inspectionsLogDOS . get ( 0 ) . getCreateTime ( ) ) ;
item . setExecTime ( inspectionsLogNew . getCreateTime ( ) ) ;
//根据执法人员id 查询其所属部门
final Long userId = Long . valueOf ( inspectionsLogDOS . get ( 0 ) . getCreator ( ) ) ;
final Long userId = Long . valueOf ( inspectionsLogNew . getCreator ( ) ) ;
final AdminUserDO user = adminUserService . getUser ( userId ) ;
if ( user = = null ) {
throw exception ( USER_NOT_EXISTS ) ;
}
final DeptDO dept = deptService . getDept ( user . getDeptId ( ) ) ;
item . setDepartment ( dept . getName ( ) ) ;
} else {
//根据执法人员id 查询其所属部门
if ( item . getUserId ( ) ! = null ) {
final Long userId = Long . valueOf ( item . getUserId ( ) ) ;
final AdminUserDO user = adminUserService . getUser ( userId ) ;
item . setInspectName ( user . getRealName ( ) ) ;
if ( user = = null ) {
throw exception ( USER_NOT_EXISTS ) ;
}
}
}
} ) ;
}
if ( pageReqVO . getInspectionsStatus ( ) ! = null ) {
final List < EnterpriseInspectionsDO > collect = enterpriseInspectionsDOPageResult . getList ( ) . stream ( ) . filter ( item - > item . getInspectionStatus ( ) = = pageReqVO . getInspectionsStatus ( ) ) . collect ( Collectors . toList ( ) ) ;
enterpriseInspectionsDOPageResult . setList ( collect ) ;
enterpriseInspectionsDOPageResult . setTotal ( Long . valueOf ( collect . size ( ) ) ) ;
}
return enterpriseInspectionsDOPageResult ;
}
@ -174,6 +327,11 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe
//循环记录id列表
passOnSaveVO . getInspectionsId ( ) . forEach ( item - > {
final EnterpriseInspectionsDO enterpriseInspectionsDO = enterpriseInspectionsMapper . selectById ( item ) ;
if ( enterpriseInspectionsDO . getUserId ( ) = = passOnSaveVO . getUserId ( ) ) {
throw exception ( ENTERPRISE_INSPECTIONS_STATUS_ERROR2 ) ;
}
if ( enterpriseInspectionsDO = = null ) {
throw exception ( ENTERPRISE_INSPECTIONS_NOT_EXISTS ) ;
}
@ -186,32 +344,54 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe
//已经开始 就要判断是否是整改状态 整改状态才能转
enterpriseInspectionsDO . setStatus ( 4 ) ;
} else {
enterpriseInspectionsDO . setStatus ( 3 ) ;
enterpriseInspectionsDO . setStatus ( 1 ) ;
enterpriseInspectionsDO . setUserId ( passOnSaveVO . getUserId ( ) ) ;
}
enterpriseInspectionsMapper . updateById ( enterpriseInspectionsDO ) ;
AdminUserDO user = adminUserService . getUser ( passOnSaveVO . getUserId ( ) ) ;
if ( user = = null ) {
throw exception ( USER_NOT_EXISTS ) ;
}
EnterpriseInspectionsDO inspectionsDO = new EnterpriseInspectionsDO ( ) ;
inspectionsDO . setEnterpriseId ( enterpriseInspectionsDO . getEnterpriseId ( ) ) ;
inspectionsDO . setTaskId ( enterpriseInspectionsDO . getTaskId ( ) ) ;
// if (enterpriseInspectionsDO.getStatus() == 4) {
// AdminUserDO user = adminUserService.getUser(passOnSaveVO.getUserId());
// if (user == null) {
// throw exception(USER_NOT_EXISTS);
// }
// EnterpriseInspectionsDO inspectionsDO = new EnterpriseInspectionsDO();
// inspectionsDO.setEnterpriseId(enterpriseInspectionsDO.getEnterpriseId());
// inspectionsDO.setTaskId(enterpriseInspectionsDO.getTaskId());
// inspectionsDO.setUserId(passOnSaveVO.getUserId());
// inspectionsDO.setInspectName(user.getRealName());
// enterpriseInspectionsMapper.insert(inspectionsDO);
// }
inspectionsDO . setUserId ( passOnSaveVO . getUserId ( ) ) ;
inspectionsDO . setInspectName ( user . getRealName ( ) ) ;
enterpriseInspectionsMapper . insert ( inspectionsDO ) ;
} else {
throw exception ( ENTERPRISE_INSPECTIONS_STATUS_ERROR ) ;
}
} ) ;
}
@Override
public List < EnterpriseInspectionsDO > getListByUserIdAndTaskName ( Long userId , String taskName ) {
LambdaQueryWrapper < EnterpriseInspectionsDO > wrapper = new LambdaQueryWrapper < > ( ) ;
wrapper . eq ( EnterpriseInspectionsDO : : getUserId , userId ) ;
wrapper . eq ( EnterpriseInspectionsDO : : getTaskName , taskName ) ;
final List < EnterpriseInspectionsDO > enterpriseInspectionsDOS = enterpriseInspectionsMapper . selectList ( wrapper ) ;
//筛选出可以转交的检查记录
List < EnterpriseInspectionsDO > list = new ArrayList < > ( ) ;
if ( enterpriseInspectionsDOS ! = null & & enterpriseInspectionsDOS . size ( ) > 0 ) {
enterpriseInspectionsDOS . forEach ( item - > {
final InspectionsLogDO inspectionsLogNew = this . getInspectionsLogNew ( item . getId ( ) ) ;
if ( inspectionsLogNew = = null | | inspectionsLogNew . getStatus ( ) = = 3 ) {
//已经开始 就要判断是否是整改状态 整改状态才能转
list . add ( item ) ;
}
} ) ;
}
return list ;
}
//获得检测记录最新一条
@Override
public InspectionsLogDO getInspectionsLogNew ( Long inspectionsId ) {
QueryWrapper < InspectionsLogDO > wrapper = new QueryWrapper < > ( ) ;
wrapper . eq ( "inspections_id" , inspectionsId ) ;
@ -221,7 +401,52 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe
return null ;
}
return inspectionsLogDOS . get ( 0 ) ;
}
@Override
public List < EnterpriseInspectionsDO > getEnterpriseInspectionsList ( EnterpriseInspectionsPageReqVO pageReqVO ) {
return enterpriseInspectionsMapper . selectList ( pageReqVO ) ;
}
@Override
public List < SelectUserChangeVO > changeSelectUser ( Long deptId ) {
List < SelectUserChangeVO > list = new ArrayList < > ( ) ;
List < AdminUserDO > adminUserDOS ;
LambdaQueryWrapper < AdminUserDO > wrapper = new LambdaQueryWrapper < > ( ) ;
wrapper . isNotNull ( AdminUserDO : : getRealName ) ;
wrapper . ne ( AdminUserDO : : getId , 1L ) ;
if ( deptId ! = null ) {
wrapper . eq ( AdminUserDO : : getDeptId , deptId ) ;
}
adminUserDOS = adminUserMapper . selectList ( wrapper ) ;
if ( adminUserDOS ! = null & & adminUserDOS . size ( ) > 0 ) {
adminUserDOS . forEach ( item - > {
SelectUserChangeVO userChangeVO = new SelectUserChangeVO ( ) ;
userChangeVO . setUserId ( item . getId ( ) ) ;
userChangeVO . setRealName ( item . getRealName ( ) ) ;
userChangeVO . setAvatar ( item . getAvatar ( ) ) ;
QueryWrapper < UserRoleDO > roleDOQueryWrapper = new QueryWrapper < > ( ) ;
roleDOQueryWrapper . eq ( "user_id" , item . getId ( ) ) ;
List < UserRoleDO > userRoleDOS = userRoleMapper . selectList ( roleDOQueryWrapper ) ;
if ( userRoleDOS ! = null & & userRoleDOS . size ( ) > 0 ) {
//查询角色名称
List < Long > roleIds = userRoleDOS . stream ( ) . map ( UserRoleDO : : getRoleId ) . collect ( Collectors . toList ( ) ) ;
List < RoleDO > roleDOS = roleMapper . selectBatchIds ( roleIds ) ;
if ( roleDOS ! = null & & roleDOS . size ( ) > 0 ) {
List < String > roleNames = roleDOS . stream ( ) . map ( RoleDO : : getName ) . collect ( Collectors . toList ( ) ) ;
userChangeVO . setRoleName ( roleNames ) ;
}
}
list . add ( userChangeVO ) ;
} ) ;
} ;
return list ;
}
}