From 10df7e29b51d6a2efacc83d870856f57d97a9b66 Mon Sep 17 00:00:00 2001 From: yanghui <2536613402@qq.com> Date: 星期一, 24 十月 2022 13:48:24 +0800 Subject: [PATCH] #feat 修改别名 --- springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java | 82 ++++++++++++++++++++++++++++++++++++----- 1 files changed, 72 insertions(+), 10 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java index 529c53e..21c87c0 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java @@ -1,27 +1,30 @@ package com.panzhihua.service_dangjian.service.impl; +import cn.hutool.core.collection.CollUtil; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.google.common.collect.Lists; import com.panzhihua.common.enums.ComPbCheckUnitTypeEnum; +import com.panzhihua.common.model.dtos.common.AddComPbCheckUnitDto; +import com.panzhihua.common.model.dtos.common.EditComPbCheckUnitDto; +import com.panzhihua.common.model.dtos.common.PageComPbCheckUnitDto; +import com.panzhihua.common.model.dtos.common.PagePbCheckUnitCommonDto; +import com.panzhihua.common.model.vos.R; import com.panzhihua.common.model.vos.common.ComPbCheckUnitVo; import com.panzhihua.common.model.vos.partybuilding.excel.ComPbCheckUnitErrorExcelVO; import com.panzhihua.common.model.vos.partybuilding.excel.ComPbCheckUnitExcelVO; import com.panzhihua.common.utlis.StringUtils; +import com.panzhihua.service_dangjian.dao.ComPbCheckUnitMapper; import com.panzhihua.service_dangjian.dao.ComPbMemberDAO; import com.panzhihua.service_dangjian.dao.ComPbMemberRoleDAO; import com.panzhihua.service_dangjian.entity.ComPbCheckUnit; -import com.panzhihua.service_dangjian.dao.ComPbCheckUnitMapper; import com.panzhihua.service_dangjian.model.dos.ComPbMemberDO; import com.panzhihua.service_dangjian.model.dos.ComPbMemberRoleDO; import com.panzhihua.service_dangjian.service.ComPbCheckUnitService; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import com.panzhihua.service_dangjian.service.ComPbMemberService; import org.springframework.beans.BeanUtils; -import com.panzhihua.common.model.dtos.common.*; -import com.panzhihua.common.model.vos.R; import org.springframework.stereotype.Service; -import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import org.springframework.transaction.annotation.Transactional; import javax.annotation.Resource; @@ -46,8 +49,7 @@ private ComPbMemberDAO comPbMemberDAO; @Resource private ComPbMemberRoleDAO comPbMemberRoleDAO; - @Resource - private ComPbMemberService comPbMemberService; + /** * description queryByPage 分页查询 @@ -59,6 +61,16 @@ */ @Override public R queryByPage(PageComPbCheckUnitDto comPbCheckUnit) { + + Long communityId = comPbCheckUnit.getCommunityId(); + if (communityId != null){ + List<Long> communityIds = comPbMemberDAO.selectIds(communityId); + if (CollUtil.isEmpty(communityIds)) { + communityIds = new ArrayList<>(); + communityIds.add(communityId); + } + comPbCheckUnit.setCommunityIds(communityIds); + } IPage<ComPbCheckUnitVo> checkUnitVoPage= this.baseMapper.queryAllByLimit(comPbCheckUnit, new Page(comPbCheckUnit.getPageNum(), comPbCheckUnit.getPageSize())); checkUnitVoPage.getRecords().forEach(checkUnit -> { if(StringUtils.isEmpty(checkUnit.getOrgName())){ @@ -168,6 +180,15 @@ */ @Override public R queryByList(PageComPbCheckUnitDto comPbCheckUnit) { + Long communityId = comPbCheckUnit.getCommunityId(); + if (communityId != null){ + List<Long> communityIds = comPbMemberDAO.selectIds(communityId); + if (CollUtil.isEmpty(communityIds)) { + communityIds = new ArrayList<>(); + communityIds.add(communityId); + } + comPbCheckUnit.setCommunityIds(communityIds); + } IPage<ComPbCheckUnitVo> checkUnitList = this.baseMapper.queryAllByLimit(comPbCheckUnit,new Page(comPbCheckUnit.getPageNum(),comPbCheckUnit.getPageSize())); checkUnitList.getRecords().forEach(checkUnit -> { if(StringUtils.isEmpty(checkUnit.getOrgName())){ @@ -246,7 +267,15 @@ */ @Override public R unitStatisticsTop(Long communityId, String belongTo, String choice) { - return R.ok(this.baseMapper.unitStatisticsTop(communityId, belongTo, choice)); + List<Long> communityIds = new ArrayList<>(); + if (null != communityId){ + communityIds = comPbMemberDAO.selectIds(communityId); + if (CollUtil.isEmpty(communityIds)) { + communityIds.add(communityId); + } + } + + return R.ok(this.baseMapper.unitStatisticsTop(communityIds, belongTo, choice)); } /** @@ -256,6 +285,15 @@ */ @Override public R unitStatistics(PagePbCheckUnitCommonDto commonDto) { + Long communityId = commonDto.getCommunityId(); + if (null != communityId) { + List<Long> communityIds = comPbMemberDAO.selectIds(communityId); + if (CollUtil.isEmpty(communityIds)) { + communityIds = new ArrayList<>(); + communityIds.add(communityId); + } + commonDto.setCommunityIds(communityIds); + } return R.ok(this.baseMapper.unitStatistics(commonDto, new Page(commonDto.getPageNum(), commonDto.getPageSize()))); } @@ -269,7 +307,15 @@ */ @Override public R pbStatisticsTop(Long communityId, String belongTo, String choice, Long checkUnitId) { - return R.ok(this.baseMapper.pbStatisticsTop(communityId, belongTo, choice, checkUnitId)); + + List<Long> communityIds = new ArrayList<>(); + if (null != communityId){ + communityIds = comPbMemberDAO.selectIds(communityId); + if (CollUtil.isEmpty(communityIds)) { + communityIds.add(communityId); + } + } + return R.ok(this.baseMapper.pbStatisticsTop(communityIds, belongTo, choice, checkUnitId)); } /** @@ -279,6 +325,15 @@ */ @Override public R pbStatisticsBelong(PagePbCheckUnitCommonDto commonDto) { + Long communityId = commonDto.getCommunityId(); + if (null != communityId) { + List<Long> communityIds = comPbMemberDAO.selectIds(communityId); + if (CollUtil.isEmpty(communityIds)) { + communityIds = new ArrayList<>(); + communityIds.add(communityId); + } + commonDto.setCommunityIds(communityIds); + } return R.ok(this.baseMapper.pbStatisticsBelong(commonDto, new Page(commonDto.getPageNum(), commonDto.getPageSize()))); } @@ -289,6 +344,13 @@ */ @Override public R pbStatisticsUnit(PagePbCheckUnitCommonDto commonDto) { + Long communityId = commonDto.getCommunityId(); + List<Long> communityIds = comPbMemberDAO.selectIds(communityId); + if (CollUtil.isEmpty(communityIds)) { + communityIds = new ArrayList<>(); + communityIds.add(communityId); + } + commonDto.setCommunityIds(communityIds); return R.ok(this.baseMapper.pbStatisticsUnit(commonDto, new Page(commonDto.getPageNum(), commonDto.getPageSize()))); } } -- Gitblit v1.7.1