|
|
|
@ -1,7 +1,454 @@
|
|
|
|
|
package com.glxp.api.controller.purchase;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
import cn.hutool.core.util.IdUtil;
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
|
import com.glxp.api.annotation.AuthRuleAnnotation;
|
|
|
|
|
import com.glxp.api.annotation.Log;
|
|
|
|
|
import com.glxp.api.common.enums.ResultEnum;
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.api.constant.BusinessType;
|
|
|
|
|
import com.glxp.api.constant.ConstantStatus;
|
|
|
|
|
import com.glxp.api.entity.auth.AuthAdmin;
|
|
|
|
|
import com.glxp.api.entity.basic.UdiRelevanceEntity;
|
|
|
|
|
import com.glxp.api.entity.purchase.SupCertEntity;
|
|
|
|
|
import com.glxp.api.entity.purchase.SupCertSetEntity;
|
|
|
|
|
import com.glxp.api.entity.purchase.SupManufacturerEntity;
|
|
|
|
|
import com.glxp.api.entity.purchase.SupProductEntity;
|
|
|
|
|
import com.glxp.api.exception.JsonException;
|
|
|
|
|
import com.glxp.api.req.purchase.FilterCertSetsRequest;
|
|
|
|
|
import com.glxp.api.req.purchase.FilterPoductRequest;
|
|
|
|
|
import com.glxp.api.req.purchase.FilterSupCertRequest;
|
|
|
|
|
import com.glxp.api.req.purchase.SelectProductBindRequest;
|
|
|
|
|
import com.glxp.api.req.system.DeleteCompanyFileRequest;
|
|
|
|
|
import com.glxp.api.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.api.res.basic.UdiRelevanceResponse;
|
|
|
|
|
import com.glxp.api.res.purchase.SupProductResponse;
|
|
|
|
|
import com.glxp.api.service.auth.AuthAdminService;
|
|
|
|
|
import com.glxp.api.service.basic.UdiRelevanceService;
|
|
|
|
|
import com.glxp.api.service.purchase.SupCertService;
|
|
|
|
|
import com.glxp.api.service.purchase.SupCertSetService;
|
|
|
|
|
import com.glxp.api.service.purchase.SupManufacturerService;
|
|
|
|
|
import com.glxp.api.service.purchase.SupProductService;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
import org.springframework.web.context.request.RequestContextHolder;
|
|
|
|
|
import org.springframework.web.context.request.ServletRequestAttributes;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.ListIterator;
|
|
|
|
|
|
|
|
|
|
@RestController
|
|
|
|
|
public class SupProductController {
|
|
|
|
|
@Resource
|
|
|
|
|
private AuthAdminService authAdminService;
|
|
|
|
|
@Resource
|
|
|
|
|
private SupProductService supProductService;
|
|
|
|
|
@Resource
|
|
|
|
|
UdiRelevanceService udiRelevanceService;
|
|
|
|
|
@Resource
|
|
|
|
|
private SupCertService supCertService;
|
|
|
|
|
@Resource
|
|
|
|
|
SupManufacturerService supManufacturerService;
|
|
|
|
|
@Resource
|
|
|
|
|
SupCertSetService supCertSetService;
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("/sup/product/getRegistrationInfo")
|
|
|
|
|
public BaseResponse getRegistrationInfo(FilterPoductRequest filterPoductRequest) {
|
|
|
|
|
SupProductEntity supProductEntity = supProductService.findRegistration(filterPoductRequest.getId());
|
|
|
|
|
if (supProductEntity != null) {
|
|
|
|
|
return ResultVOUtils.success(supProductEntity);
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.error(500, "企业信息为空");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("/sup/product/getRegistrationList")
|
|
|
|
|
public BaseResponse getRegistrationList(FilterPoductRequest filterPoductRequest) {
|
|
|
|
|
List<SupProductResponse> companyEntities = supProductService.getRegistration(filterPoductRequest);
|
|
|
|
|
PageInfo<SupProductResponse> pageInfo = new PageInfo<>(companyEntities);
|
|
|
|
|
PageSimpleResponse<SupProductResponse> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
|
pageSimpleResponse.setTotal(pageInfo.getTotal());
|
|
|
|
|
pageSimpleResponse.setList(companyEntities);
|
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("/sup/product/addRegistration")
|
|
|
|
|
@Log(title = "资质证书", businessType = BusinessType.INSERT)
|
|
|
|
|
public BaseResponse addRegistration(@RequestBody SupProductEntity supProductEntity) {
|
|
|
|
|
|
|
|
|
|
//提交审核
|
|
|
|
|
if (supProductEntity.getAuditStatus() == ConstantStatus.AUDIT_UN) {
|
|
|
|
|
//判断是否上级供应商是否审核通过
|
|
|
|
|
|
|
|
|
|
SupManufacturerEntity supManufacturerEntity = supManufacturerService.findManufacturer(supProductEntity.getManufacturerIdFk());
|
|
|
|
|
if (supManufacturerEntity.getAuditStatus() == ConstantStatus.AUDIT_UN
|
|
|
|
|
|| supManufacturerEntity.getAuditStatus() == ConstantStatus.AUDIT_DRAFT) {
|
|
|
|
|
return ResultVOUtils.error(500, "所属生产企业资质未通过审核,暂时无法提交!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//验证证书是否齐全
|
|
|
|
|
FilterCertSetsRequest filterCertSetsRequest = new FilterCertSetsRequest();
|
|
|
|
|
filterCertSetsRequest.setType(ConstantStatus.CERT_PRODUCT);
|
|
|
|
|
filterCertSetsRequest.setNeed(0);
|
|
|
|
|
List<SupCertSetEntity> supCertSetEntities = supCertSetService.filterCertSets(filterCertSetsRequest);
|
|
|
|
|
List<SupCertEntity> supCertEntityList = supCertService.findAll(supProductEntity.getCustomerId(), supProductEntity.getManufacturerIdFk(), supProductEntity.getProductId());
|
|
|
|
|
ListIterator<SupCertSetEntity> iterable = supCertSetEntities.listIterator();
|
|
|
|
|
while (iterable.hasNext()) {
|
|
|
|
|
SupCertSetEntity supCertSetEntity = iterable.next();
|
|
|
|
|
if (supCertSetEntity.getImports() != null && supCertSetEntity.getImports() == 1 || StrUtil.isNotEmpty(supCertSetEntity.getCplx()) && supCertSetEntity.getCplx().equals("全部")
|
|
|
|
|
|| StrUtil.isNotEmpty(supCertSetEntity.getHchzsb()) && supCertSetEntity.getHchzsb().equals("全部")
|
|
|
|
|
|| (supCertSetEntity.getImports() != null && supCertSetEntity.getImports() == 2
|
|
|
|
|
&& StrUtil.trimToEmpty(supProductEntity.getRecordCode()).contains("进"))
|
|
|
|
|
|| (supCertSetEntity.getImports() != null && supCertSetEntity.getImports() == 3 && !StrUtil.trimToEmpty(supProductEntity.getRecordCode()).contains("进"))
|
|
|
|
|
|| (StrUtil.trimToEmpty(supProductEntity.getProductType()).equals(supCertSetEntity.getCplx()))
|
|
|
|
|
|| (StrUtil.trimToEmpty(supProductEntity.getHchzsb()).equals(supCertSetEntity.getHchzsb()))
|
|
|
|
|
|| StrUtil.isNotEmpty(supCertSetEntity.getFlbm()) && (supCertSetEntity.getFlbm().contains(StrUtil.trimToEmpty(supProductEntity.getProductDirectoryCode())))
|
|
|
|
|
) {
|
|
|
|
|
for (SupCertEntity supCertEntity : supCertEntityList) {
|
|
|
|
|
if (supCertEntity.getName().equals(supCertSetEntity.getName())) {
|
|
|
|
|
if (StrUtil.isNotEmpty(supCertEntity.getFilePath())) {
|
|
|
|
|
iterable.remove();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
iterable.remove();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
String errMsg = "";
|
|
|
|
|
if (supCertSetEntities.size() > 0) {
|
|
|
|
|
for (SupCertSetEntity supCertSetEntity : supCertSetEntities) {
|
|
|
|
|
errMsg = errMsg + "," + supCertSetEntity.getName();
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.error(500, errMsg.substring(1) + "等证书未上传,无法提交审核!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
supProductEntity.setCreateTime(new Date());
|
|
|
|
|
supProductEntity.setUpdateTime(new Date());
|
|
|
|
|
supProductEntity.setId(IdUtil.getSnowflakeNextId());
|
|
|
|
|
boolean b = supProductService.insertRegistration(supProductEntity);
|
|
|
|
|
if (b) {
|
|
|
|
|
return ResultVOUtils.success("添加成功");
|
|
|
|
|
} else {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.NOT_NETWORK);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("/sup/product/selectBind")
|
|
|
|
|
public BaseResponse selectBind(@RequestBody SelectProductBindRequest selectProductBindRequest) {
|
|
|
|
|
|
|
|
|
|
UdiRelevanceResponse udiRelevanceResponse = udiRelevanceService.selectUdiId(Long.valueOf(selectProductBindRequest.getRelIdFk()));
|
|
|
|
|
SupProductEntity supProductEntity = supProductService.findByManufactury(udiRelevanceResponse.getCpmctymc(), udiRelevanceResponse.getManufactory(),selectProductBindRequest.getManufacturerId());
|
|
|
|
|
if (supProductEntity != null) {
|
|
|
|
|
return ResultVOUtils.error(500, "该产品资质已存在,请勿重复添加!");
|
|
|
|
|
}else{
|
|
|
|
|
supProductEntity = new SupProductEntity();
|
|
|
|
|
BeanUtils.copyProperties(udiRelevanceResponse, supProductEntity);
|
|
|
|
|
supProductEntity.setProductId(selectProductBindRequest.getProductId());
|
|
|
|
|
supProductEntity.setRecordCode(udiRelevanceResponse.getZczbhhzbapzbh());
|
|
|
|
|
supProductEntity.setRelIdFk(udiRelevanceResponse.getId() + "");
|
|
|
|
|
supProductEntity.setRecordProductName(udiRelevanceResponse.getCpmctymc());
|
|
|
|
|
supProductEntity.setProductType(udiRelevanceResponse.getQxlb());
|
|
|
|
|
supProductEntity.setProductDirectoryCode(udiRelevanceResponse.getFlbm());
|
|
|
|
|
supProductEntity.setRecordPeopleName(udiRelevanceResponse.getYlqxzcrbarmc());
|
|
|
|
|
supProductEntity.setSpecification(udiRelevanceResponse.getGgxh());
|
|
|
|
|
supProductEntity.setCreateTime(new Date());
|
|
|
|
|
supProductEntity.setUpdateTime(new Date());
|
|
|
|
|
supProductEntity.setManufacturerIdFk(selectProductBindRequest.getManufacturerId());
|
|
|
|
|
supProductEntity.setCustomerId(selectProductBindRequest.getCustomerId());
|
|
|
|
|
supProductEntity.setHchzsb(udiRelevanceResponse.getCplb());
|
|
|
|
|
supProductEntity.setCompanyName(selectProductBindRequest.getCompanyName());
|
|
|
|
|
supProductEntity.setAuditStatus(selectProductBindRequest.getAuditStatus());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ResultVOUtils.success(supProductEntity);
|
|
|
|
|
// boolean b = supProductService.insertRegistration(supProductEntity);
|
|
|
|
|
// if (b) {
|
|
|
|
|
// return ResultVOUtils.success(supProductEntity);
|
|
|
|
|
// } else {
|
|
|
|
|
// return ResultVOUtils.error(ResultEnum.NOT_NETWORK);
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("/sup/product/modifyRegistration")
|
|
|
|
|
@Log(title = "资质证书", businessType = BusinessType.UPDATE)
|
|
|
|
|
public BaseResponse modifyRegistration(@RequestBody SupProductEntity supProductEntity) {
|
|
|
|
|
|
|
|
|
|
if (StrUtil.isEmpty(supProductEntity.getProductId()) || StrUtil.isEmpty(supProductEntity.getManufacturerIdFk()) || StrUtil.isEmpty(supProductEntity.getCustomerId())) {
|
|
|
|
|
return ResultVOUtils.error(500, "参数错误!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//提交审核
|
|
|
|
|
if (supProductEntity.getAuditStatus() == ConstantStatus.AUDIT_CHANGE || supProductEntity.getAuditStatus() == ConstantStatus.AUDIT_UN) {
|
|
|
|
|
|
|
|
|
|
//判断是不是存在草稿
|
|
|
|
|
List<SupCertEntity> supCertEntityList1 = supCertService.findAll(supProductEntity.getCustomerId(), supProductEntity.getManufacturerIdFk(), supProductEntity.getProductId());
|
|
|
|
|
for (SupCertEntity obj : supCertEntityList1) {
|
|
|
|
|
if (obj.getAuditStatus() == 0) {
|
|
|
|
|
return ResultVOUtils.error(999, "证书中存在草稿不允许提交!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//判断是否上级供应商是否审核通过
|
|
|
|
|
|
|
|
|
|
SupManufacturerEntity supManufacturerEntity = supManufacturerService.findManufacturer(supProductEntity.getManufacturerIdFk());
|
|
|
|
|
if (supManufacturerEntity.getAuditStatus() == ConstantStatus.AUDIT_UN
|
|
|
|
|
|| supManufacturerEntity.getAuditStatus() == ConstantStatus.AUDIT_DRAFT) {
|
|
|
|
|
return ResultVOUtils.error(500, "所属生产企业资质未通过审核,暂时无法提交!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//验证证书是否齐全
|
|
|
|
|
FilterCertSetsRequest filterCertSetsRequest = new FilterCertSetsRequest();
|
|
|
|
|
filterCertSetsRequest.setType(ConstantStatus.CERT_PRODUCT);
|
|
|
|
|
List<SupCertSetEntity> supCertSetEntities = supCertSetService.filterCertSets(filterCertSetsRequest);
|
|
|
|
|
List<SupCertEntity> supCertEntityList = supCertService.findAll(supProductEntity.getCustomerId(), supProductEntity.getManufacturerIdFk(), supProductEntity.getProductId());
|
|
|
|
|
ListIterator<SupCertSetEntity> iterable = supCertSetEntities.listIterator();
|
|
|
|
|
while (iterable.hasNext()) {
|
|
|
|
|
SupCertSetEntity supCertSetEntity = iterable.next();
|
|
|
|
|
|
|
|
|
|
if (supCertSetEntity.getImports() != null && supCertSetEntity.getImports() == 1 || StrUtil.isNotEmpty(supCertSetEntity.getCplx()) && supCertSetEntity.getCplx().equals("全部")
|
|
|
|
|
|| StrUtil.isNotEmpty(supCertSetEntity.getHchzsb()) && supCertSetEntity.getHchzsb().equals("全部")
|
|
|
|
|
|| (supCertSetEntity.getImports() != null && supCertSetEntity.getImports() == 2
|
|
|
|
|
&& StrUtil.trimToEmpty(supProductEntity.getRecordCode()).contains("进"))
|
|
|
|
|
|| (supCertSetEntity.getImports() != null && supCertSetEntity.getImports() == 3 && !StrUtil.trimToEmpty(supProductEntity.getRecordCode()).contains("进"))
|
|
|
|
|
|| (StrUtil.trimToEmpty(supProductEntity.getProductType()).equals(supCertSetEntity.getCplx()))
|
|
|
|
|
|| (StrUtil.trimToEmpty(supProductEntity.getHchzsb()).equals(supCertSetEntity.getHchzsb()))
|
|
|
|
|
|| StrUtil.isNotEmpty(supCertSetEntity.getFlbm()) && (supCertSetEntity.getFlbm().contains(StrUtil.trimToEmpty(supProductEntity.getProductDirectoryCode())))
|
|
|
|
|
) {
|
|
|
|
|
for (SupCertEntity supCertEntity : supCertEntityList) {
|
|
|
|
|
if (supCertEntity.getName().equals(supCertSetEntity.getName())) {
|
|
|
|
|
if (StrUtil.isNotEmpty(supCertEntity.getFilePath())) {
|
|
|
|
|
iterable.remove();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
iterable.remove();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
String errMsg = "";
|
|
|
|
|
if (supCertSetEntities.size() > 0) {
|
|
|
|
|
for (SupCertSetEntity supCertSetEntity : supCertSetEntities) {
|
|
|
|
|
errMsg = errMsg + "," + supCertSetEntity.getName();
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.error(500, errMsg.substring(1) + "等证书未上传,无法提交审核!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
supProductEntity.setUpdateTime(new Date());
|
|
|
|
|
SupProductResponse originEntity = supProductService.findByProductId(supProductEntity.getProductId());
|
|
|
|
|
supCertService.updateProductId(originEntity.getCustomerId(), supProductEntity.getCustomerId(), originEntity.getManufacturerIdFk(),
|
|
|
|
|
supProductEntity.getManufacturerIdFk(), originEntity.getProductId(), supProductEntity.getProductId());
|
|
|
|
|
boolean b = supProductService.modifyRegistration(supProductEntity);
|
|
|
|
|
if (b) {
|
|
|
|
|
return ResultVOUtils.success("修改成功");
|
|
|
|
|
} else {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.NOT_NETWORK);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("/udiwms/pur/suppliers/product/audit")
|
|
|
|
|
public BaseResponse auditProduct(@RequestBody SupProductEntity supProductEntity) {
|
|
|
|
|
|
|
|
|
|
if (supProductEntity.getAuditStatus() == null) {
|
|
|
|
|
return ResultVOUtils.error(500, "参数错误!");
|
|
|
|
|
}
|
|
|
|
|
if (supProductEntity.getAuditStatus() == 1) {
|
|
|
|
|
//查询用户上传的证书
|
|
|
|
|
FilterSupCertRequest filterSupCertRequest = new FilterSupCertRequest();
|
|
|
|
|
filterSupCertRequest.setCustomerId(supProductEntity.getCustomerId());
|
|
|
|
|
filterSupCertRequest.setManufacturerIdFk(supProductEntity.getManufacturerIdFk());
|
|
|
|
|
filterSupCertRequest.setProductIdFk(supProductEntity.getProductId());
|
|
|
|
|
filterSupCertRequest.setType(ConstantStatus.CERT_PRODUCT);
|
|
|
|
|
List<SupCertEntity> supCertEntityList = supCertService.filterCompanyCert(filterSupCertRequest);
|
|
|
|
|
|
|
|
|
|
//查询用户该上传的证书
|
|
|
|
|
FilterCertSetsRequest filterCertSetsRequest = new FilterCertSetsRequest();
|
|
|
|
|
filterCertSetsRequest.setType(ConstantStatus.CERT_PRODUCT);
|
|
|
|
|
List<SupCertSetEntity> supCertSetEntities = supCertSetService.filterCertSets(filterCertSetsRequest);
|
|
|
|
|
|
|
|
|
|
ListIterator<SupCertSetEntity> iterable = supCertSetEntities.listIterator();
|
|
|
|
|
while (iterable.hasNext()) {
|
|
|
|
|
SupCertSetEntity supCertSetEntity = iterable.next();
|
|
|
|
|
|
|
|
|
|
if (supCertSetEntity.getImports() != null && supCertSetEntity.getImports() == 1 || StrUtil.isNotEmpty(supCertSetEntity.getCplx()) && supCertSetEntity.getCplx().equals("全部")
|
|
|
|
|
|| StrUtil.isNotEmpty(supCertSetEntity.getHchzsb()) && supCertSetEntity.getHchzsb().equals("全部")
|
|
|
|
|
|| (supCertSetEntity.getImports() != null && supCertSetEntity.getImports() == 2
|
|
|
|
|
&& StrUtil.trimToEmpty(supProductEntity.getRecordCode()).contains("进"))
|
|
|
|
|
|| (supCertSetEntity.getImports() != null && supCertSetEntity.getImports() == 3 && !StrUtil.trimToEmpty(supProductEntity.getRecordCode()).contains("进"))
|
|
|
|
|
|| (StrUtil.trimToEmpty(supProductEntity.getProductType()).equals(supCertSetEntity.getCplx()))
|
|
|
|
|
|| (StrUtil.trimToEmpty(supProductEntity.getHchzsb()).equals(supCertSetEntity.getHchzsb()))
|
|
|
|
|
|| StrUtil.isNotEmpty(supCertSetEntity.getFlbm()) && (supCertSetEntity.getFlbm().contains(StrUtil.trimToEmpty(supProductEntity.getProductDirectoryCode())))
|
|
|
|
|
) {
|
|
|
|
|
for (SupCertEntity supCertEntity : supCertEntityList) {
|
|
|
|
|
if (supCertEntity.getName().equals(supCertSetEntity.getName())) {
|
|
|
|
|
if (StrUtil.isNotEmpty(supCertEntity.getFilePath())) {
|
|
|
|
|
iterable.remove();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
iterable.remove();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
String errMsg = "";
|
|
|
|
|
if (supCertSetEntities.size() > 0) {
|
|
|
|
|
for (SupCertSetEntity supCertSetEntity : supCertSetEntities) {
|
|
|
|
|
errMsg = errMsg + "," + supCertSetEntity.getName();
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.error(500, "必传证书不齐全");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
String msg = "";
|
|
|
|
|
// 查询是否包含审核未通过的证书
|
|
|
|
|
if (supProductEntity.getAuditStatus() == ConstantStatus.AUDIT_PASS ||
|
|
|
|
|
supProductEntity.getAuditStatus() == ConstantStatus.AUDIT_CHANGE_PASS) {
|
|
|
|
|
FilterSupCertRequest filterSupCertRequest = new FilterSupCertRequest();
|
|
|
|
|
filterSupCertRequest.setAuditStatus(24);
|
|
|
|
|
filterSupCertRequest.setCustomerId(supProductEntity.getCustomerId());
|
|
|
|
|
filterSupCertRequest.setManufacturerIdFk(supProductEntity.getManufacturerIdFk());
|
|
|
|
|
filterSupCertRequest.setProductIdFk(supProductEntity.getProductId());
|
|
|
|
|
filterSupCertRequest.setType(ConstantStatus.CERT_PRODUCT);
|
|
|
|
|
List<SupCertEntity> supCertEntityList = supCertService.filterCompanyCert(filterSupCertRequest);
|
|
|
|
|
if (CollUtil.isNotEmpty(supCertEntityList)) {
|
|
|
|
|
for (SupCertEntity supCertEntity : supCertEntityList) {
|
|
|
|
|
msg += supCertEntity.getName() + ",";
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.error(500, "审核失败,还有必须提交证书未确认(" + msg.substring(0, msg.length() - 1) + ")");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
supProductEntity.setUpdateTime(new Date());
|
|
|
|
|
boolean b = supProductService.modifyRegistration(supProductEntity);
|
|
|
|
|
if (StrUtil.isNotEmpty(supProductEntity.getRelIdFk())) {
|
|
|
|
|
UdiRelevanceEntity udiRelevanceEntity = udiRelevanceService.selectById(Long.parseLong(supProductEntity.getRelIdFk()));
|
|
|
|
|
if (udiRelevanceEntity != null) {
|
|
|
|
|
udiRelevanceEntity.setDispatch(true);
|
|
|
|
|
udiRelevanceService.updateUdiRelevance(udiRelevanceEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if (supProductEntity.getAuditStatus() == ConstantStatus.AUDIT_PASS) {
|
|
|
|
|
// SupProductResponse supProductResponse = supProductService.findJoinRegistration(supProductEntity.getId());
|
|
|
|
|
//
|
|
|
|
|
// //步骤1:先添加到主系统第三方产品信息;
|
|
|
|
|
// BasicThirdSysEntity basicThirdSysEntity = basicThirdSysService.selectMainThrSys();
|
|
|
|
|
// ThrProductsEntity thrProductsEntity = new ThrProductsEntity();
|
|
|
|
|
// thrProductsEntity.setCode(gennerOrderUtils.getRelId() + "");
|
|
|
|
|
// thrProductsEntity.setThirdSys(basicThirdSysEntity.getThirdId());
|
|
|
|
|
// thrProductsEntity.setThirdSysFk(basicThirdSysEntity.getThirdId());
|
|
|
|
|
// thrProductsEntity.setName(supProductEntity.getRecordProductName());
|
|
|
|
|
// thrProductsEntity.setSpec(supProductEntity.getSpecification());
|
|
|
|
|
// thrProductsEntity.setStandard(supProductEntity.getSpecification());
|
|
|
|
|
// thrProductsEntity.setManufactory(supProductResponse.getManufacturerName());
|
|
|
|
|
// thrProductsService.insertThrProducts(thrProductsEntity);
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// //步骤2:添加到关联表
|
|
|
|
|
// String uuid = CustomUtil.getUUId();
|
|
|
|
|
// UdiRelevanceEntity udiRelevanceEntity = new UdiRelevanceEntity();
|
|
|
|
|
// udiRelevanceEntity.setThirdId(thrProductsEntity.getCode());
|
|
|
|
|
// udiRelevanceEntity.setThirdName(thrProductsEntity.getName());
|
|
|
|
|
// udiRelevanceEntity.setMainId(thrProductsEntity.getCode());
|
|
|
|
|
// udiRelevanceEntity.setMainName(thrProductsEntity.getName());
|
|
|
|
|
// udiRelevanceEntity.setMeasname(thrProductsEntity.getMeasname());
|
|
|
|
|
// String time = DateUtil.getDateTime();
|
|
|
|
|
// udiRelevanceEntity.setUpdateTime(time);
|
|
|
|
|
// udiRelevanceEntity.setModifyTime(time);
|
|
|
|
|
// udiRelevanceEntity.setUuid(uuid);
|
|
|
|
|
// udiRelevanceEntity.setManufactory(supProductResponse.getManufacturerName());
|
|
|
|
|
// udiRelevanceEntity.setSupName(supProductResponse.getSupName());
|
|
|
|
|
// udiRelevanceEntity.setId(gennerOrderUtils.getRelId() + "");
|
|
|
|
|
// udiRelevanceService.insertUdiRelevance(udiRelevanceEntity);
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// //步骤3:添加基础信息表
|
|
|
|
|
// UdiInfoEntity udiInfoEntity = new UdiInfoEntity();
|
|
|
|
|
// udiInfoEntity.setNameCode(thrProductsEntity.getCode());
|
|
|
|
|
// udiInfoEntity.setCpmctymc(thrProductsEntity.getName());
|
|
|
|
|
// udiInfoEntity.setManufactory(thrProductsEntity.getManufactory());
|
|
|
|
|
// udiInfoEntity.setYlqxzcrbarmc(supProductEntity.getRecordPeopleName());
|
|
|
|
|
// udiInfoEntity.setGgxh(thrProductsEntity.getSpec());
|
|
|
|
|
// udiInfoEntity.setZczbhhzbapzbh(supProductEntity.getRecordCode());
|
|
|
|
|
// udiInfoEntity.setUuid(udiRelevanceEntity.getUuid());
|
|
|
|
|
// udiInfoEntity.setProductType(ConstantStatus.PRODUCT_TYPE_THIRD);
|
|
|
|
|
// udiInfoEntity.setDiType(1);
|
|
|
|
|
// udiInfoEntity.setScbssfbhph("是");
|
|
|
|
|
// udiInfoEntity.setScbssfbhscrq("是");
|
|
|
|
|
// udiInfoEntity.setScbssfbhsxrq("是");
|
|
|
|
|
// udiInfoEntity.setScbssfbhxlh("否");
|
|
|
|
|
// udiInfoEntity = UdiInfoUtil.initUdiInfoEntity(udiInfoEntity);
|
|
|
|
|
// udiInfoService.insertUdiInfo(udiInfoEntity);
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// //步骤4:添加供应商关联表
|
|
|
|
|
// CompanyProductRelevanceEntity companyProductRelevanceEntity = new CompanyProductRelevanceEntity();
|
|
|
|
|
// companyProductRelevanceEntity.setCreate_time(new Date());
|
|
|
|
|
// companyProductRelevanceEntity.setUpdate_time(new Date());
|
|
|
|
|
// companyProductRelevanceEntity.setAuditStatus("3");
|
|
|
|
|
// companyProductRelevanceEntity.setUnitFk(supProductResponse.getCustomerId());
|
|
|
|
|
// companyProductRelevanceEntity.setUdiRlIdFk(udiRelevanceEntity.getId());
|
|
|
|
|
// companyProductRelevanceEntity.setCustomerId(supProductResponse.getCustomerId());
|
|
|
|
|
// companyProductRelevanceEntity.setProductId(supProductEntity.getProductId());
|
|
|
|
|
// companyProductRelevanceEntity.setRegistrationId(supProductEntity.getProductId());
|
|
|
|
|
// companyProductRelevanceEntity.setEnterpriseId(supProductEntity.getManufacturerIdFk());
|
|
|
|
|
// companyProductRelevanceService.insertCompanyProductRelevance(companyProductRelevanceEntity);
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
if (b) {
|
|
|
|
|
return ResultVOUtils.success("审核通过!");
|
|
|
|
|
} else {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.NOT_NETWORK);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("/sup/product/delete")
|
|
|
|
|
@Log(title = "资质证书", businessType = BusinessType.DELETE)
|
|
|
|
|
public BaseResponse delete(DeleteCompanyFileRequest deleteCompanyFileRequest) {
|
|
|
|
|
boolean b = supProductService.deleteById(deleteCompanyFileRequest.getId());
|
|
|
|
|
if (b)
|
|
|
|
|
return ResultVOUtils.success("删除成功");
|
|
|
|
|
else {
|
|
|
|
|
return ResultVOUtils.error(500, "删除失败");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getCustomerId() {
|
|
|
|
|
ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
|
|
|
|
|
if (attributes == null) {
|
|
|
|
|
throw new JsonException(ResultEnum.NOT_NETWORK);
|
|
|
|
|
}
|
|
|
|
|
HttpServletRequest request = attributes.getRequest();
|
|
|
|
|
String userId = request.getHeader("ADMIN_ID");
|
|
|
|
|
AuthAdmin authAdmin = authAdminService.findById(Long.parseLong(userId));
|
|
|
|
|
return authAdmin.getCustomerId() + "";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|