|
|
|
@ -6,6 +6,7 @@ import cn.hutool.core.util.IdUtil;
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.beust.jcommander.internal.Lists;
|
|
|
|
|
import com.github.pagehelper.Page;
|
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
@ -28,6 +29,7 @@ import com.glxp.api.entity.sup.UserCompanyEntity;
|
|
|
|
|
import com.glxp.api.entity.system.SysPdfTemplateRelevanceStatemenEntity;
|
|
|
|
|
import com.glxp.api.entity.system.SystemPDFTemplateEntity;
|
|
|
|
|
import com.glxp.api.exception.JsonException;
|
|
|
|
|
import com.glxp.api.req.auth.FilterUserComapanyRequest;
|
|
|
|
|
import com.glxp.api.req.basic.BasicManuYlqxzczhRequest;
|
|
|
|
|
import com.glxp.api.req.inout.InspectionPDFTemplateRequest;
|
|
|
|
|
import com.glxp.api.req.purchase.*;
|
|
|
|
@ -140,23 +142,6 @@ public class SupCertController extends BaseController {
|
|
|
|
|
supCertEntity.setId(IdUtil.getSnowflakeNextId());
|
|
|
|
|
supCertService.save(supCertEntity);
|
|
|
|
|
|
|
|
|
|
//默认给自己授权
|
|
|
|
|
QueryWrapper queryWrapper = new QueryWrapper();
|
|
|
|
|
queryWrapper.eq("productId",supCertEntity.getProductIdFk());
|
|
|
|
|
queryWrapper.eq("curCompanyId",getCompanyId());
|
|
|
|
|
List<SupProductAuthEntity> authList = supProductAuthService.list(queryWrapper);
|
|
|
|
|
if(CollectionUtil.isEmpty(authList)){
|
|
|
|
|
SupProductAuthEntity supProductAuth = new SupProductAuthEntity();
|
|
|
|
|
supProductAuth.setAuthCompanyId( getCompanyId());
|
|
|
|
|
supProductAuth.setProductId(supCertEntity.getProductIdFk());
|
|
|
|
|
supProductAuth.setCurCompanyId( getCompanyId());
|
|
|
|
|
supProductAuth.setCreateTime(new Date());
|
|
|
|
|
supProductAuth.setCreateUser( getCompanyId());
|
|
|
|
|
supProductAuth.setUpdateTime(new Date());
|
|
|
|
|
supProductAuth.setUpdateUser( getCompanyId());
|
|
|
|
|
supProductAuthService.save(supProductAuth);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ResultVOUtils.success("添加成功!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -184,6 +169,83 @@ public class SupCertController extends BaseController {
|
|
|
|
|
return ResultVOUtils.success("添加成功!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("获取被授权的产品资质")
|
|
|
|
|
@GetMapping("/directToCpt/sup/cert/filterMyAuth")
|
|
|
|
|
public BaseResponse filterMyAuth(SupCertEntityRequest request) {
|
|
|
|
|
|
|
|
|
|
PageSimpleResponse<SupCertEntity> basicUdiRelResponsePageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
|
//判断是否有资质授权
|
|
|
|
|
QueryWrapper authWrapper = new QueryWrapper();
|
|
|
|
|
authWrapper.eq("productId",request.getProductIdFk());
|
|
|
|
|
authWrapper.eq("authCompanyId",getCompanyId());
|
|
|
|
|
List<SupProductAuthEntity> authList = supProductAuthService.list(authWrapper);
|
|
|
|
|
if(CollectionUtil.isEmpty(authList)){
|
|
|
|
|
return ResultVOUtils.success(basicUdiRelResponsePageSimpleResponse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QueryWrapper queryWrapper = new QueryWrapper();
|
|
|
|
|
queryWrapper.eq("productIdFk",request.getProductIdFk());
|
|
|
|
|
queryWrapper.isNull("relationCertId");
|
|
|
|
|
int offset = (request.getPage() - 1) * request.getLimit();
|
|
|
|
|
Page<SupCertEntity> pages = PageHelper.offsetPage(offset, request.getLimit());
|
|
|
|
|
List<SupCertEntity> list = supCertService.filterList(queryWrapper);
|
|
|
|
|
queryWrapper = new QueryWrapper();
|
|
|
|
|
queryWrapper.eq("enabled", 1);
|
|
|
|
|
List<SupCertTypeEntity> typeList = supCertTypeService.list(queryWrapper);
|
|
|
|
|
Map<String,SupCertTypeEntity> typeMap = typeList.stream().collect(Collectors.toMap(SupCertTypeEntity::getCode, s->s, (l, r) -> l));
|
|
|
|
|
for(SupCertEntity supCertEntity:list){
|
|
|
|
|
SupCertTypeEntity supCertTypeEntity = typeMap.get(supCertEntity.getType());
|
|
|
|
|
if(supCertTypeEntity != null){
|
|
|
|
|
supCertEntity.setTypeName(supCertTypeEntity.getName());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
basicUdiRelResponsePageSimpleResponse.setTotal(pages.getTotal());
|
|
|
|
|
basicUdiRelResponsePageSimpleResponse.setList(list);
|
|
|
|
|
|
|
|
|
|
for (SupCertEntity supCertEntity : list) {
|
|
|
|
|
Boolean isExit = supCertService.isExit(Long.parseLong(getCompanyId()),supCertEntity.getId());
|
|
|
|
|
if (isExit) {
|
|
|
|
|
supCertEntity.setCheck(true);
|
|
|
|
|
} else
|
|
|
|
|
supCertEntity.setCheck(false);
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success(basicUdiRelResponsePageSimpleResponse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "批量授权", response = BaseResponse.class)
|
|
|
|
|
@PostMapping("/directToCpt/sup/cert/batchAddAuth")
|
|
|
|
|
public BaseResponse batchAddAuth(@RequestBody SupProductAuthSelectRequest request) {
|
|
|
|
|
//判断是否有资质授权
|
|
|
|
|
QueryWrapper authWrapper = new QueryWrapper();
|
|
|
|
|
authWrapper.eq("productId",request.getProductId());
|
|
|
|
|
authWrapper.eq("authCompanyId",getCompanyId());
|
|
|
|
|
List<SupProductAuthEntity> authList = supProductAuthService.list(authWrapper);
|
|
|
|
|
if(CollectionUtil.isEmpty(authList)){
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL,"您没有权限!");
|
|
|
|
|
}
|
|
|
|
|
String userId = getCompanyId();
|
|
|
|
|
if (CollUtil.isNotEmpty(request.getIds())) {
|
|
|
|
|
for (String id : request.getIds()) {
|
|
|
|
|
if (!supCertService.isExit(Long.parseLong(getCompanyId()),Long.parseLong(id))) {
|
|
|
|
|
SupCertEntity oldSupCertEntity = supCertService.getById(id);
|
|
|
|
|
SupCertEntity supCertEntity = new SupCertEntity();
|
|
|
|
|
BeanUtils.copyProperties(oldSupCertEntity, supCertEntity);
|
|
|
|
|
supCertEntity.setRelationCertId(oldSupCertEntity.getId());
|
|
|
|
|
supCertEntity.setCreateTime(new Date());
|
|
|
|
|
supCertEntity.setCreateUser( getCompanyId());
|
|
|
|
|
supCertEntity.setUpdateTime(new Date());
|
|
|
|
|
supCertEntity.setUpdateUser( getCompanyId());
|
|
|
|
|
supCertEntity.setCompanyIdFk(Long.parseLong(userId));
|
|
|
|
|
supCertEntity.setId(IdUtil.getSnowflakeNextId());
|
|
|
|
|
supCertService.save(supCertEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success("添加成功!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public QueryWrapper<SupCertEntity> getQueryWrapper(SupCertEntityRequest request) {
|
|
|
|
|
QueryWrapper queryWrapper = new QueryWrapper();
|
|
|
|
|
queryWrapper.eq(StringUtils.isNotEmpty(request.getYlqxzcrbarywmc()),"ylqxzcrbarywmc",request.getYlqxzcrbarywmc());
|
|
|
|
@ -191,10 +253,6 @@ public class SupCertController extends BaseController {
|
|
|
|
|
queryWrapper.eq(StringUtils.isNotEmpty(request.getProductName()),"productName",request.getProductName());
|
|
|
|
|
queryWrapper.eq(StringUtils.isNotEmpty(request.getStatus()),"status",request.getStatus());
|
|
|
|
|
queryWrapper.eq(StringUtils.isNotEmpty(request.getProductIdFk()),"productIdFk",request.getProductIdFk());
|
|
|
|
|
|
|
|
|
|
String companyId = getCompanyId();
|
|
|
|
|
queryWrapper.eq(StringUtils.isNotEmpty(companyId),"auth.curCompanyId",companyId);
|
|
|
|
|
|
|
|
|
|
return queryWrapper;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|