|
|
|
@ -7,7 +7,6 @@ import cn.hutool.http.HttpUtil;
|
|
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
|
|
import com.alibaba.fastjson.TypeReference;
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.api.constant.ConstantStatus;
|
|
|
|
@ -50,8 +49,6 @@ import org.springframework.stereotype.Service;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import java.util.*;
|
|
|
|
|
import java.util.regex.Matcher;
|
|
|
|
|
import java.util.regex.Pattern;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 耗材字典对照
|
|
|
|
@ -269,12 +266,157 @@ public class UdiContrastService {
|
|
|
|
|
ybHcflDetailFilterRequest.setPage(1);
|
|
|
|
|
ybHcflDetailFilterRequest.setGoodsCode(thrProductsEntity.getYbbm());
|
|
|
|
|
List<YbDrug> list = ybDrugService.getList(ybHcflDetailFilterRequest);
|
|
|
|
|
YbDrug ybDrug;
|
|
|
|
|
if (list != null && list.size() > 0) {
|
|
|
|
|
ybDrug = list.get(0);
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
return ResultVOUtils.error(500, "未能查询到此医保编码");
|
|
|
|
|
// udiProductEntity.setCpmctymc(thrProductsEntity.getName());
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isEmpty(ybDrug.getApprovalCode()) || StrUtil.isEmpty(ybDrug.getRegisteredProductName())) {
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|
// 本地查询先注释了
|
|
|
|
|
// 查询多玛融合库
|
|
|
|
|
List<ThirdAliDrug> thirdAliDrugList = new ArrayList<>();
|
|
|
|
|
AuthAliUser authAliUser = authAliUserService.getOne();
|
|
|
|
|
AlihealthThirdAliDrugInsertReqeust alihealthThirdAliDrugInsertReqeust = new AlihealthThirdAliDrugInsertReqeust();
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setErpId(authAliUser.getErpid());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setAppSecret(authAliUser.getAppsecret());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setSelectCodeRelMark(true);
|
|
|
|
|
// alihealthThirdAliDrugInsertReqeust.setManufactory(udiProductEntity.getManufactory());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setYbDrug(ybDrug);
|
|
|
|
|
AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeust = new AlihealthKytDrugrescodeReqeust();
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setPhysic_name(ybDrug.getRegisteredProductName());
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setApproval_licence_no(ybDrug.getApprovalCode());
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setPage_size(200);
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setPage(1);
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setApp_key(authAliUser.getAppkey());
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setRef_ent_id(authAliUser.getRefentid());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setAlihealthKytDrugrescodeReqeust(alihealthKytDrugrescodeReqeust);
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse<PageSimpleResponse<ThirdAliDrug>> baseResponse = alihealthBusController.thirdAliDrugList(alihealthThirdAliDrugInsertReqeust);
|
|
|
|
|
if (baseResponse.getCode() == 20000) {
|
|
|
|
|
thirdAliDrugList = baseResponse.getData().getList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("供应商平台获取阿里和国家库码段信息出现错误===" + e.getMessage());
|
|
|
|
|
}
|
|
|
|
|
// 处理药品数据
|
|
|
|
|
disposeDrugData(basicProductsCreateDto,thrProductsEntity,ybDrug,thirdAliDrugList,udiRelevanceEntity);
|
|
|
|
|
// setLevel(udiRelevanceEntity.getUuid());
|
|
|
|
|
UdiProductEntity byUuid = udiProductService.findByUuid(udiRelevanceEntity.getUuid());
|
|
|
|
|
udiRelevanceEntity = udiRelevanceService.insertDefaultLevel(udiRelevanceEntity, byUuid);
|
|
|
|
|
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity);
|
|
|
|
|
udiProductService.updateLevelCount(udiRelevanceEntity);
|
|
|
|
|
} else {
|
|
|
|
|
//器械
|
|
|
|
|
ThrInsMaterialFeeRequest request = new ThrInsMaterialFeeRequest();
|
|
|
|
|
request.setMedCatalogCode(thrProductsEntity.getYbbm());
|
|
|
|
|
List<BasicInsMaterialEntity> basicInsMaterialEntities = basicInsMaterialService.filterList(request);
|
|
|
|
|
if (basicInsMaterialEntities.size() > 0) {
|
|
|
|
|
basicInsMaterialEntity = basicInsMaterialEntities.get(0);
|
|
|
|
|
}
|
|
|
|
|
UdiProductEntity udiProductEntity = new UdiProductEntity();
|
|
|
|
|
BeanUtils.copyProperties(thrProductsEntity, udiProductEntity);
|
|
|
|
|
YbDrug ybDrug = new YbDrug();
|
|
|
|
|
udiProductEntity.setNameCode(thrProductsEntity.getCode());
|
|
|
|
|
udiProductEntity.setZczbhhzbapzbh(thrProductsEntity.getRegisterNo());
|
|
|
|
|
udiProductEntity.setPackUnit(thrProductsEntity.getMeasname());
|
|
|
|
|
if (basicInsMaterialEntity != null) {
|
|
|
|
|
udiProductEntity.setGgxh(basicInsMaterialEntity.getSpecification() != null ? basicInsMaterialEntity.getSpecification() : thrProductsEntity.getSpec());
|
|
|
|
|
udiProductEntity.setManufactory(basicInsMaterialEntity.getManufacturerName() != null ? basicInsMaterialEntity.getManufacturerName() : thrProductsEntity.getManufactory());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// udiProductEntity.setBzgg(thrProductsEntity.getSpec());
|
|
|
|
|
udiProductEntity.setGgxh(thrProductsEntity.getSpec());
|
|
|
|
|
udiProductEntity.setCpmctymc(thrProductsEntity.getName());
|
|
|
|
|
udiProductEntity.setYlqxzcrbarmc(thrProductsEntity.getManufactory());
|
|
|
|
|
//包装单位
|
|
|
|
|
udiProductEntity.setPrepnUnit(thrProductsEntity.getPrepnUnit() == null ? null : thrProductsEntity.getPrepnUnit());
|
|
|
|
|
udiProductEntity.setUuid(udiRelevanceEntity.getUuid());
|
|
|
|
|
udiProductEntity.setProductType(ConstantStatus.PRODUCT_TYPE_THIRD);
|
|
|
|
|
udiProductEntity.setDiType(1);
|
|
|
|
|
udiProductEntity.setScbssfbhph("是");
|
|
|
|
|
udiProductEntity.setScbssfbhscrq("是");
|
|
|
|
|
udiProductEntity.setScbssfbhsxrq("是");
|
|
|
|
|
udiProductEntity.setScbssfbhxlh("否");
|
|
|
|
|
udiProductEntity.setPackLevel(1 + "");
|
|
|
|
|
udiProductEntity.setProductsType(thrProductsEntity.getProductType());
|
|
|
|
|
udiProductEntity.setRequireScanCode(0);
|
|
|
|
|
udiProductEntity.setUpdateTime(new Date());
|
|
|
|
|
if (StrUtil.isEmpty(udiProductEntity.getPrice())) {
|
|
|
|
|
udiProductEntity.setPrice(null);
|
|
|
|
|
}
|
|
|
|
|
udiProductEntity = UdiInfoUtil.initUdiInfoEntity(udiProductEntity);
|
|
|
|
|
udiProductService.insertUdiInfo(udiProductEntity);
|
|
|
|
|
udiRelevanceEntity = udiRelevanceService.insertDefaultLevel(udiRelevanceEntity, udiProductEntity);
|
|
|
|
|
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity);
|
|
|
|
|
udiProductService.updateLevelCount(udiRelevanceEntity);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
//没有医保编码
|
|
|
|
|
Boolean aBoolean = insertProduct(thrProductsEntity, basicInsMaterialEntity, udiRelevanceEntity);
|
|
|
|
|
if (!aBoolean) {
|
|
|
|
|
throw new JsonException(500, "系统繁忙,");
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
// UdiProductEntity udiProductEntity = new UdiProductEntity();
|
|
|
|
|
// BeanUtils.copyProperties(thrProductsEntity, udiProductEntity);
|
|
|
|
|
// if (thrProductsEntity.getProductType() != 2){
|
|
|
|
|
// //不是药品就设置namecode
|
|
|
|
|
// udiProductEntity.setNameCode(thrProductsEntity.getCode());
|
|
|
|
|
// udiProductEntity.setZczbhhzbapzbh(thrProductsEntity.getRegisterNo());
|
|
|
|
|
// udiProductEntity.setPackUnit(thrProductsEntity.getMeasname());
|
|
|
|
|
// udiProductEntity.setGgxh(basicInsMaterialEntity != null ? basicInsMaterialEntity.getSpecification() : thrProductsEntity.getSpec());
|
|
|
|
|
// udiProductEntity.setManufactory(basicInsMaterialEntity != null ? basicInsMaterialEntity.getManufacturerName() : thrProductsEntity.getManufactory());
|
|
|
|
|
// }
|
|
|
|
|
// udiProductEntity.setBzgg(thrProductsEntity.getSpec());
|
|
|
|
|
// udiProductEntity.setCpmctymc(thrProductsEntity.getName());
|
|
|
|
|
// udiProductEntity.setYlqxzcrbarmc(thrProductsEntity.getManufactory());
|
|
|
|
|
//
|
|
|
|
|
// //包装单位
|
|
|
|
|
// udiProductEntity.setPrepnUnit(thrProductsEntity.getMeasname());
|
|
|
|
|
// udiProductEntity.setUuid(udiRelevanceEntity.getUuid());
|
|
|
|
|
// udiProductEntity.setProductType(ConstantStatus.PRODUCT_TYPE_THIRD);
|
|
|
|
|
// udiProductEntity.setDiType(1);
|
|
|
|
|
// udiProductEntity.setScbssfbhph("是");
|
|
|
|
|
// udiProductEntity.setScbssfbhscrq("是");
|
|
|
|
|
// udiProductEntity.setScbssfbhsxrq("是");
|
|
|
|
|
// udiProductEntity.setScbssfbhxlh("否");
|
|
|
|
|
//
|
|
|
|
|
// udiProductEntity.setProductsType(thrProductsEntity.getProductType());
|
|
|
|
|
// if (thrProductsEntity.getProductType() == 2){
|
|
|
|
|
// udiProductEntity.setRequireScanCode(1);
|
|
|
|
|
// udiProductEntity.setMajorStatus(1);
|
|
|
|
|
// }else {
|
|
|
|
|
// udiProductEntity.setRequireScanCode(0);
|
|
|
|
|
// }
|
|
|
|
|
// if (StrUtil.isEmpty(udiProductEntity.getPrice())) {
|
|
|
|
|
// udiProductEntity.setPrice(null);
|
|
|
|
|
// }
|
|
|
|
|
// udiProductEntity = UdiInfoUtil.initUdiInfoEntity(udiProductEntity);
|
|
|
|
|
// udiProductService.insertUdiInfo(udiProductEntity);
|
|
|
|
|
// udiRelevanceEntity = udiRelevanceService.insertDefaultLevel(udiRelevanceEntity, udiProductEntity);
|
|
|
|
|
// udiRelevanceService.insertUdiRelevance(udiRelevanceEntity);
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 处理药品数据
|
|
|
|
|
*
|
|
|
|
|
* @param thrProductsEntity
|
|
|
|
|
* @param ybDrug
|
|
|
|
|
* @param thirdAliDrugList
|
|
|
|
|
*/
|
|
|
|
|
public void disposeDrugData(BasicProductsCreateDto basicProductsCreateDto, ThrProductsEntity thrProductsEntity
|
|
|
|
|
, YbDrug ybDrug, List<ThirdAliDrug> thirdAliDrugList,UdiRelevanceEntity udiRelevanceEntity) {
|
|
|
|
|
UdiProductEntity udiProductEntity = new UdiProductEntity();
|
|
|
|
|
BeanUtils.copyProperties(thrProductsEntity, udiProductEntity);
|
|
|
|
|
// 数据处理
|
|
|
|
|
udiProductEntity.setId(IdUtil.getSnowflakeNextId());
|
|
|
|
|
// udiProductEntity.setNameCode(thrProductsEntity.getCode());
|
|
|
|
@ -296,16 +438,11 @@ public class UdiContrastService {
|
|
|
|
|
}
|
|
|
|
|
udiProductEntity.setUpdateTime(new Date());
|
|
|
|
|
udiProductEntity = UdiInfoUtil.initUdiInfoEntity(udiProductEntity);
|
|
|
|
|
|
|
|
|
|
if (list != null && list.size() > 0) {
|
|
|
|
|
ybDrug = list.get(0);
|
|
|
|
|
// 数据做处理好查询阿里接口
|
|
|
|
|
if (ybDrug.getApprovalCode().contains("(")) {
|
|
|
|
|
String[] charArr = ybDrug.getRegisteredProductName().split("\\(");
|
|
|
|
|
ybDrug.setApprovalCode(charArr[0]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// udiProductEntity.setNameCode(thrProductsEntity.getCode());
|
|
|
|
|
// 数据做处理好查询阿里接口 批准文号现在不做处理了
|
|
|
|
|
// if (ybDrug.getApprovalCode().contains("(")) {
|
|
|
|
|
// String[] charArr = ybDrug.getRegisteredProductName().split("\\(");
|
|
|
|
|
// ybDrug.setApprovalCode(charArr[0]);
|
|
|
|
|
// }
|
|
|
|
|
udiProductEntity.setPrepnSpec(ybDrug.getRealityOutlook());
|
|
|
|
|
udiProductEntity.setZczbhhzbapzbh(ybDrug.getApprovalCode());
|
|
|
|
|
udiProductEntity.setCpmctymc(ybDrug.getRegisteredProductName());
|
|
|
|
@ -319,102 +456,16 @@ public class UdiContrastService {
|
|
|
|
|
udiProductEntity.setPackUnit(ybDrug.getUnit());
|
|
|
|
|
//设置最小产品数量
|
|
|
|
|
udiProductEntity.setBhxjsl(ybDrug.getFactor());
|
|
|
|
|
|
|
|
|
|
//生产厂家
|
|
|
|
|
udiProductEntity.setManufactory(ybDrug.getCompanyNameSc());
|
|
|
|
|
//商品条码 essentialDrugMarkName sptm
|
|
|
|
|
// udiProductEntity.setSptm(ybDrug.getBusinessLicense());
|
|
|
|
|
udiProductEntity.setPrepnUnit(ybDrug.getRealityMedicinemodel());
|
|
|
|
|
} else {
|
|
|
|
|
return ResultVOUtils.error(500,"未能查询到此医保编码");
|
|
|
|
|
// udiProductEntity.setCpmctymc(thrProductsEntity.getName());
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isEmpty(udiProductEntity.getZczbhhzbapzbh()) || StrUtil.isEmpty(udiProductEntity.getCpmctymc())) {
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|
// 本地查询先注释了
|
|
|
|
|
List<ThirdAliDrug> thirdAliDrugList = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
// List<ThirdAliDrug> thirdAliDrugList = thirdAliDrugService.list(
|
|
|
|
|
// new QueryWrapper<ThirdAliDrug>()
|
|
|
|
|
// .eq(StringUtils.isNotEmpty(udiProductEntity.getCpmctymc()), "cpmctymc", udiProductEntity.getCpmctymc())
|
|
|
|
|
// .eq(StringUtils.isNotEmpty(udiProductEntity.getZczbhhzbapzbh()), "approvalNum", udiProductEntity.getZczbhhzbapzbh())
|
|
|
|
|
// .eq(StringUtils.isNotEmpty(udiProductEntity.getManufactory()), "manufacturer", udiProductEntity.getManufactory())
|
|
|
|
|
//
|
|
|
|
|
// );
|
|
|
|
|
// if (CollUtil.isNotEmpty(thirdAliDrugList)) {
|
|
|
|
|
//
|
|
|
|
|
// } else {
|
|
|
|
|
|
|
|
|
|
AuthAliUser authAliUser = authAliUserService.getOne();
|
|
|
|
|
AlihealthThirdAliDrugInsertReqeust alihealthThirdAliDrugInsertReqeust = new AlihealthThirdAliDrugInsertReqeust();
|
|
|
|
|
basicProductsCreateDto.setDrugCheckMark(basicProductsCreateDto.isDrugCheckMark());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setErpId(authAliUser.getErpid());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setAppSecret(authAliUser.getAppsecret());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setDrugCheckMark(basicProductsCreateDto.isDrugCheckMark());
|
|
|
|
|
// alihealthThirdAliDrugInsertReqeust.setManufactory(udiProductEntity.getManufactory());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setYbDrug(ybDrug);
|
|
|
|
|
AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeust = new AlihealthKytDrugrescodeReqeust();
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setPhysic_name(udiProductEntity.getCpmctymc());
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setApproval_licence_no(udiProductEntity.getZczbhhzbapzbh());
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setPage_size(200);
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setPage(1);
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setApp_key(authAliUser.getAppkey());
|
|
|
|
|
alihealthKytDrugrescodeReqeust.setRef_ent_id(authAliUser.getRefentid());
|
|
|
|
|
alihealthThirdAliDrugInsertReqeust.setAlihealthKytDrugrescodeReqeust(alihealthKytDrugrescodeReqeust);
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse<PageSimpleResponse<ThirdAliDrug>> baseResponse = alihealthBusController.thirdAliDrugList(alihealthThirdAliDrugInsertReqeust);
|
|
|
|
|
if (baseResponse.getCode() == 20000) {
|
|
|
|
|
thirdAliDrugList = baseResponse.getData().getList();
|
|
|
|
|
|
|
|
|
|
// if (thirdAliDrugService.addOrUpdate((List) baseResponse.getData())) {
|
|
|
|
|
// thirdAliDrugList = thirdAliDrugService.list(
|
|
|
|
|
// new QueryWrapper<ThirdAliDrug>()
|
|
|
|
|
// .eq(StringUtils.isNotEmpty(udiProductEntity.getCpmctymc()), "cpmctymc", udiProductEntity.getCpmctymc())
|
|
|
|
|
// .eq(StringUtils.isNotEmpty(udiProductEntity.getZczbhhzbapzbh()), "approvalNum", udiProductEntity.getZczbhhzbapzbh())
|
|
|
|
|
// .eq(StringUtils.isNotEmpty(udiProductEntity.getManufactory()), "manufacturer", udiProductEntity.getManufactory())
|
|
|
|
|
//
|
|
|
|
|
// );
|
|
|
|
|
// } else {
|
|
|
|
|
// log.info("供应商平台获取阿里和国家库码段信息===未查到产品信息");
|
|
|
|
|
// udiProductService.insertUdiInfo(udiProductEntity);
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
log.error("供应商平台获取阿里和国家库码段信息出现错误===" + baseResponse.getMessage());
|
|
|
|
|
// udiProductEntity.setBasicPrductRemak8("供应商平台获取阿里和国家库码段信息出现错误===" + baseResponse.getMessage());
|
|
|
|
|
// error = "供应商平台获取阿里和国家库码段信息出现错误===" + baseResponse.getMessage();
|
|
|
|
|
|
|
|
|
|
udiProductService.insertUdiInfo(udiProductEntity);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("供应商平台获取阿里和国家库码段信息出现错误===" + e.getMessage());
|
|
|
|
|
// udiProductEntity.setBasicPrductRemak8("供应商平台获取阿里和国家库码段信息出现错误===" + e.getMessage());
|
|
|
|
|
// error = "供应商平台获取阿里和国家库码段信息出现错误===" + e.getMessage();
|
|
|
|
|
udiProductService.insertUdiInfo(udiProductEntity);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// thirdAliDrugList = thirdAliDrugService.list(
|
|
|
|
|
// new QueryWrapper<ThirdAliDrug>()
|
|
|
|
|
// .eq(StringUtils.isNotEmpty(udiProductEntity.getCpmctymc()), "cpmctymc", udiProductEntity.getCpmctymc())
|
|
|
|
|
// .eq(StringUtils.isNotEmpty(udiProductEntity.getZczbhhzbapzbh()), "approvalNum", udiProductEntity.getZczbhhzbapzbh())
|
|
|
|
|
// .eq(StringUtils.isNotEmpty(udiProductEntity.getManufactory()), "manufacturer", udiProductEntity.getManufactory())
|
|
|
|
|
// );
|
|
|
|
|
// udiProductService.insertUdiInfo(udiProductEntity);
|
|
|
|
|
// }
|
|
|
|
|
if (thirdAliDrugList != null && thirdAliDrugList.size() > 0) {
|
|
|
|
|
List<CodeRel> codeRelArrayList = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < thirdAliDrugList.size(); i++) {
|
|
|
|
|
ThirdAliDrug thirdAliDrug = thirdAliDrugList.get(i);
|
|
|
|
|
|
|
|
|
|
udiProductEntity.setNameCode(thirdAliDrug.getNameCode());
|
|
|
|
|
|
|
|
|
|
// 数据处理
|
|
|
|
|
udiProductEntity.setPrepnSpec(CopyUtils.copyNullStr(udiProductEntity.getPrepnSpec(), thirdAliDrug.getFormSpec()));
|
|
|
|
|
udiProductEntity.setZczbhhzbapzbh(CopyUtils.copyNullStr(udiProductEntity.getZczbhhzbapzbh(), thirdAliDrug.getApprovalNum()));
|
|
|
|
@ -423,15 +474,8 @@ public class UdiContrastService {
|
|
|
|
|
|
|
|
|
|
udiProductEntity.setBzgg(CopyUtils.copyNullStr(udiProductEntity.getBzgg(), thirdAliDrug.getBzgg()));
|
|
|
|
|
udiProductEntity.setPackRatio(CopyUtils.copyNullStr(udiProductEntity.getPackRatio(), thirdAliDrug.getPackRatio()));
|
|
|
|
|
// udiProductEntity.setMatrial(ybDrug.getMaterialName());
|
|
|
|
|
// udiProductEntity.setPackMatrial(ybDrug.getMaterialName());
|
|
|
|
|
// udiProductEntity.setMedicareType(setMedicareType(ybDrug.getProductInsuranceType()));
|
|
|
|
|
//最小产品单位
|
|
|
|
|
udiProductEntity.setPackUnit(CopyUtils.copyNullStr(udiProductEntity.getPackUnit(), thirdAliDrug.getPackUnitName()));
|
|
|
|
|
//设置最小产品数量
|
|
|
|
|
// udiProductEntity.setBhxjsl(ybDrug.getFactor());
|
|
|
|
|
//生产厂家
|
|
|
|
|
// udiProductEntity.setManufactory(thirdAliDrug.getManufacturer());
|
|
|
|
|
//商品条码 essentialDrugMarkName sptm
|
|
|
|
|
// udiProductEntity.setSptm(ybDrug.getBusinessLicense());
|
|
|
|
|
udiProductEntity.setPrepnUnit(CopyUtils.copyNullStr(udiProductEntity.getPrepnUnit(), thirdAliDrug.getPrepnUnitName()));
|
|
|
|
@ -468,11 +512,10 @@ public class UdiContrastService {
|
|
|
|
|
udiProductEntity.setDiType(1);
|
|
|
|
|
}
|
|
|
|
|
// udiProductEntity.setPackUnit(thirdAliDrug.getPackUnitName());
|
|
|
|
|
|
|
|
|
|
udiProductEntity.setId(IdUtil.getSnowflakeNextId());
|
|
|
|
|
|
|
|
|
|
// 多码融合表拼接参数
|
|
|
|
|
if (basicProductsCreateDto.isDrugCheckMark() && !thirdAliDrug.isDmcx()) {
|
|
|
|
|
if (basicProductsCreateDto.isAddCodeRelMark()) {
|
|
|
|
|
CodeRel codeRel = new CodeRel();
|
|
|
|
|
codeRel.setDrugCode(thirdAliDrug.getNameCode());
|
|
|
|
|
codeRel.setUpdateTime(new Date());
|
|
|
|
@ -499,7 +542,7 @@ public class UdiContrastService {
|
|
|
|
|
log.error("明细分类转换出现错误" + e.getMessage());
|
|
|
|
|
}
|
|
|
|
|
// 上传到多码融合表
|
|
|
|
|
if (basicProductsCreateDto.isDrugCheckMark()
|
|
|
|
|
if (basicProductsCreateDto.isAddCodeRelMark()
|
|
|
|
|
&& CollUtil.isNotEmpty(codeRelArrayList)) {
|
|
|
|
|
this.codeRelUpdateBatch(codeRelArrayList);
|
|
|
|
|
}
|
|
|
|
@ -508,104 +551,6 @@ public class UdiContrastService {
|
|
|
|
|
udiProductService.insertUdiInfo(udiProductEntity);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// setLevel(udiRelevanceEntity.getUuid());
|
|
|
|
|
UdiProductEntity byUuid = udiProductService.findByUuid(udiRelevanceEntity.getUuid());
|
|
|
|
|
udiRelevanceEntity = udiRelevanceService.insertDefaultLevel(udiRelevanceEntity, byUuid);
|
|
|
|
|
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity);
|
|
|
|
|
udiProductService.updateLevelCount(udiRelevanceEntity);
|
|
|
|
|
} else {
|
|
|
|
|
//器械
|
|
|
|
|
ThrInsMaterialFeeRequest request = new ThrInsMaterialFeeRequest();
|
|
|
|
|
request.setMedCatalogCode(thrProductsEntity.getYbbm());
|
|
|
|
|
List<BasicInsMaterialEntity> basicInsMaterialEntities = basicInsMaterialService.filterList(request);
|
|
|
|
|
if (basicInsMaterialEntities.size() > 0) {
|
|
|
|
|
basicInsMaterialEntity = basicInsMaterialEntities.get(0);
|
|
|
|
|
}
|
|
|
|
|
UdiProductEntity udiProductEntity = new UdiProductEntity();
|
|
|
|
|
BeanUtils.copyProperties(thrProductsEntity, udiProductEntity);
|
|
|
|
|
udiProductEntity.setNameCode(thrProductsEntity.getCode());
|
|
|
|
|
udiProductEntity.setZczbhhzbapzbh(thrProductsEntity.getRegisterNo());
|
|
|
|
|
udiProductEntity.setPackUnit(thrProductsEntity.getMeasname());
|
|
|
|
|
if (basicInsMaterialEntity != null) {
|
|
|
|
|
udiProductEntity.setGgxh(basicInsMaterialEntity.getSpecification() != null ? basicInsMaterialEntity.getSpecification() : thrProductsEntity.getSpec());
|
|
|
|
|
udiProductEntity.setManufactory(basicInsMaterialEntity.getManufacturerName() != null ? basicInsMaterialEntity.getManufacturerName() : thrProductsEntity.getManufactory());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// udiProductEntity.setBzgg(thrProductsEntity.getSpec());
|
|
|
|
|
udiProductEntity.setGgxh(thrProductsEntity.getSpec());
|
|
|
|
|
udiProductEntity.setCpmctymc(thrProductsEntity.getName());
|
|
|
|
|
udiProductEntity.setYlqxzcrbarmc(thrProductsEntity.getManufactory());
|
|
|
|
|
//包装单位
|
|
|
|
|
udiProductEntity.setPrepnUnit(thrProductsEntity.getPrepnUnit() == null ? null : thrProductsEntity.getPrepnUnit());
|
|
|
|
|
udiProductEntity.setUuid(udiRelevanceEntity.getUuid());
|
|
|
|
|
udiProductEntity.setProductType(ConstantStatus.PRODUCT_TYPE_THIRD);
|
|
|
|
|
udiProductEntity.setDiType(1);
|
|
|
|
|
udiProductEntity.setScbssfbhph("是");
|
|
|
|
|
udiProductEntity.setScbssfbhscrq("是");
|
|
|
|
|
udiProductEntity.setScbssfbhsxrq("是");
|
|
|
|
|
udiProductEntity.setScbssfbhxlh("否");
|
|
|
|
|
udiProductEntity.setPackLevel(1 + "");
|
|
|
|
|
udiProductEntity.setProductsType(thrProductsEntity.getProductType());
|
|
|
|
|
udiProductEntity.setRequireScanCode(0);
|
|
|
|
|
udiProductEntity.setUpdateTime(new Date());
|
|
|
|
|
if (StrUtil.isEmpty(udiProductEntity.getPrice())) {
|
|
|
|
|
udiProductEntity.setPrice(null);
|
|
|
|
|
}
|
|
|
|
|
udiProductEntity = UdiInfoUtil.initUdiInfoEntity(udiProductEntity);
|
|
|
|
|
udiProductService.insertUdiInfo(udiProductEntity);
|
|
|
|
|
udiRelevanceEntity = udiRelevanceService.insertDefaultLevel(udiRelevanceEntity, udiProductEntity);
|
|
|
|
|
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity);
|
|
|
|
|
udiProductService.updateLevelCount(udiRelevanceEntity);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
//没有医保编码
|
|
|
|
|
Boolean aBoolean = insertProduct(thrProductsEntity, basicInsMaterialEntity, udiRelevanceEntity);
|
|
|
|
|
if (!aBoolean) {
|
|
|
|
|
throw new JsonException(500, "系统繁忙,");
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
// UdiProductEntity udiProductEntity = new UdiProductEntity();
|
|
|
|
|
// BeanUtils.copyProperties(thrProductsEntity, udiProductEntity);
|
|
|
|
|
// if (thrProductsEntity.getProductType() != 2){
|
|
|
|
|
// //不是药品就设置namecode
|
|
|
|
|
// udiProductEntity.setNameCode(thrProductsEntity.getCode());
|
|
|
|
|
// udiProductEntity.setZczbhhzbapzbh(thrProductsEntity.getRegisterNo());
|
|
|
|
|
// udiProductEntity.setPackUnit(thrProductsEntity.getMeasname());
|
|
|
|
|
// udiProductEntity.setGgxh(basicInsMaterialEntity != null ? basicInsMaterialEntity.getSpecification() : thrProductsEntity.getSpec());
|
|
|
|
|
// udiProductEntity.setManufactory(basicInsMaterialEntity != null ? basicInsMaterialEntity.getManufacturerName() : thrProductsEntity.getManufactory());
|
|
|
|
|
// }
|
|
|
|
|
// udiProductEntity.setBzgg(thrProductsEntity.getSpec());
|
|
|
|
|
// udiProductEntity.setCpmctymc(thrProductsEntity.getName());
|
|
|
|
|
// udiProductEntity.setYlqxzcrbarmc(thrProductsEntity.getManufactory());
|
|
|
|
|
//
|
|
|
|
|
// //包装单位
|
|
|
|
|
// udiProductEntity.setPrepnUnit(thrProductsEntity.getMeasname());
|
|
|
|
|
// udiProductEntity.setUuid(udiRelevanceEntity.getUuid());
|
|
|
|
|
// udiProductEntity.setProductType(ConstantStatus.PRODUCT_TYPE_THIRD);
|
|
|
|
|
// udiProductEntity.setDiType(1);
|
|
|
|
|
// udiProductEntity.setScbssfbhph("是");
|
|
|
|
|
// udiProductEntity.setScbssfbhscrq("是");
|
|
|
|
|
// udiProductEntity.setScbssfbhsxrq("是");
|
|
|
|
|
// udiProductEntity.setScbssfbhxlh("否");
|
|
|
|
|
//
|
|
|
|
|
// udiProductEntity.setProductsType(thrProductsEntity.getProductType());
|
|
|
|
|
// if (thrProductsEntity.getProductType() == 2){
|
|
|
|
|
// udiProductEntity.setRequireScanCode(1);
|
|
|
|
|
// udiProductEntity.setMajorStatus(1);
|
|
|
|
|
// }else {
|
|
|
|
|
// udiProductEntity.setRequireScanCode(0);
|
|
|
|
|
// }
|
|
|
|
|
// if (StrUtil.isEmpty(udiProductEntity.getPrice())) {
|
|
|
|
|
// udiProductEntity.setPrice(null);
|
|
|
|
|
// }
|
|
|
|
|
// udiProductEntity = UdiInfoUtil.initUdiInfoEntity(udiProductEntity);
|
|
|
|
|
// udiProductService.insertUdiInfo(udiProductEntity);
|
|
|
|
|
// udiRelevanceEntity = udiRelevanceService.insertDefaultLevel(udiRelevanceEntity, udiProductEntity);
|
|
|
|
|
// udiRelevanceService.insertUdiRelevance(udiRelevanceEntity);
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -639,6 +584,11 @@ public class UdiContrastService {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除多玛融合库
|
|
|
|
|
*
|
|
|
|
|
* @param codeRel
|
|
|
|
|
*/
|
|
|
|
|
public void deleteRelCode(CodeRel codeRel) {
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
@ -667,7 +617,7 @@ public class UdiContrastService {
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
if (baseResponse.getCode() == 20000) {
|
|
|
|
|
thirdAliDrugList =baseResponse.getData();
|
|
|
|
|
thirdAliDrugList = baseResponse.getData();
|
|
|
|
|
} else {
|
|
|
|
|
log.error("国家库===查询选入数据失败===" + baseResponse.getMessage());
|
|
|
|
|
|
|
|
|
@ -681,6 +631,7 @@ public class UdiContrastService {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<ThirdAliDrug> disposeYbDrugList(List<ThirdAliDrug> thirdAliDrugList, YbDrug ybDrug, List<String> codeIn) {
|
|
|
|
|
List<ThirdAliDrug> list1 = new ArrayList<>();
|
|
|
|
|
String result = null;
|
|
|
|
|