@ -159,6 +159,70 @@ public class SupProductController {
}
}
@AuthRuleAnnotation ( "" )
@PostMapping ( "/directToCpt/sup/product/addRegistration" )
@Log ( title = "资质证书" , businessType = BusinessType . INSERT )
public BaseResponse directToCptAddRegistration ( @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" )
@ -198,6 +262,44 @@ public class SupProductController {
// }
}
@AuthRuleAnnotation ( "" )
@PostMapping ( "/directToCpt/sup/product/selectBind" )
public BaseResponse directToCptSelectBind ( @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 ( "/directToCpt/sup/product/modifyRegistration" )