选入药品层级查询就不查询国家库了 本地查不到直接去阿里拉

dev_unify
qiuyt 3 months ago
parent 0e2cbbdf8e
commit 2a9bac0e79

@ -112,7 +112,7 @@ public class AlihealthBusController extends BaseController {
}
List<ThirdAliDrug> thirdAliDrugsListGjk = null;
if(alihealthThirdAliDrugInsertReqeust.getGjkSwitch()){
try {
String response = HttpUtil.get(udiUrl + "/udiwms/aliDrug/getDrugLevelList", map);
BaseResponse<PageSimpleResponse<ThirdAliDrug>> udiDlDeviceResponse =
@ -128,6 +128,8 @@ public class AlihealthBusController extends BaseController {
log.error("国家库查询阿里产品访问出现错误===" + e.getMessage());
}
}
if (thirdAliDrugsListGjk != null && thirdAliDrugsListGjk.size() > 0) {
return ResultVOUtils.success(thirdAliDrugsListGjk);

@ -100,6 +100,7 @@ public class ThirdAliDrugController extends BaseController {
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());

@ -8,6 +8,7 @@ public class AlihealthThirdAliDrugInsertReqeust {
private String erpId;
private String appSecret;
private String manufactory;
private Boolean gjkSwitch = true;
private AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeust;
}

Loading…
Cancel
Save