@ -16,11 +16,14 @@
* /
package com.logpm.supervise.service.impl ;
import com.alibaba.excel.EasyExcel ;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper ;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper ;
import com.baomidou.mybatisplus.core.metadata.IPage ;
import com.baomidou.mybatisplus.core.toolkit.Wrappers ;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page ;
import com.logpm.supervise.dto.ClassifyDTO ;
import com.logpm.supervise.dto.ImportClassifyDTO ;
import com.logpm.supervise.dto.IndicatorsDTO ;
import com.logpm.supervise.entity.ClassifyEntity ;
import com.logpm.supervise.entity.IndicatorsAnnexEntity ;
@ -42,6 +45,8 @@ import com.logpm.supervise.wrapper.IndicatorsWrapper;
import com.logpm.supervise.wrapper.PointsWrapper ;
import lombok.AllArgsConstructor ;
import lombok.extern.slf4j.Slf4j ;
import org.springblade.common.constant.common.IsOrNoConstant ;
import org.springblade.common.exception.CustomerException ;
import org.springblade.common.utils.CommonUtil ;
import org.springblade.core.mp.base.BaseServiceImpl ;
import org.springblade.core.secure.BladeUser ;
@ -58,7 +63,10 @@ import org.springblade.system.feign.ISysClient;
import org.springblade.system.feign.IUserClient ;
import org.springframework.stereotype.Service ;
import org.springframework.transaction.annotation.Transactional ;
import org.springframework.web.multipart.MultipartFile ;
import java.io.IOException ;
import java.io.InputStream ;
import java.util.* ;
import java.util.stream.Collectors ;
@ -95,19 +103,40 @@ public class ClassifyServiceImpl extends BaseServiceImpl<ClassifyMapper, Classif
String pId = ( String ) classify . get ( "pid" ) ;
String name = ( String ) classify . get ( "name" ) ;
String isPid = ( String ) classify . get ( "isPid" ) ;
String createDeptName = ( String ) classify . get ( "createDeptName" ) ;
String examineDeptName = ( String ) classify . get ( "examineDeptName" ) ;
ClassifyDTO classifyDTO = new ClassifyDTO ( ) ;
if ( StringUtil . isNotBlank ( pId ) ) {
classifyDTO . setPId ( Long . parseLong ( pId ) ) ;
}
Long createDept = deptClient . findIdByName ( createDeptName ) ;
classifyDTO . setName ( name ) ;
classifyDTO . setIsPid ( Integer . parseInt ( isPid ) ) ;
classifyDTO . setCreateDept ( createDept ) ;
classifyDTO . setExamineDeptName ( examineDeptName ) ;
IPage < ClassifyVO > pages = baseMapper . pageList ( page , classifyDTO ) ;
List < ClassifyVO > records = pages . getRecords ( ) ;
if ( ! "1" . equals ( isPid ) ) {
for ( ClassifyVO record : records ) {
String loginDeptId = AuthUtil . getDeptId ( ) ;
for ( ClassifyVO record : records ) {
Long deptId = record . getCreateDept ( ) ;
String deptName = deptClient . findNameById ( deptId ) ;
record . setCreateDeptName ( deptName ) ;
String ancestors = deptClient . getAncestorsByDeptId ( deptId ) ;
boolean contains = ancestors . contains ( loginDeptId ) ;
if ( contains ) {
record . setIsEdit ( 1 ) ;
} else {
record . setIsEdit ( 0 ) ;
}
if ( ! "1" . equals ( isPid ) ) {
Long classifyId = record . getId ( ) ;
Long pId1 = record . getPId ( ) ;
ClassifyEntity classifyEntity = getById ( pId1 ) ;
@ -174,6 +203,8 @@ public class ClassifyServiceImpl extends BaseServiceImpl<ClassifyMapper, Classif
classifyEntity . setDescription ( classifyDTO . getDescription ( ) ) ;
classifyEntity . setRemark ( classifyDTO . getRemark ( ) ) ;
classifyEntity . setPId ( classifyDTO . getPId ( ) ) ;
classifyEntity . setExamineDeptId ( classifyDTO . getExamineDeptId ( ) ) ;
classifyEntity . setExamineDeptName ( classifyDTO . getExamineDeptName ( ) ) ;
updateById ( classifyEntity ) ;
//先删除所有积分
@ -211,19 +242,37 @@ public class ClassifyServiceImpl extends BaseServiceImpl<ClassifyMapper, Classif
}
@Override
public List < ClassifyApiVO > selectClassifyList ( ) {
public List < ClassifyApiVO > selectClassifyList ( String deptId ) {
Long pid = 0L ;
List < ClassifyApiVO > classifyEntities = getClassifyList ( pid ) ;
List < Long > listId = new ArrayList < > ( ) ;
List < ClassifyApiVO > classifyEntities = getClassifyList ( pid , null ) ;
for ( ClassifyApiVO classifyEntity : classifyEntities ) {
if ( classifyEntity . getPId ( ) . equals ( 0L ) ) {
List < ClassifyApiVO > classifyList = new ArrayList < > ( ) ;
List < ClassifyEntity > entityList = this . list ( Wrappers . < ClassifyEntity > query ( ) . lambda ( )
LambdaQueryWrapper < ClassifyEntity > ne = Wrappers . < ClassifyEntity > query ( ) . lambda ( )
. eq ( ClassifyEntity : : getPId , classifyEntity . getId ( ) )
. ne ( ClassifyEntity : : getPId , 0L )
. ne ( ClassifyEntity : : getPId , 0L ) ;
if ( Func . isNotBlank ( deptId ) ) {
ne . in ( ClassifyEntity : : getExamineDeptId , Func . toLongList ( deptId ) ) ;
//查询是否已经提交过考核
listId = Func . toLongList ( deptId ) ;
}
List < ClassifyEntity > entityList = this . list ( ne
) ;
for ( ClassifyEntity entity : entityList ) {
ClassifyVO classifyVO = ClassifyWrapper . build ( ) . entityVO ( entity ) ;
ClassifyApiVO classifyApiVO = Func . copy ( classifyVO , ClassifyApiVO . class ) ;
classifyApiVO . setIsCommit ( 0 ) ;
if ( Func . isNotEmpty ( listId ) ) {
Long l = listId . get ( listId . size ( ) - 1 ) ;
List < IndicatorsEntity > indicatorsEntityList = iIndicatorsService . list ( Wrappers . < IndicatorsEntity > query ( ) . lambda ( )
. eq ( IndicatorsEntity : : getAssessDept , l )
. eq ( IndicatorsEntity : : getClassifyId , entity . getId ( ) )
) ;
if ( Func . isNotEmpty ( indicatorsEntityList ) & & indicatorsEntityList . size ( ) > = 1 ) {
classifyApiVO . setIsCommit ( 1 ) ;
}
}
List < PointsEntity > list = pointsService . list ( Wrappers . < PointsEntity > query ( ) . lambda ( )
. eq ( PointsEntity : : getClassifyId , entity . getId ( ) )
) ;
@ -233,10 +282,13 @@ public class ClassifyServiceImpl extends BaseServiceImpl<ClassifyMapper, Classif
}
classifyList . add ( classifyApiVO ) ;
}
classifyEntity . setChildren ( classifyList ) ;
if ( Func . isNotEmpty ( classifyList ) ) {
classifyEntity . setChildren ( classifyList ) ;
}
}
}
return classifyEntities ;
List < ClassifyApiVO > collect = classifyEntities . stream ( ) . filter ( f - > Func . isNotEmpty ( f . getChildren ( ) ) ) . collect ( Collectors . toList ( ) ) ;
return collect ;
}
@Override
@ -320,7 +372,7 @@ public class ClassifyServiceImpl extends BaseServiceImpl<ClassifyMapper, Classif
}
@Override
public R myApiIndicatorsDetail ( Long id ) {
public R myApiIndicatorsDetail ( Long id , Long classifyId ) {
IndicatorsEntity indicatorsEntity = iIndicatorsService . getById ( id ) ;
//查询是否存在有附件
List < IndicatorsAnnexEntity > list = indicatorsAnnexService . list ( Wrappers . < IndicatorsAnnexEntity > query ( ) . lambda ( ) . eq ( IndicatorsAnnexEntity : : getIndicatorsId , id ) ) ;
@ -329,6 +381,39 @@ public class ClassifyServiceImpl extends BaseServiceImpl<ClassifyMapper, Classif
if ( Func . isNotEmpty ( userR ) ) {
indicatorsVO . setCreatedUserName ( userR . getData ( ) . getName ( ) ) ;
}
if ( Func . isEmpty ( classifyId ) ) {
log . error ( "myApiIndicatorsDetail##########参数缺失,classifyId" ) ;
return R . fail ( "请联系管理员" ) ;
}
//处理指标项
ClassifyEntity byId = this . getById ( classifyId ) ;
if ( Func . isNotEmpty ( indicatorsVO ) ) {
// Long classifyId = indicatorsVO.getClassifyId();
if ( Func . isNotEmpty ( byId ) ) {
indicatorsVO . setClassifyId ( byId . getId ( ) ) ;
indicatorsVO . setClassifyName ( byId . getName ( ) ) ;
indicatorsVO . setDeduction ( byId . getDescription ( ) ) ;
List < PointsEntity > pointsEntities = pointsService . list ( Wrappers . < PointsEntity > query ( ) . lambda ( )
. eq ( PointsEntity : : getClassifyId , byId . getId ( ) )
) ;
if ( Func . isNotEmpty ( pointsEntities ) ) {
assert pointsEntities ! = null ;
indicatorsVO . setPointsVOS ( PointsWrapper . build ( ) . listVO ( pointsEntities ) ) ;
}
ClassifyEntity penantClassifyEntity = this . getOne ( Wrappers . < ClassifyEntity > query ( ) . lambda ( ) . eq ( ClassifyEntity : : getId , byId . getPId ( ) ) ) ;
if ( Func . isNotEmpty ( penantClassifyEntity ) ) {
indicatorsVO . setParentClassifyId ( penantClassifyEntity . getId ( ) ) ;
indicatorsVO . setParentClassifyName ( penantClassifyEntity . getName ( ) ) ;
}
}
} else {
log . info ( "###########查询考核指标项classifyId:{}" , classifyId ) ;
indicatorsVO = new IndicatorsVO ( ) ;
indicatorsVO . setClassifyId ( byId . getId ( ) ) ;
indicatorsVO . setClassifyName ( byId . getName ( ) ) ;
indicatorsVO . setDeduction ( byId . getDescription ( ) ) ;
}
if ( Func . isNotEmpty ( list ) ) {
Map < Integer , List < IndicatorsAnnexEntity > > resourceMap = list . stream ( ) . filter ( item - > ! Objects . isNull ( item . getType ( ) ) ) . collect ( Collectors . groupingBy ( IndicatorsAnnexEntity : : getType ) ) ;
if ( Func . isNotEmpty ( resourceMap . get ( 1 ) ) ) {
@ -356,6 +441,17 @@ public class ClassifyServiceImpl extends BaseServiceImpl<ClassifyMapper, Classif
handleResource ( instanceofDTO . getResourceList ( ) , instanceofDTO . getId ( ) ) ;
}
IndicatorsEntity indicatorsEntity = Func . copy ( instanceofDTO , IndicatorsEntity . class ) ;
if ( 2 = = indicatorsEntity . getIndicatorsStatus ( ) ) {
return R . fail ( "已确认考核无法进行修改" ) ;
}
if ( Func . isNotEmpty ( instanceofDTO . getAppealReason ( ) ) ) {
indicatorsEntity . setIsObjection ( 1 ) ;
}
if ( Func . isNotEmpty ( instanceofDTO . getIsCommit ( ) ) ) {
if ( 1 = = instanceofDTO . getIsCommit ( ) ) {
indicatorsEntity . setIndicatorsStatus ( 2 ) ;
}
}
return R . status ( iIndicatorsService . updateById ( indicatorsEntity ) ) ;
}
@ -406,11 +502,101 @@ public class ClassifyServiceImpl extends BaseServiceImpl<ClassifyMapper, Classif
@Override
public R deptList ( ) {
BladeUser user = AuthUtil . getUser ( ) ;
// List<DeptVO> deptTree = deptClient.getDeptTree(user.getTenantId());
List < Dept > userDeptNode = deptClient . getUserDeptNode ( Long . parseLong ( user . getDeptId ( ) ) ) ;
return R . data ( userDeptNode ) ;
}
private List < ClassifyApiVO > getClassifyList ( Long pid ) {
return baseMapper . selectAllClassifyList ( pid ) ;
@Transactional ( rollbackFor = Exception . class )
@Override
public R importClassify ( MultipartFile file ) throws IOException {
if ( Objects . isNull ( file ) ) {
log . warn ( "##################importClassify: 文件不存在" ) ;
return R . fail ( 405 , "文件不存在" ) ;
}
InputStream inputStream = file . getInputStream ( ) ;
List < ImportClassifyDTO > importClassifyDTOS = EasyExcel . read ( inputStream ) . head ( ImportClassifyDTO . class ) . sheet ( 0 ) . headRowNumber ( 1 ) . doReadSync ( ) ;
for ( ImportClassifyDTO importClassifyDTO : importClassifyDTOS ) {
String parentClassifyName = importClassifyDTO . getParentClassifyName ( ) ;
String parentClassifyDesc = importClassifyDTO . getParentClassifyDesc ( ) ;
String parentClassifyRemark = importClassifyDTO . getParentClassifyRemark ( ) ;
String createDeptName = importClassifyDTO . getCreateDeptName ( ) ;
Long createDeptId = deptClient . findIdByName ( createDeptName ) ;
//判断指标分类是否已经存在
QueryWrapper < ClassifyEntity > queryWrapper = new QueryWrapper < > ( ) ;
queryWrapper . eq ( "name" , parentClassifyName )
. eq ( "p_id" , 0 )
. eq ( "is_deleted" , 0 ) ;
ClassifyEntity parnetClassifyEntity = baseMapper . selectOne ( queryWrapper ) ;
if ( Objects . isNull ( parnetClassifyEntity ) ) {
parnetClassifyEntity = new ClassifyEntity ( ) ;
parnetClassifyEntity . setName ( parentClassifyName ) ;
parnetClassifyEntity . setDescription ( parentClassifyDesc ) ;
parnetClassifyEntity . setRemark ( parentClassifyRemark ) ;
parnetClassifyEntity . setPId ( 0L ) ;
parnetClassifyEntity . setCreateDept ( createDeptId ) ;
} else {
parnetClassifyEntity . setDescription ( parentClassifyDesc ) ;
parnetClassifyEntity . setRemark ( parentClassifyRemark ) ;
}
boolean pb = saveOrUpdate ( parnetClassifyEntity ) ;
if ( ! pb ) {
log . warn ( "#############importClassify: 保存指标分类失败" ) ;
throw new CustomerException ( 405 , "保存指标分类失败" ) ;
}
parnetClassifyEntity . setCreateDept ( createDeptId ) ;
updateById ( parnetClassifyEntity ) ;
Long parentClassifyId = parnetClassifyEntity . getId ( ) ;
String classifyName = importClassifyDTO . getClassifyName ( ) ;
String classifyDesc = importClassifyDTO . getClassifyDesc ( ) ;
String examineDeptName = importClassifyDTO . getExamineDeptName ( ) ;
Long examineDeptId = deptClient . findIdByName ( examineDeptName ) ;
ClassifyEntity classifyEntity = new ClassifyEntity ( ) ;
classifyEntity . setName ( classifyName ) ;
classifyEntity . setDescription ( classifyDesc ) ;
classifyEntity . setPId ( parentClassifyId ) ;
if ( ! Objects . isNull ( examineDeptId ) ) {
classifyEntity . setExamineDeptId ( examineDeptId ) ;
classifyEntity . setExamineDeptName ( examineDeptName ) ;
}
boolean b = save ( classifyEntity ) ;
if ( ! b ) {
log . warn ( "#############importClassify: 保存指标失败" ) ;
throw new CustomerException ( 405 , "保存指标失败" ) ;
}
classifyEntity . setCreateDept ( createDeptId ) ;
updateById ( classifyEntity ) ;
Long classifyId = classifyEntity . getId ( ) ;
String points = importClassifyDTO . getPoints ( ) ;
points = points . replaceAll ( "," , "," ) ;
String [ ] pointArray = points . split ( "," ) ;
List < PointsEntity > ls = new ArrayList < > ( ) ;
for ( String point : pointArray ) {
PointsEntity pointsEntity = new PointsEntity ( ) ;
pointsEntity . setClassifyId ( classifyId ) ;
pointsEntity . setPoint ( Integer . parseInt ( point ) ) ;
ls . add ( pointsEntity ) ;
}
pointsService . saveBatch ( ls ) ;
}
return R . success ( "导入成功" ) ;
}
private List < ClassifyApiVO > getClassifyList ( Long pid , String exAdminDeptId ) {
List < Long > list = null ;
if ( Func . isNotEmpty ( exAdminDeptId ) ) {
list = Func . toLongList ( exAdminDeptId ) ;
}
return baseMapper . selectAllClassifyList ( pid , list ) ;
}
}