|
|
|
@ -84,58 +84,62 @@ public class ThirdAliDrugController extends BaseController {
|
|
|
|
|
filterUdiRelRequest.setUuid(thirdAliDrug.getUuid());
|
|
|
|
|
List<UdiProductEntity> udiInfoEntities = udiProductService.filterAllUdiInfo(filterUdiRelRequest);
|
|
|
|
|
List<String> nameCodeIn = new ArrayList<>();
|
|
|
|
|
if(udiInfoEntities!=null && udiInfoEntities.size() >0){
|
|
|
|
|
if (udiInfoEntities != null && udiInfoEntities.size() > 0) {
|
|
|
|
|
for (UdiProductEntity udiInfoEntity : udiInfoEntities) {
|
|
|
|
|
if(StringUtils.isNotEmpty(udiInfoEntity.getNameCode())){
|
|
|
|
|
if (StringUtils.isNotEmpty(udiInfoEntity.getNameCode())) {
|
|
|
|
|
nameCodeIn.add(udiInfoEntity.getNameCode());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
thirdAliDrug.setNameCodeIn(nameCodeIn);
|
|
|
|
|
// 不查本地库全查阿里的库
|
|
|
|
|
List<ThirdAliDrug> list = thirdAliDrugService.filterList(thirdAliDrug);
|
|
|
|
|
if(list == null || list.size() == 0){
|
|
|
|
|
AuthAliUser authAliUser = authAliUserService.getOne();
|
|
|
|
|
AlihealthThirdAliDrugInsertReqeust alihealthThirdAliDrugInsertReqeust = new AlihealthThirdAliDrugInsertReqeust();
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setErpId(authAliUser.getErpid());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setAppSecret(authAliUser.getAppsecret());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setManufactory(thirdAliDrug.getManufacturer());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setGjkSwitch(false);
|
|
|
|
|
AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeust = new AlihealthKytDrugrescodeReqeust();
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setPhysic_name(thirdAliDrug.getCpmctymc());
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setApproval_licence_no(thirdAliDrug.getApprovalNum());
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setPage_size(100);
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setPage(1);
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setApp_key(authAliUser.getAppkey());
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setRef_ent_id(authAliUser.getRefentid());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setAlihealthKytDrugrescodeReqeust(alihealthKytDrugrescodeReqeust);
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse baseResponse = alihealthBusController.thirdAliDrugList(alihealthThirdAliDrugInsertReqeust);
|
|
|
|
|
if (baseResponse.getCode() == 20000) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (thirdAliDrugService.addOrUpdate((List) baseResponse.getData())) {
|
|
|
|
|
list = thirdAliDrugService.filterList(thirdAliDrug);
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
log.info("供应商平台获取阿里和国家库码段信息===未查到产品信息");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AuthAliUser authAliUser = authAliUserService.getOne();
|
|
|
|
|
AlihealthThirdAliDrugInsertReqeust alihealthThirdAliDrugInsertReqeust = new AlihealthThirdAliDrugInsertReqeust();
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setErpId(authAliUser.getErpid());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setAppSecret(authAliUser.getAppsecret());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setManufactory(thirdAliDrug.getManufacturer());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setGjkSwitch(false);
|
|
|
|
|
AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeust = new AlihealthKytDrugrescodeReqeust();
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setPhysic_name(thirdAliDrug.getCpmctymc());
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setApproval_licence_no(thirdAliDrug.getApprovalNum());
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setPackage_spec(thirdAliDrug.getBzgg());
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setPrepn_spec(thirdAliDrug.getFormSpec());
|
|
|
|
|
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setPage_size(200);
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setPage(1);
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setApp_key(authAliUser.getAppkey());
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setRef_ent_id(authAliUser.getRefentid());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setAlihealthKytDrugrescodeReqeust(alihealthKytDrugrescodeReqeust);
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse baseResponse = alihealthBusController.thirdAliDrugList(alihealthThirdAliDrugInsertReqeust);
|
|
|
|
|
if (baseResponse.getCode() == 20000) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (thirdAliDrugService.addOrUpdate((List) baseResponse.getData())) {
|
|
|
|
|
list = thirdAliDrugService.filterList(thirdAliDrug);
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
log.info("供应商平台获取阿里和国家库码段信息出现错误===" + baseResponse.getMessage());
|
|
|
|
|
log.info("供应商平台获取阿里和国家库码段信息===未查到产品信息");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
log.info("供应商平台获取阿里和国家库码段信息出现错误===" + baseResponse.getMessage());
|
|
|
|
|
// udiProductEntity.setBasicPrductRemak8("供应商平台获取阿里和国家库码段信息出现错误===" + baseResponse.getMessage());
|
|
|
|
|
// error = "供应商平台获取阿里和国家库码段信息出现错误===" + baseResponse.getMessage();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
log.info("供应商平台获取阿里和国家库码段信息出现错误===" + e.getMessage());
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.info("供应商平台获取阿里和国家库码段信息出现错误===" + e.getMessage());
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
PageInfo<ThirdAliDrug> pageInfo = new PageInfo<>(list);
|
|
|
|
|
PageSimpleResponse<ThirdAliDrug> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
|