|
|
|
@ -30,6 +30,7 @@ import com.glxp.api.entity.sync.SyncDataSetEntity;
|
|
|
|
|
import com.glxp.api.entity.system.CompanyEntity;
|
|
|
|
|
import com.glxp.api.exception.JsonException;
|
|
|
|
|
import com.glxp.api.req.alihealth.AlihealthYljgCodedetailReqeust;
|
|
|
|
|
import com.glxp.api.req.alihealth.AlihealthYljgSinglerelationReqeust;
|
|
|
|
|
import com.glxp.api.req.alihealth.local.AlihealthRelCodeInsertReqeust;
|
|
|
|
|
import com.glxp.api.req.alihealth.local.AlihealthYljgLocaCodedetailReqeust;
|
|
|
|
|
import com.glxp.api.req.collect.RelCodeBatchRequest;
|
|
|
|
@ -45,6 +46,7 @@ import com.glxp.api.service.basic.UdiProductService;
|
|
|
|
|
import com.glxp.api.service.sync.SyncDataSetService;
|
|
|
|
|
import com.glxp.api.service.system.CompanyService;
|
|
|
|
|
import com.glxp.api.util.HttpClient;
|
|
|
|
|
import com.glxp.api.util.StringUtils;
|
|
|
|
|
import com.glxp.api.util.alihealth.AlihealthUtils;
|
|
|
|
|
import com.glxp.api.util.alihealth.AlihealthYljgUtils;
|
|
|
|
|
import com.glxp.api.util.udi.FilterUdiUtils;
|
|
|
|
@ -698,33 +700,81 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
@Resource
|
|
|
|
|
AlihealthYljgUtils alihealthYljgUtils;
|
|
|
|
|
// 处理阿里新增关联关系
|
|
|
|
|
public void addRelCodeAli(BaseResponse<AlihealthYljgSinglerelationResponse> baseResponse, String erpId){
|
|
|
|
|
AlihealthYljgSinglerelationResponse alihealthKytSinglerelationResponse = baseResponse.getData();
|
|
|
|
|
// 返回的码关联关系进行插入
|
|
|
|
|
RelCodeBatch relCodeBatch = alihealthKytSinglerelationResponse.disposeRelCodeBatch(erpId);
|
|
|
|
|
RelCodeBatch relCodeBatchOne = relCodeBatchService.getOne(new QueryWrapper<RelCodeBatch>().eq("productCode", relCodeBatch.getProductCode())
|
|
|
|
|
.last("limit 1")
|
|
|
|
|
);
|
|
|
|
|
if (Objects.isNull(relCodeBatchOne)) {
|
|
|
|
|
relCodeBatch.setCreateUser(erpId);
|
|
|
|
|
relCodeBatch.setCreateTime(new Date());
|
|
|
|
|
relCodeBatchService.save(relCodeBatch);
|
|
|
|
|
public void addRelCodeAli( Set<String> set, String erpId){
|
|
|
|
|
try {
|
|
|
|
|
List<String> relCodeBatchList =new ArrayList<>();
|
|
|
|
|
//2.下载关联关系存到关联关系表
|
|
|
|
|
for (String code : set) {
|
|
|
|
|
AlihealthYljgSinglerelationReqeust alihealthYljgSinglerelationReqeust = new AlihealthYljgSinglerelationReqeust();
|
|
|
|
|
alihealthYljgSinglerelationReqeust.setCode(code);
|
|
|
|
|
BaseResponse<AlihealthYljgSinglerelationResponse> baseResponse = alihealthYljgUtils.relCodeInsert(alihealthYljgSinglerelationReqeust);
|
|
|
|
|
if (baseResponse.getCode() == 20000) {
|
|
|
|
|
AlihealthYljgSinglerelationResponse alihealthKytSinglerelationResponse = baseResponse.getData();
|
|
|
|
|
// 返回的码关联关系进行插入
|
|
|
|
|
List<RelCodeBatch> batchList = alihealthKytSinglerelationResponse.disposeRelCodeBatch(erpId);
|
|
|
|
|
for (RelCodeBatch relCodeBatch : batchList) {
|
|
|
|
|
RelCodeBatch relCodeBatchOne = relCodeBatchService.getOne(new QueryWrapper<RelCodeBatch>().eq("curCode", relCodeBatch.getCurCode())
|
|
|
|
|
.last("limit 1")
|
|
|
|
|
);
|
|
|
|
|
if (Objects.isNull(relCodeBatchOne)) {
|
|
|
|
|
relCodeBatch.setCreateUser(erpId);
|
|
|
|
|
relCodeBatch.setCreateTime(new Date());
|
|
|
|
|
relCodeBatchService.save(relCodeBatch);
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
relCodeBatchService.update(relCodeBatch, new QueryWrapper<RelCodeBatch>().eq("productCode", relCodeBatch.getProductCode()));
|
|
|
|
|
}
|
|
|
|
|
Integer id = Objects.isNull(relCodeBatch.getId()) ? relCodeBatchOne.getId() : relCodeBatch.getId();
|
|
|
|
|
// 进行查询
|
|
|
|
|
List<RelCodeDetail> list = alihealthKytSinglerelationResponse.disposeRelRodeDetailList(id);
|
|
|
|
|
if (list != null && list.size() > 0) {
|
|
|
|
|
List curCodeList = new ArrayList();
|
|
|
|
|
for (RelCodeDetail relCodeDetail : list) {
|
|
|
|
|
curCodeList.add(relCodeDetail.getCurCode());
|
|
|
|
|
}
|
|
|
|
|
relCodeDetailService.remove(new QueryWrapper<RelCodeDetail>().in("curCode", curCodeList));
|
|
|
|
|
} else {
|
|
|
|
|
if(relCodeBatchOne.getOneLevelCount()!=null){
|
|
|
|
|
relCodeBatch.setOneLevelCount(relCodeBatchOne.getOneLevelCount() +relCodeBatch.getOneLevelCount() );
|
|
|
|
|
}
|
|
|
|
|
if(relCodeBatchOne.getTwoLevelCount()!=null){
|
|
|
|
|
relCodeBatch.setTwoLevelCount(relCodeBatchOne.getTwoLevelCount() +relCodeBatch.getTwoLevelCount() );
|
|
|
|
|
}
|
|
|
|
|
if(relCodeBatchOne.getThreeLevelCount()!=null){
|
|
|
|
|
relCodeBatch.setThreeLevelCount(relCodeBatchOne.getThreeLevelCount() +relCodeBatch.getThreeLevelCount() );
|
|
|
|
|
}
|
|
|
|
|
relCodeBatchService.update(relCodeBatch, new QueryWrapper<RelCodeBatch>().eq("curCode", relCodeBatch.getCurCode()));
|
|
|
|
|
}
|
|
|
|
|
relCodeBatchOne = relCodeBatchService.getOne(new QueryWrapper<RelCodeBatch>().eq("curCode", relCodeBatch.getCurCode()));
|
|
|
|
|
|
|
|
|
|
Integer id = relCodeBatchOne.getId();
|
|
|
|
|
relCodeBatchList.add(relCodeBatchOne.getCurCode());
|
|
|
|
|
|
|
|
|
|
relCodeDetailService.saveBatch(list);
|
|
|
|
|
// 进行查询
|
|
|
|
|
List<RelCodeDetail> list = alihealthKytSinglerelationResponse.disposeRelRodeDetailList(id);
|
|
|
|
|
if (list != null && list.size() > 0) {
|
|
|
|
|
List curCodeList = new ArrayList();
|
|
|
|
|
for (RelCodeDetail relCodeDetail : list) {
|
|
|
|
|
curCodeList.add(relCodeDetail.getCurCode());
|
|
|
|
|
}
|
|
|
|
|
relCodeDetailService.remove(new QueryWrapper<RelCodeDetail>().in("curCode", curCodeList));
|
|
|
|
|
|
|
|
|
|
relCodeDetailService.saveBatch(list);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
log.error("阿里调用码关联关系失败==="+baseResponse.getMessage());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}catch (Exception E){
|
|
|
|
|
E.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 父级编码
|
|
|
|
|
// if(relCodeBatchList!=null && relCodeBatchList.size() >0){
|
|
|
|
|
// List<RelCodeDetail> list = relCodeDetailService.list(
|
|
|
|
|
// new QueryWrapper<RelCodeDetail>().in("curCode",relCodeBatchList)
|
|
|
|
|
// );
|
|
|
|
|
// if(list!=null && list.size() >0){
|
|
|
|
|
// RelCodeBatch relCodeBatch =new RelCodeBatch();
|
|
|
|
|
// relCodeBatchService.update(relCodeBatch, new QueryWrapper<RelCodeBatch>().eq("productCode", relCodeBatch.getProductCode()));
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|