|
|
|
@ -6,8 +6,10 @@ import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|
|
|
|
import digital.laboratory.platform.common.core.exception.ValidateCodeException; |
|
|
|
|
import digital.laboratory.platform.common.mybatis.security.service.DLPUser; |
|
|
|
|
import digital.laboratory.platform.common.security.util.SecurityUtils; |
|
|
|
|
import digital.laboratory.platform.entrustment.dto.ApprovedUpdateEntrustDTO; |
|
|
|
|
import digital.laboratory.platform.entrustment.dto.EntrustAlterApplyApproveDTO; |
|
|
|
|
import digital.laboratory.platform.entrustment.dto.EntrustAlterApplyDTO; |
|
|
|
|
import digital.laboratory.platform.entrustment.entity.EntrustAlterApply; |
|
|
|
@ -64,7 +66,7 @@ public class EntrustAlterApplyServiceImpl extends ServiceImpl<EntrustAlterApplyM |
|
|
|
|
if (CollUtil.isNotEmpty(preApplyInfo)) { |
|
|
|
|
List<EntrustAlterApply> unfinishedList = preApplyInfo.stream().filter(e -> !e.getStatus().equals(EntrustAlterApplyStatus.FINISHED.getStatus())).collect(Collectors.toList()); |
|
|
|
|
if (CollUtil.isNotEmpty(unfinishedList)) { |
|
|
|
|
throw new RuntimeException("该委托存在未完成的申请信息,请先完成其他申请后再进行申请修改!"); |
|
|
|
|
throw new ValidateCodeException("该委托存在未完成的申请信息,请先完成其他申请后再进行申请修改!"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -95,19 +97,37 @@ public class EntrustAlterApplyServiceImpl extends ServiceImpl<EntrustAlterApplyM |
|
|
|
|
return entrustAlterApplyVOOne; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 审批委托申请修改 |
|
|
|
|
* @param approveDTO |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
public Boolean approve(EntrustAlterApplyApproveDTO approveDTO) { |
|
|
|
|
// 判断当前申请是否在可以审核的状态
|
|
|
|
|
EntrustAlterApply entrustAlterApply = super.getById(approveDTO.getId()); |
|
|
|
|
if (entrustAlterApply == null) { |
|
|
|
|
throw new ValidateCodeException("申请记录不存在!"); |
|
|
|
|
} |
|
|
|
|
if (!entrustAlterApply.getStatus().equals(EntrustAlterApplyStatus.SUBMITTED_WAIT_APPROVE.getStatus())) { |
|
|
|
|
throw new ValidateCodeException("当前申请状态不允许审核!"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 直接根据opCode设置状态
|
|
|
|
|
EntrustAlterApplyStatus status; |
|
|
|
|
if (approveDTO.getOpCode() == 0) { |
|
|
|
|
// 拒绝
|
|
|
|
|
return super.update(Wrappers.<EntrustAlterApply>lambdaUpdate().eq(EntrustAlterApply::getId, approveDTO.getId()) |
|
|
|
|
.set(EntrustAlterApply::getStatus, EntrustAlterApplyStatus.APPLY_FAIL.getStatus()) |
|
|
|
|
.set(EntrustAlterApply::getReason,approveDTO.getReason())); |
|
|
|
|
status = EntrustAlterApplyStatus.APPLY_FAIL; |
|
|
|
|
} else { |
|
|
|
|
// 同意
|
|
|
|
|
return super.update(Wrappers.<EntrustAlterApply>lambdaUpdate().eq(EntrustAlterApply::getId, approveDTO.getId()) |
|
|
|
|
.set(EntrustAlterApply::getStatus, EntrustAlterApplyStatus.APPLY_SUCCESS.getStatus()) |
|
|
|
|
.set(EntrustAlterApply::getReason,approveDTO.getReason())); |
|
|
|
|
status = EntrustAlterApplyStatus.APPLY_SUCCESS; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 合并重复的update操作
|
|
|
|
|
return super.update( |
|
|
|
|
Wrappers.<EntrustAlterApply>lambdaUpdate() |
|
|
|
|
.eq(EntrustAlterApply::getId, approveDTO.getId()) |
|
|
|
|
.set(EntrustAlterApply::getStatus, status.getStatus()) |
|
|
|
|
.set(EntrustAlterApply::getReason, approveDTO.getReason()) |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -118,11 +138,11 @@ public class EntrustAlterApplyServiceImpl extends ServiceImpl<EntrustAlterApplyM |
|
|
|
|
@Override |
|
|
|
|
public Boolean update(EntrustAlterApplyDTO dto) { |
|
|
|
|
if(StrUtil.isBlank(dto.getId())){ |
|
|
|
|
throw new RuntimeException("修改的记录id不能为空"); |
|
|
|
|
throw new ValidateCodeException("修改的记录id不能为空"); |
|
|
|
|
} |
|
|
|
|
EntrustAlterApply oldInfo = super.getById(dto.getId()); |
|
|
|
|
if (dto.getOpCode() == 1 && oldInfo.getStatus().equals(EntrustAlterApplyStatus.SUBMITTED_WAIT_APPROVE.getStatus())) { |
|
|
|
|
throw new RuntimeException("该条记录不在可撤销的状态范围内!"); |
|
|
|
|
throw new ValidateCodeException("该条记录不在可撤销的状态范围内!"); |
|
|
|
|
} |
|
|
|
|
return super.update(Wrappers.<EntrustAlterApply>lambdaUpdate().eq(EntrustAlterApply::getId, dto.getId()) |
|
|
|
|
.set(EntrustAlterApply::getEntrustId, dto.getEntrustId()) |
|
|
|
@ -138,15 +158,20 @@ public class EntrustAlterApplyServiceImpl extends ServiceImpl<EntrustAlterApplyM |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
public Boolean delete(List<String> ids) { |
|
|
|
|
List<EntrustAlterApplyVO> entrustAlterAppliesVOS = baseMapper.getEntrustAlterApplyVOList(Wrappers.<EntrustAlterApply>lambdaQuery().in(EntrustAlterApply::getId,ids)); |
|
|
|
|
List<EntrustAlterApplyVO> entrustAlterAppliesVOS = baseMapper.getEntrustAlterApplyVOList(Wrappers.<EntrustAlterApply>query().in("eaa.id",ids)); |
|
|
|
|
entrustAlterAppliesVOS.forEach(e -> { |
|
|
|
|
if (e.getStatus().equals(EntrustAlterApplyStatus.WAIT_SUBMIT_APPLY.getStatus())) { |
|
|
|
|
throw new RuntimeException(String.format("案件名称为 %s 的记录不在可删除的状态,无法删除!", e.getCaseName())); |
|
|
|
|
throw new ValidateCodeException(String.format("案件名称为 %s 的记录不在可删除的状态,无法删除!", e.getCaseName())); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
return super.remove(Wrappers.<EntrustAlterApply>lambdaUpdate().in(EntrustAlterApply::getId,ids)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public Boolean updateEntrust(ApprovedUpdateEntrustDTO dto) { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 填充VO信息 |
|
|
|
|
* @param e |
|
|
|
|