增加调用阿里查询药品码段信息

选入药品之后判断国家库有没有有就获取 没有就去调用阿里接口
dev_unify
qiuyt 4 months ago
parent 9d0c16cb86
commit 864ec46a6e

@ -400,6 +400,13 @@
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/resources/lib/alicode-1.0.jar</systemPath>
</dependency>
<!-- javassist -->
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.28.0-GA</version>
</dependency>
</dependencies>
<build>

@ -1,23 +1,17 @@
package com.glxp.api.controller.alihealth;
import cn.hutool.http.HttpUtil;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.glxp.api.annotation.Log;
import com.glxp.api.common.enums.ResultEnum;
import com.glxp.api.common.res.BaseResponse;
import com.glxp.api.common.util.ResultVOUtils;
import com.glxp.api.constant.BusinessType;
import com.glxp.api.entity.collect.RelCodeBatch;
import com.glxp.api.req.alihealth.AlihealthKytGetentinfoReqeust;
import com.glxp.api.req.alihealth.AlihealthRelCodeInsertReqeust;
import com.glxp.api.req.system.DeleteRequest;
import com.glxp.api.req.thrsys.AuthCompanyRequest;
import com.glxp.api.req.alihealth.local.AlihealthRelCodeInsertReqeust;
import com.glxp.api.res.alihealth.AlihealthKytGetentinfoResponse;
import com.glxp.api.util.alihealth.AlihealthUtils;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;

@ -12,6 +12,7 @@ import com.glxp.api.common.util.ResultVOUtils;
import com.glxp.api.constant.AsyncDiDlHelper;
import com.glxp.api.constant.BusinessType;
import com.glxp.api.constant.ConstantStatus;
import com.glxp.api.controller.BaseController;
import com.glxp.api.entity.basic.CompanyProductRelevanceEntity;
import com.glxp.api.entity.basic.ProductInfoEntity;
import com.glxp.api.entity.basic.UdiProductEntity;

@ -1,20 +1,70 @@
package com.glxp.api.controller.test;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.glxp.api.common.res.BaseResponse;
import com.glxp.api.entity.collect.RelCodeBatch;
import com.glxp.api.entity.thrsys.ThirdAliDrug;
import com.glxp.api.req.alihealth.AlihealthKytDrugrescodeReqeust;
import com.glxp.api.req.alihealth.local.AlihealthThirdAliDrugInsertReqeust;
import com.glxp.api.service.thrsys.ThirdAliDrugService;
import com.glxp.api.util.alihealth.AlihealthUtils;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.Date;
import java.util.List;
import java.util.Objects;
@RestController
public class TestCodeController {
@Resource
private AlihealthUtils alihealthUtils;
@Resource
private ThirdAliDrugService thirdAliDrugService;
// @PostMapping("/test")
// public BaseResponse test() {
// return alihealthUtils.relCodeInsert("73157692795424", "88979920013901715365");
// }
@PostMapping("/test1")
public BaseResponse test() {
AlihealthThirdAliDrugInsertReqeust alihealthThirdAliDrugInsertReqeust = new AlihealthThirdAliDrugInsertReqeust();
alihealthThirdAliDrugInsertReqeust.setErpId("123");
alihealthThirdAliDrugInsertReqeust.setAppSecret("5231c601505706a9d49823c3dfe2cb01");
AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeust = new AlihealthKytDrugrescodeReqeust();
alihealthKytDrugrescodeReqeust.setPhysic_name("苯巴比妥片");
// alihealthKytDrugrescodeReqeust.setApproval_licence_no();
// alihealthKytDrugrescodeReqeust.setStart_date();
// alihealthKytDrugrescodeReqeust.setEnd_date();
// alihealthKytDrugrescodeReqeust.setEnt_name();
// alihealthKytDrugrescodeReqeust.setPackage_spec();
// alihealthKytDrugrescodeReqeust.setPrepn_spec();
alihealthKytDrugrescodeReqeust.setPage_size(20);
alihealthKytDrugrescodeReqeust.setPage(1);
alihealthKytDrugrescodeReqeust.setApp_key("31721223");
alihealthKytDrugrescodeReqeust.setRef_ent_id("ef99b78bd9c54c1284f813149c858fb0");
alihealthThirdAliDrugInsertReqeust.setAlihealthKytDrugrescodeReqeust(alihealthKytDrugrescodeReqeust);
BaseResponse<List<ThirdAliDrug>> baseResponse = alihealthUtils.thirdAliDrugInsert(alihealthThirdAliDrugInsertReqeust);
if(baseResponse.getCode() == 20000){
List<ThirdAliDrug> list = baseResponse.getData();
if(list!=null && list.size() >0){
for (ThirdAliDrug thirdAliDrug : list) {
ThirdAliDrug thirdAliDrugNew = thirdAliDrugService.getOne(new QueryWrapper<ThirdAliDrug>().eq("nameCode", thirdAliDrug.getNameCode())
.last("limit 1")
);
if (Objects.isNull(thirdAliDrugNew)) {
thirdAliDrugService.save(thirdAliDrug);
} else {
thirdAliDrugService.update(thirdAliDrug, new QueryWrapper<ThirdAliDrug>().eq("nameCode", thirdAliDrug.getNameCode()));
}
}
}
}
return alihealthUtils.thirdAliDrugInsert(alihealthThirdAliDrugInsertReqeust);
}
}

@ -123,7 +123,42 @@ public class ThirdAliDrug implements Serializable {
@ApiModelProperty(value = "更新时间")
private Date updateTime;
/**
*
*/
@TableField(value = "prepnUnit")
@ApiModelProperty(value = "制剂单位描述")
private String prepnUnit;
/**
*
*/
@TableField(value = "prepnUnitName")
@ApiModelProperty(value = "制剂单位描述")
private String prepnUnitName;
/**
*
*/
@TableField(value = "physicDetailType")
@ApiModelProperty(value = "药品详情类型")
private String physicDetailType;
/**
*
*/
@TableField(value = "physicDetailTypeDesc")
@ApiModelProperty(value = "药品类型详情描述")
private String physicDetailTypeDesc;
/**
*
*/
@TableField(value = "physicTypeDesc")
@ApiModelProperty(value = "药品类型描述")
private String physicTypeDesc;
/**
*
*/
@TableField(value = "packUnitName")
@ApiModelProperty(value = "包装单位")
private String packUnitName;
private static final long serialVersionUID = 1L;

@ -0,0 +1,24 @@
package com.glxp.api.req.alihealth;
import io.swagger.models.auth.In;
import lombok.Data;
@Data
public class AlihealthKytDrugrescodeReqeust extends AlihealthKytCommonParametersReqeust {
private String ref_ent_id;
private String physic_name;
private String approval_licence_no;
private String start_date;
private String end_date;
private String ent_name;
private String package_spec;
private String prepn_spec;
private Integer page_size;
private Integer page;
public AlihealthKytDrugrescodeReqeust(){
this.setMethod("alibaba.alihealth.drug.kyt.drugrescode");
}
}

@ -0,0 +1,11 @@
package com.glxp.api.req.alihealth.local;
import com.glxp.api.req.alihealth.AlihealthKytDrugrescodeReqeust;
import lombok.Data;
@Data
public class AlihealthThirdAliDrugInsertReqeust {
private String erpId;
private String appSecret;
private AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeust;
}

@ -3,6 +3,7 @@ package com.glxp.api.res.alihealth;
import cn.hutool.json.JSONObject;
import com.alibaba.fastjson.JSONArray;
import lombok.Data;
import org.apache.commons.lang.StringUtils;
import org.apache.poi.ss.formula.functions.T;
import java.util.Map;
@ -14,6 +15,11 @@ public class AlihealthKytCommonParametersResponse {
private String response_success;
public boolean judgeCall(){
if(StringUtils.isNotEmpty(this.getMsg_info()) && this.getMsg_info().equals("调用成功")){
return true;
}
return false;
}
}

@ -0,0 +1,111 @@
package com.glxp.api.res.alihealth;
import java.util.Date;
import cn.hutool.json.JSONArray;
import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil;
import com.glxp.api.entity.collect.RelCodeDetail;
import com.glxp.api.entity.thrsys.ThirdAliDrug;
import lombok.Data;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.BeanUtils;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Objects;
@Data
public class AlihealthKytDrugrescodeResponse extends AlihealthKytCommonParametersResponse {
private Integer total_num;
private JSONArray drug_table_dto;
private Integer page;
private Integer page_size;
public AlihealthKytDrugrescodeResponse(String json) {
// 初始化请求的值
cn.hutool.json.JSONObject jsonObject = JSONUtil.parseObj(json);
JSONObject jsonObjectResult = null;
for (String s : jsonObject.keySet()) {
jsonObjectResult = jsonObject.getJSONObject(s).getJSONObject("result");
}
AlihealthKytCommonParametersResponse alihealthKytCommonParametersResponse = JSONUtil.toBean(jsonObjectResult.toString(),
AlihealthKytCommonParametersResponse.class);
BeanUtils.copyProperties(alihealthKytCommonParametersResponse, this);
if (StringUtils.isNotEmpty(this.getMsg_info())
&& this.getMsg_info().equals("调用成功")
) {
this.disposeResult(jsonObjectResult);
}
}
public void disposeResult(JSONObject jsonObjectResult) {
JSONObject jsonObjectModel = jsonObjectResult.getJSONObject("model");
if (!Objects.isNull(jsonObjectModel)) {
this.setTotal_num(jsonObjectModel.getInt("total_num"));
this.setDrug_table_dto(jsonObjectModel.getJSONObject("result_list").getJSONArray("drug_table_dto"));
this.setPage(jsonObjectModel.getInt("page"));
this.setPage_size(jsonObjectModel.getInt("page_size"));
}
}
public List<ThirdAliDrug> disposeThirdAliDrugList(String erpId) {
List<ThirdAliDrug> list = new ArrayList<>();
List<JSONObject> jsonArray = (List) this.getDrug_table_dto();
if (jsonArray != null && jsonArray.size() > 0) {
for (JSONObject jsonObject : jsonArray) {
if (!Objects.isNull(jsonObject)) {
ThirdAliDrug thirdAliDrugShare = new ThirdAliDrug();
// thirdAliDrug.setId();
thirdAliDrugShare.setType(jsonObject.getStr("physic_type"));
thirdAliDrugShare.setManufacturer(jsonObject.getStr("ent_name"));
thirdAliDrugShare.setCpmctymc(jsonObject.getStr("physic_name"));
thirdAliDrugShare.setForm(jsonObject.getStr("prepn_type_desc"));
thirdAliDrugShare.setSpmc(jsonObject.getStr("prod_name"));
thirdAliDrugShare.setErpId(erpId);
thirdAliDrugShare.setCreateTime(new Date());
thirdAliDrugShare.setUpdateTime(new Date());
thirdAliDrugShare.setPhysicDetailType(jsonObject.getStr("physic_detail_type"));
thirdAliDrugShare.setPhysicDetailTypeDesc(jsonObject.getStr("physic_detail_type_desc"));
thirdAliDrugShare.setPhysicTypeDesc(jsonObject.getStr("physic_type_desc"));
// 阿里额外的字段 prepn_unit prepn_unit_name physic_detail_type physic_detail_type_desc physic_type_desc
;
List<JSONObject> jsonArraySubType = (List) jsonObject.getJSONObject("sub_type_list").getJSONArray("sub_type_list");
if (jsonArraySubType != null && jsonArraySubType.size() > 0) {
for (JSONObject oubType : jsonArraySubType) {
ThirdAliDrug thirdAliDrugShareTwo = new ThirdAliDrug();
BeanUtils.copyProperties(thirdAliDrugShare,thirdAliDrugShareTwo);
thirdAliDrugShareTwo.setFormSpec(oubType.getStr("prepn_spec"));
thirdAliDrugShareTwo.setBzgg(oubType.getStr("package_spec"));
thirdAliDrugShareTwo.setApprovalNum(oubType.getStr("approve_no"));
thirdAliDrugShareTwo.setPrepnUnit(oubType.getStr("prepn_unit"));
thirdAliDrugShareTwo.setPrepnUnitName(oubType.getStr("prepn_unit_name"));
thirdAliDrugShareTwo.setPackUnitName(oubType.getStr("pack_unit_name"));
if (oubType.containsKey("code_res_list")) {
List<JSONObject> codeReslist = (List) oubType.getJSONObject("code_res_list").getJSONArray("code_res_list");
for (JSONObject codeRes : codeReslist) {
ThirdAliDrug thirdAliDrug = new ThirdAliDrug();
BeanUtils.copyProperties(thirdAliDrugShareTwo,thirdAliDrug);
// 码有值才加入
thirdAliDrug.setNameCode(codeRes.getStr("res_code"));
thirdAliDrug.setPackRatio(codeRes.getStr("pkg_ratio"));
thirdAliDrug.setPackLevel(StringUtils.isEmpty(codeRes.getStr("code_level")) ? "0" : codeRes.getStr("code_level"));
list.add(thirdAliDrug);
}
}
}
}
}
}
}
return list;
}
}

@ -26,4 +26,8 @@ public class CustomServiceImpl<M extends BaseMapperPlus<M,T,T>, T> extends Servi
public boolean replaceBatch(List<T> entityList) {
return baseMapper.replaceBatchs(entityList);
}
public static void main(String[] args) {
}
}

@ -3,6 +3,12 @@ package com.glxp.api.service.basic;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.IdUtil;
import cn.hutool.core.util.StrUtil;
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.constant.ConstantStatus;
import com.glxp.api.dao.basic.UdiRelevanceDao;
import com.glxp.api.entity.basic.UdiProductEntity;
@ -10,32 +16,38 @@ import com.glxp.api.entity.basic.UdiRelevanceEntity;
import com.glxp.api.entity.thrsys.*;
import com.glxp.api.exception.JsonException;
import com.glxp.api.http.NmpaUdiClient;
import com.glxp.api.req.alihealth.AlihealthKytDrugrescodeReqeust;
import com.glxp.api.req.alihealth.local.AlihealthThirdAliDrugInsertReqeust;
import com.glxp.api.req.basic.UdiCombineRequest;
import com.glxp.api.req.basic.FilterUdiRelRequest;
import com.glxp.api.req.basic.YbDrugDetailFilterRequest;
import com.glxp.api.req.thrsys.FilterThrProductsRequest;
import com.glxp.api.req.thrsys.ThrInsDrugFeeRequest;
import com.glxp.api.req.thrsys.ThrInsMaterialFeeRequest;
import com.glxp.api.res.PageSimpleResponse;
import com.glxp.api.res.basic.UdiRelevanceResponse;
import com.glxp.api.service.thrsys.BasicInsMaterialService;
import com.glxp.api.service.thrsys.ThirdAliDrugService;
import com.glxp.api.service.thrsys.ThrProductsService;
import com.glxp.api.service.thrsys.YbDrugService;
import com.glxp.api.util.*;
import com.glxp.api.util.alihealth.AlihealthUtils;
import com.glxp.api.util.udi.UdiInfoUtil;
import lombok.extern.slf4j.Slf4j;
import org.jfree.util.Log;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.*;
/**
*
*/
@Service
@Slf4j
public class UdiContrastService {
@Resource
@ -55,6 +67,10 @@ public class UdiContrastService {
BasicInsMaterialService basicInsMaterialService;
@Resource
YbDrugService ybDrugService;
@Resource
private AlihealthUtils alihealthUtils;
@Value("${UDI_SERVER_URL}")
private String udiUrl;
public boolean isExit(String originUuid, String mainId, String thirdSys) {
@ -204,7 +220,7 @@ public class UdiContrastService {
@Resource
ThirdAliDrugService thirdAliDrugService;
@Transactional
public void createOnlyMainId(String mainId) {
FilterThrProductsRequest filterThrProductsRequest = new FilterThrProductsRequest();
filterThrProductsRequest.setCode(mainId);
@ -275,8 +291,86 @@ public class UdiContrastService {
}
udiProductEntity.setUpdateTime(new Date());
udiProductEntity = UdiInfoUtil.initUdiInfoEntity(udiProductEntity);
List<ThirdAliDrug> thirdAliDrugList = thirdAliDrugService.findByByApproved(ybDrug.getApprovalCode());
List<ThirdAliDrug> thirdAliDrugList = thirdAliDrugService.list(
new QueryWrapper<ThirdAliDrug>()
.eq(StringUtils.isNotEmpty(thrProductsEntity.getName()),"cpmctymc",thrProductsEntity.getName())
.eq(StringUtils.isNotEmpty(thrProductsEntity.getZczbhhzbapzbh()),"approvalNum",thrProductsEntity.getZczbhhzbapzbh())
);
if (CollUtil.isNotEmpty(thirdAliDrugList)) {
} else {
Map map = new HashMap();
if(StringUtils.isNotEmpty(thrProductsEntity.getName())){
map.put("cpmctymc",thrProductsEntity.getName());
}
if(StringUtils.isNotEmpty(thrProductsEntity.getZczbhhzbapzbh())){
map.put("approvalNum",thrProductsEntity.getZczbhhzbapzbh());
}
List<ThirdAliDrug> thirdAliDrugsListGjk = null;
try {
String response = HttpUtil.get(udiUrl+"/udiwms/aliDrug/getDrugLevelList",map);
BaseResponse<PageSimpleResponse<ThirdAliDrug>> udiDlDeviceResponse =
JSONObject.parseObject(response, new TypeReference<BaseResponse<PageSimpleResponse<ThirdAliDrug>>>() {
});
if (udiDlDeviceResponse != null) {
// 查询国家库是否有值 有值直接返回没值查询阿里接口
thirdAliDrugsListGjk = udiDlDeviceResponse.getData().getList();
}
} catch (Exception e) {
log.error("国家库查询阿里产品访问出现错误==="+e.getMessage());
}
if(thirdAliDrugService.addOrUpdate(thirdAliDrugsListGjk)){
}else {
List<ThirdAliDrug> thirdAliDrugListNew;
AlihealthThirdAliDrugInsertReqeust alihealthThirdAliDrugInsertReqeust = new AlihealthThirdAliDrugInsertReqeust();
alihealthThirdAliDrugInsertReqeust.setErpId("123");
alihealthThirdAliDrugInsertReqeust.setAppSecret("5231c601505706a9d49823c3dfe2cb01");
AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeust = new AlihealthKytDrugrescodeReqeust();
alihealthKytDrugrescodeReqeust.setPhysic_name(thrProductsEntity.getName());
alihealthKytDrugrescodeReqeust.setApproval_licence_no(thrProductsEntity.getZczbhhzbapzbh());
alihealthKytDrugrescodeReqeust.setPage_size(100);
alihealthKytDrugrescodeReqeust.setPage(1);
alihealthKytDrugrescodeReqeust.setApp_key("31721223");
alihealthKytDrugrescodeReqeust.setRef_ent_id("ef99b78bd9c54c1284f813149c858fb0");
alihealthThirdAliDrugInsertReqeust.setAlihealthKytDrugrescodeReqeust(alihealthKytDrugrescodeReqeust);
BaseResponse<List<ThirdAliDrug>> baseResponse = alihealthUtils.thirdAliDrugInsert(alihealthThirdAliDrugInsertReqeust);
if(baseResponse.getCode() == 20000){
thirdAliDrugListNew = baseResponse.getData();
thirdAliDrugService.addOrUpdate(thirdAliDrugListNew);
}else {
log.error("阿里接口未查到产品信息==="+baseResponse.getMessage());
throw new JsonException(500, "阿里接口未查到产品信息");
}
// 上传到国家库
try {
Map mapNew = new HashMap();
mapNew.put("list",thirdAliDrugListNew);
String response = HttpUtil.post(udiUrl+"/udiwms/aliDrug/addThirdAliDrug", JSONUtil.toJsonStr(mapNew));
BaseResponse baseResponseAdd = JSONUtil.toBean(response,BaseResponse.class);
log.info("成功上传国家库阿里产品数据");
} catch (Exception e) {
log.error("国家库上传阿里产品访问出现错误==="+e.getMessage());
}
}
// udiProductService.insertUdiInfo(udiProductEntity);
}
thirdAliDrugList = thirdAliDrugService.list(
new QueryWrapper<ThirdAliDrug>()
.eq(StringUtils.isNotEmpty(thrProductsEntity.getName()),"cpmctymc",thrProductsEntity.getName())
.eq(StringUtils.isNotEmpty(thrProductsEntity.getZczbhhzbapzbh()),"approvalNum",thrProductsEntity.getZczbhhzbapzbh())
);
for (int i = 0; i < thirdAliDrugList.size(); i++) {
ThirdAliDrug thirdAliDrug = thirdAliDrugList.get(i);
List<Integer> integers = new ArrayList<>();
@ -296,14 +390,19 @@ public class UdiContrastService {
udiProductEntity.setXjdw(ybDrug.getMinUnit());
udiProductEntity.setBhxjsl(ybDrug.getFactor());
}
if (thirdAliDrug.getPackLevel() != null || !thirdAliDrug.getPackLevel() .equals("0") ){
udiProductEntity.setDiType(IntUtil.value(thirdAliDrug.getPackLevel()) == 1 ? 1 : 4);
udiProductEntity.setId(IdUtil.getSnowflakeNextId());
udiProductService.insertUdiInfo(udiProductEntity);
}
}else {
udiProductEntity.setDiType(1);
}
udiProductEntity.setXjdw(thirdAliDrug.getPrepnUnitName());
udiProductEntity.setPackUnit(thirdAliDrug.getPackUnitName());
udiProductEntity.setId(IdUtil.getSnowflakeNextId());
udiProductService.insertUdiInfo(udiProductEntity);
}
}
// setLevel(udiRelevanceEntity.getUuid());
UdiProductEntity byUuid = udiProductService.findByUuid(udiRelevanceEntity.getUuid());
udiRelevanceEntity = udiRelevanceService.insertDefaultLevel(udiRelevanceEntity, byUuid);

@ -14,7 +14,6 @@ import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.github.pagehelper.PageHelper;
import com.glxp.api.common.res.BaseResponse;
import com.glxp.api.dao.basic.BasicProductsDao;
import com.glxp.api.dao.collect.RelCodeBatchMapper;
import com.glxp.api.dao.inout.IoCodeTempDao;
import com.glxp.api.entity.auth.AuthAdmin;
@ -27,7 +26,7 @@ import com.glxp.api.entity.collect.RelCodeDetail;
import com.glxp.api.entity.inout.IoCodeTempEntity;
import com.glxp.api.entity.sync.SyncDataSetEntity;
import com.glxp.api.exception.JsonException;
import com.glxp.api.req.alihealth.AlihealthRelCodeInsertReqeust;
import com.glxp.api.req.alihealth.local.AlihealthRelCodeInsertReqeust;
import com.glxp.api.req.collect.RelCodeBatchRequest;
import com.glxp.api.req.collect.RelCodeDetailRequest;
import com.glxp.api.res.alihealth.AlihealthKytSinglerelationResponse;

@ -0,0 +1,74 @@
package com.glxp.api.service.thrsys;
import javassist.ClassPool;
import javassist.CtClass;
import javassist.CtMethod;
public class App {
public static void main(String[] args) {
try {
ClassPool pool = ClassPool.getDefault();
// 此处改为你实际的的 MyBatisCodeHelper-Pro-obfuss.jar 的路径
pool.insertClassPath("C:\\Users\\Lenovo\\AppData\\Roaming\\JetBrains\\IntelliJIdea2023.2\\plugins\\MyBatisCodeHelper-Pro\\lib\\MyBatisCodeHelper-Pro-obfuss.jar");
// 通过绝对定位,加载指定的类
CtClass cc = pool.get("com.ccnode.codegenerator.Y.e.e");
// 获取validTo的get方法
// public Long e()
CtMethod getValidToMethod = cc.getDeclaredMethod("a");
// 获取validTo的set方法的参数Long
CtClass[] params = new CtClass[]{pool.get("java.lang.Long")};
// 获取validTo的set方法
// public void a(Long l2)
CtMethod setValidToMethod = cc.getDeclaredMethod("a", params);
// 获取valid的set方法的参数Boolean
CtClass[] params1 = new CtClass[]{pool.get("java.lang.Boolean")};
// 获取Valid的set方法
// public void a(Boolean bl)
CtMethod setValidMethod = cc.getDeclaredMethod("a", params1);
// 获取valid的get方法
// public Boolean b()
CtMethod getValidMethod = cc.getDeclaredMethod("e");
// 修改validTo的get方法
// 直接返回4797976044000
StringBuilder builder = new StringBuilder();
builder.append("{")
.append(" return new Long(4797976044000L);")
.append("}");
getValidToMethod.setBody(builder.toString());
// 修改validTo的set方法
// 直接设为4797976044000
StringBuilder builder1 = new StringBuilder();
builder1.append("{")
.append(" this.a = new Long(4797976044000L);")
.append("}");
setValidToMethod.setBody(builder1.toString());
// 修改valid的set方法
// 设为True
String getValidMethodBuilder = "{" +
" return Boolean.TRUE;" +
"}";
getValidMethod.setBody(getValidMethodBuilder);
// 修改valid的get方法
// 直接返回True
String setValidMethodBuilder = "{" +
"this.c = Boolean.TRUE;" +
"}";
setValidMethod.setBody(setValidMethodBuilder);
// 将修改后的Class b写入指定文件夹
cc.writeFile("C:\\Users\\Lenovo\\Desktop\\第三方\\a");
} catch (Exception e) {
e.printStackTrace();
}
}
}

@ -4,6 +4,7 @@ import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.io.FileUtil;
import cn.hutool.core.util.StrUtil;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.github.pagehelper.PageHelper;
import com.glxp.api.exception.JsonException;
import com.glxp.api.req.thrsys.ThirdAliDrugRequest;
@ -244,4 +245,26 @@ public class ThirdAliDrugService extends ServiceImpl<ThirdAliDrugMapper, ThirdAl
public List<ThirdAliDrug> findByByApproved(String approvalNum) {
return this.baseMapper.selectList(new LambdaQueryWrapper<ThirdAliDrug>().eq(ThirdAliDrug::getApprovalNum, approvalNum));
}
public boolean addOrUpdate(List<ThirdAliDrug> list) {
if(list!=null && list.size() >0){
for (ThirdAliDrug thirdAliDrug : list) {
ThirdAliDrug thirdAliDrugNew = this.getOne(new QueryWrapper<ThirdAliDrug>().eq("nameCode", thirdAliDrug.getNameCode())
.last("limit 1")
);
if (Objects.isNull(thirdAliDrugNew)) {
this.save(thirdAliDrug);
} else {
this.update(thirdAliDrug, new QueryWrapper<ThirdAliDrug>().eq("nameCode", thirdAliDrug.getNameCode()));
}
}
return true;
}else {
return false;
}
}
}

@ -2,29 +2,21 @@ package com.glxp.api.util.alihealth;
import cn.hutool.core.bean.BeanUtil;
import cn.hutool.http.HttpUtil;
import cn.hutool.json.JSONUtil;
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.dao.collect.RelCodeDetailMapper;
import com.glxp.api.entity.auth.CustomerInfoEntity;
import com.glxp.api.entity.collect.RelCodeBatch;
import com.glxp.api.entity.collect.RelCodeDetail;
import com.glxp.api.entity.thrsys.ThirdAliDrug;
import com.glxp.api.req.alihealth.AlihealthKytCommonParametersReqeust;
import com.glxp.api.req.alihealth.AlihealthKytGetentinfoReqeust;
import com.glxp.api.req.alihealth.AlihealthKytDrugrescodeReqeust;
import com.glxp.api.req.alihealth.AlihealthKytSinglerelationReqeust;
import com.glxp.api.req.alihealth.AlihealthRelCodeInsertReqeust;
import com.glxp.api.res.alihealth.AlihealthKytCommonParametersResponse;
import com.glxp.api.res.alihealth.AlihealthKytGetentinfoResponse;
import com.glxp.api.req.alihealth.local.AlihealthRelCodeInsertReqeust;
import com.glxp.api.req.alihealth.local.AlihealthThirdAliDrugInsertReqeust;
import com.glxp.api.res.alihealth.AlihealthKytDrugrescodeResponse;
import com.glxp.api.res.alihealth.AlihealthKytSinglerelationResponse;
import com.glxp.api.service.auth.CustomerInfoService;
import com.glxp.api.service.collect.RelCodeBatchService;
import com.glxp.api.service.collect.RelCodeDetailService;
import com.taobao.api.Constants;
import com.taobao.api.internal.util.StringUtils;
import com.taobao.api.response.AlibabaAlihealthDrugtraceTopLsydQueryRelationResponse;
import io.swagger.models.auth.In;
import org.apache.poi.ss.formula.functions.T;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;
@ -36,10 +28,10 @@ import javax.crypto.spec.SecretKeySpec;
import java.io.IOException;
import java.security.GeneralSecurityException;
import java.security.MessageDigest;
import java.text.SimpleDateFormat;
import java.util.*;
import static com.taobao.api.internal.util.TaobaoUtils.byte2hex;
@Component
public class AlihealthUtils {
@Resource
@ -52,6 +44,7 @@ public class AlihealthUtils {
private RelCodeBatchService relCodeBatchService;
@Value("${ALIHEALTH_URL:http://gw.api.taobao.com/router/rest}")
private String alihealthUrl;
// public static void main(String[] args) {
//
// alihealthKytSinglerelationReqeust.setSign(sign);
@ -64,6 +57,45 @@ public class AlihealthUtils {
//
// }
/**
*
*
* @param alihealthThirdAliDrugInsertReqeust
*/
public BaseResponse<List<ThirdAliDrug>> thirdAliDrugInsert(AlihealthThirdAliDrugInsertReqeust alihealthThirdAliDrugInsertReqeust) {
if (alihealthThirdAliDrugInsertReqeust.getAlihealthKytDrugrescodeReqeust() == null) {
return ResultVOUtils.error("入参不能为空");
}
AlihealthKytDrugrescodeResponse alihealthKytDrugrescodeResponse = null;
AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeust = alihealthThirdAliDrugInsertReqeust.getAlihealthKytDrugrescodeReqeust();
if (alihealthKytDrugrescodeReqeust != null
&& org.apache.commons.lang3.StringUtils.isNotEmpty(alihealthKytDrugrescodeReqeust.getApp_key())
&& org.apache.commons.lang3.StringUtils.isNotEmpty(alihealthThirdAliDrugInsertReqeust.getAppSecret())
) {
try {
Map map = alihealthUtils.disposeSign(alihealthKytDrugrescodeReqeust, alihealthThirdAliDrugInsertReqeust.getAppSecret());
String json = HttpUtil.get(alihealthUrl, map);
alihealthKytDrugrescodeResponse = new AlihealthKytDrugrescodeResponse(json);
} catch (Exception e) {
e.printStackTrace();
return ResultVOUtils.error("阿里健康接口调用失败===" + e.getMessage());
}
} else {
return ResultVOUtils.error("阿里健康接口调用失败===用户找不到或者key和秘钥为空");
}
if (alihealthKytDrugrescodeResponse.judgeCall()) {
List<ThirdAliDrug> list = alihealthKytDrugrescodeResponse.disposeThirdAliDrugList(alihealthThirdAliDrugInsertReqeust.getErpId());
return ResultVOUtils.success(list);
} else {
return ResultVOUtils.error("阿里健康接口调用失败===" + alihealthKytDrugrescodeResponse.getMsg_info());
}
}
//TODO 调用阿里接口用码进行批量处理只测试了两个包装层级的 暂时没有三个包装层级的数据做测试 到时候有数据之后要好好测试一下
@Transactional(rollbackFor = Exception.class)
public BaseResponse<AlihealthKytSinglerelationResponse> relCodeInsert(AlihealthRelCodeInsertReqeust alihealthRelCodeInsertReqeust) {
@ -84,15 +116,14 @@ public class AlihealthUtils {
alihealthKytSinglerelationResponse = new AlihealthKytSinglerelationResponse(json);
} catch (Exception e) {
return ResultVOUtils.error("阿里健康接口调用失败===请检查厂商的key和密文是否对");
return ResultVOUtils.error("阿里健康接口调用失败===" + e.getMessage());
}
} else {
return ResultVOUtils.error("阿里健康接口调用失败===用户找不到或者key和秘钥为空");
}
if(org.apache.commons.lang3.StringUtils.isNotEmpty(alihealthKytSinglerelationResponse.getMsg_info())
&& alihealthKytSinglerelationResponse.getMsg_info().equals("调用成功")
){
if (alihealthKytSinglerelationResponse.judgeCall()) {
alihealthKytSinglerelationResponse.setRefEntId(alihealthRelCodeInsertReqeust.getRefEntId());
return ResultVOUtils.success(alihealthKytSinglerelationResponse);
} else {
@ -101,9 +132,10 @@ public class AlihealthUtils {
}
}
public Map disposeSign(AlihealthKytCommonParametersReqeust alihealthKytCommonParametersReqeust, String secret) {
Map map = BeanUtil.beanToMap(alihealthKytCommonParametersReqeust);
Map<String,Object> map = BeanUtil.beanToMap(alihealthKytCommonParametersReqeust);
String sign;
try {
sign = new AlihealthUtils().signTopRequest(map, secret, "md5");
@ -115,7 +147,8 @@ public class AlihealthUtils {
return null;
}
public String signTopRequest(Map<String, String> params, String secret, String signMethod) throws IOException {
public String signTopRequest(Map<String,Object> params, String secret, String signMethod) throws IOException {
// 第一步:检查参数是否已经排序
String[] keys = params.keySet().toArray(new String[0]);
Arrays.sort(keys);
@ -126,10 +159,18 @@ public class AlihealthUtils {
query.append(secret);
}
for (String key : keys) {
String value = params.get(key);
if (StringUtils.areNotEmpty(key, value)) {
Object value = params.get(key);
if(value instanceof String){
if ( StringUtils.areNotEmpty(key, (String) value)) {
query.append(key).append(value);
}
}else {
if (!Objects.isNull(value)) {
query.append(key).append(value);
}
}
// StringUtils.areNotEmpty(key, value)
}
@ -162,6 +203,7 @@ public class AlihealthUtils {
public byte[] encryptMD5(String data) throws IOException {
return encryptMD5(data.getBytes(Constants.CHARSET_UTF8));
}
public byte[] encryptMD5(byte[] data) throws IOException {
byte[] bytes = null;
try {

@ -1209,3 +1209,23 @@ CALL Pro_Temp_ColumnWork('customer_info', 'refEntId',
1);
INSERT ignore INTO `sys_param_config` (`id`, `parentId`, `paramName`, `paramKey`, `paramValue`, `paramStatus`, `paramType`, `paramExplain`, `updateTime`)
VALUES (20100, 0, '是否全部维护关联关系', 'warning_relCode_switch', '1', 1, 0, '01', NULL);
CALL Pro_Temp_ColumnWork('third_ali_drug', 'prepnUnit',
' varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT ''制剂单位描述''',
1);
CALL Pro_Temp_ColumnWork('third_ali_drug', 'prepnUnitName',
' varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT ''制剂单位描述''',
1);
CALL Pro_Temp_ColumnWork('third_ali_drug', 'physicDetailType',
' varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT ''药品详情类型''',
1);
CALL Pro_Temp_ColumnWork('third_ali_drug', 'physicDetailTypeDesc ',
' varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT ''药品类型详情描述''',
1);
CALL Pro_Temp_ColumnWork('third_ali_drug', 'physicTypeDesc',
' varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT ''药品类型描述''',
1);
CALL Pro_Temp_ColumnWork('third_ali_drug', 'packUnitName',
' varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT ''包装单位''',
1);

Loading…
Cancel
Save