|
|
|
@ -32,6 +32,7 @@ import com.glxp.api.service.auth.CustomerService;
|
|
|
|
|
import com.glxp.api.service.basic.ProductInfoService;
|
|
|
|
|
import com.glxp.api.service.basic.UdiProductService;
|
|
|
|
|
import com.glxp.api.util.HttpClient;
|
|
|
|
|
import com.glxp.api.util.alihealth.AlihealthUtils;
|
|
|
|
|
import com.glxp.api.util.udi.FilterUdiUtils;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
@ -59,7 +60,8 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
private CustomerService customerService;
|
|
|
|
|
@Resource
|
|
|
|
|
private ProductInfoService productInfoService;
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
private AlihealthUtils alihealthUtils;
|
|
|
|
|
/**
|
|
|
|
|
* 上传保存关联信息
|
|
|
|
|
*
|
|
|
|
@ -376,7 +378,16 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
.eq(RelCodeBatch::getParentCode, parentCode));
|
|
|
|
|
// codeTempEntity.getSupId()
|
|
|
|
|
//todo if(navList)是空的 1.查供应商key;2:根据parentCode查阿里接口;3:根据返回结果,再次查询
|
|
|
|
|
|
|
|
|
|
if(navList == null || navList.size() == 0 ){
|
|
|
|
|
BaseResponse baseResponse = alihealthUtils.relCodeInsert(codeTempEntity.getSupId(),parentCode);
|
|
|
|
|
if(baseResponse.getCode() == 20000){
|
|
|
|
|
// 插入成功就重新查询一下
|
|
|
|
|
navList = this.list(new LambdaQueryWrapper<RelCodeBatch>()
|
|
|
|
|
.eq(RelCodeBatch::getParentCode, parentCode));
|
|
|
|
|
}else {
|
|
|
|
|
log.error(baseResponse.getMessage());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((udiProductEntity != null && "1".equals(udiProductEntity.getPackLevel()))
|
|
|
|
|
|| (CollUtil.isNotEmpty(navList))
|
|
|
|
|