|
|
@ -61,6 +61,8 @@ public class SupCompanyController {
|
|
|
|
BasicUnitMaintainService basicUnitMaintainService;
|
|
|
|
BasicUnitMaintainService basicUnitMaintainService;
|
|
|
|
@Resource
|
|
|
|
@Resource
|
|
|
|
SupCertSetService supCertSetService;
|
|
|
|
SupCertSetService supCertSetService;
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
SupCompanyService supCompanyService;
|
|
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
@GetMapping("/api/pur/getSupComapnys")
|
|
|
|
@GetMapping("/api/pur/getSupComapnys")
|
|
|
@ -79,23 +81,46 @@ public class SupCompanyController {
|
|
|
|
public BaseResponse insertCompany(@RequestBody SupCompanyEntity companyEntity) {
|
|
|
|
public BaseResponse insertCompany(@RequestBody SupCompanyEntity companyEntity) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//查询该用户对应的资质证书
|
|
|
|
//判断是不是存在草稿
|
|
|
|
if(companyEntity.getAuditStatus()==6){
|
|
|
|
if(companyEntity.getAuditStatus()==6){
|
|
|
|
FilterSupCertRequest filterSupCertRequest = new FilterSupCertRequest();
|
|
|
|
List<SupCertEntity> supCertEntityList = supCertService.findAll(companyEntity.getCustomerId()); for(SupCertEntity obj:supCertEntityList){
|
|
|
|
filterSupCertRequest.setCustomerId(companyEntity.getCustomerId());
|
|
|
|
if(obj.getAuditStatus()==0){
|
|
|
|
filterSupCertRequest.setType(ConstantStatus.CERT_COMPANY);
|
|
|
|
return ResultVOUtils.error(999,"证书中存在草稿不允许提交!");
|
|
|
|
List<SupCertEntity> supCertEntityList = supCertService.filterCompanyCert(filterSupCertRequest);
|
|
|
|
}
|
|
|
|
if(supCertEntityList.size()>0){
|
|
|
|
}
|
|
|
|
for (SupCertEntity obj:supCertEntityList){
|
|
|
|
|
|
|
|
if (StrUtil.isBlank(obj.getFilePath())){
|
|
|
|
//提交审核
|
|
|
|
return ResultVOUtils.error(999,obj.getName()+"未上传资质证书!");
|
|
|
|
FilterCertSetsRequest filterCertSetsRequest = new FilterCertSetsRequest();
|
|
|
|
|
|
|
|
filterCertSetsRequest.setType(ConstantStatus.CERT_COMPANY);
|
|
|
|
|
|
|
|
filterCertSetsRequest.setNeed(1);
|
|
|
|
|
|
|
|
List<SupCertSetEntity> supCertSetEntities = supCertSetService.filterCertSets(filterCertSetsRequest);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//验证
|
|
|
|
|
|
|
|
ListIterator<SupCertSetEntity> iterable = supCertSetEntities.listIterator();
|
|
|
|
|
|
|
|
while (iterable.hasNext()) {
|
|
|
|
|
|
|
|
SupCertSetEntity supCertSetEntity = iterable.next();
|
|
|
|
|
|
|
|
if (supCertSetEntity.isNeed()) {
|
|
|
|
|
|
|
|
for (SupCertEntity supCertEntity : supCertEntityList) {
|
|
|
|
|
|
|
|
if (supCertEntity.getName().equals(supCertSetEntity.getName())) {
|
|
|
|
|
|
|
|
if (StrUtil.isNotEmpty(supCertEntity.getFilePath())) {
|
|
|
|
|
|
|
|
iterable.remove();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
String errMsg = "";
|
|
|
|
|
|
|
|
if (supCertSetEntities.size() > 0) {
|
|
|
|
|
|
|
|
for (SupCertSetEntity supCertSetEntity : supCertSetEntities) {
|
|
|
|
|
|
|
|
errMsg = errMsg + "," + supCertSetEntity.getName();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return ResultVOUtils.error(500, errMsg.substring(1) + "等证书未上传,无法提交审核!");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
String customerId = CustomUtil.getId(); //重新生成customerId
|
|
|
|
String customerId = CustomUtil.getId(); //重新生成customerId
|
|
|
|
CustomerContactEntity customerContactEntity = new CustomerContactEntity();
|
|
|
|
CustomerContactEntity customerContactEntity = new CustomerContactEntity();
|
|
|
@ -282,7 +307,7 @@ public class SupCompanyController {
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
@PostMapping("api/pur/supCompany/delete")
|
|
|
|
@PostMapping("api/pur/supCompany/delete")
|
|
|
|
public BaseResponse deleteSupCompany(@RequestBody DeleteRequest deleteRequest) {
|
|
|
|
public BaseResponse deleteSupCompany(@RequestBody DeleteRequest deleteRequest) {
|
|
|
|
boolean b = customerContactService.deleteById(Long.parseLong(deleteRequest.getId()));
|
|
|
|
boolean b = supCompanyService.deleteCompany(deleteRequest.getId());
|
|
|
|
if (b)
|
|
|
|
if (b)
|
|
|
|
return ResultVOUtils.success("删除成功");
|
|
|
|
return ResultVOUtils.success("删除成功");
|
|
|
|
else {
|
|
|
|
else {
|
|
|
|