|
|
|
@ -23,6 +23,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; |
|
|
|
@ -146,6 +148,26 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe
|
|
|
|
|
@Override |
|
|
|
|
public PageResult<EnterpriseInspectionsDO> getEnterpriseInspectionsPage(EnterpriseInspectionsPageReqVO pageReqVO) { |
|
|
|
|
|
|
|
|
|
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->{ |
|
|
|
|