|
|
|
@ -45,10 +45,11 @@ public class AlihealthBusController extends BaseController {
|
|
|
|
|
private String alihealthUrl;
|
|
|
|
|
@Value("${UDI_SERVER_URL}")
|
|
|
|
|
private String udiUrl;
|
|
|
|
|
|
|
|
|
|
@PostMapping("/spms/alihealth/relCodeInsert")
|
|
|
|
|
@Log(title = "阿里健康自动赋码关联关系", businessType = BusinessType.OTHER)
|
|
|
|
|
public BaseResponse relCodeInsert(@RequestBody AlihealthRelCodeInsertReqeust alihealthRelCodeInsertReqeust) {
|
|
|
|
|
if(StringUtils.isEmpty(alihealthRelCodeInsertReqeust.getRefEntId())){
|
|
|
|
|
if (StringUtils.isEmpty(alihealthRelCodeInsertReqeust.getRefEntId())) {
|
|
|
|
|
AlihealthKytGetentinfoResponse alihealthKytGetentinfoResponse = null;
|
|
|
|
|
try {
|
|
|
|
|
AlihealthKytGetentinfoReqeust alihealthKytGetentinfoReqeust = new AlihealthKytGetentinfoReqeust();
|
|
|
|
@ -76,12 +77,12 @@ public class AlihealthBusController extends BaseController {
|
|
|
|
|
|
|
|
|
|
BaseResponse baseResponse = alihealthUtils.relCodeInsert(alihealthRelCodeInsertReqeust);
|
|
|
|
|
|
|
|
|
|
if(baseResponse.getCode() == 20000){
|
|
|
|
|
if (baseResponse.getCode() == 20000) {
|
|
|
|
|
// 插入成功返回
|
|
|
|
|
return baseResponse;
|
|
|
|
|
}else {
|
|
|
|
|
log.error("调用阿里码获取关联关系接口==="+baseResponse.getMessage());
|
|
|
|
|
return ResultVOUtils.error("调用阿里码获取关联关系接口==="+baseResponse.getMessage());
|
|
|
|
|
} else {
|
|
|
|
|
log.error("调用阿里码获取关联关系接口===" + baseResponse.getMessage());
|
|
|
|
|
return ResultVOUtils.error("调用阿里码获取关联关系接口===" + baseResponse.getMessage());
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -89,66 +90,69 @@ public class AlihealthBusController extends BaseController {
|
|
|
|
|
@PostMapping("/spms/alihealth/thirdAliDrugList")
|
|
|
|
|
@Log(title = "获取阿里药品码段信息列表包括查询国家库", businessType = BusinessType.OTHER)
|
|
|
|
|
public BaseResponse<List<ThirdAliDrug>> thirdAliDrugList(@RequestBody AlihealthThirdAliDrugInsertReqeust alihealthThirdAliDrugInsertReqeust) {
|
|
|
|
|
AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeust = alihealthThirdAliDrugInsertReqeust.getAlihealthKytDrugrescodeReqeust();
|
|
|
|
|
AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeust = alihealthThirdAliDrugInsertReqeust.getAlihealthKytDrugrescodeReqeust();
|
|
|
|
|
|
|
|
|
|
Map map = new HashMap();
|
|
|
|
|
if(com.glxp.api.util.StringUtils.isNotEmpty(alihealthKytDrugrescodeReqeust.getPhysic_name())){
|
|
|
|
|
map.put("cpmctymc",alihealthKytDrugrescodeReqeust.getPhysic_name());
|
|
|
|
|
Map map = new HashMap();
|
|
|
|
|
if (com.glxp.api.util.StringUtils.isNotEmpty(alihealthKytDrugrescodeReqeust.getPhysic_name())) {
|
|
|
|
|
map.put("cpmctymc", alihealthKytDrugrescodeReqeust.getPhysic_name());
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if(com.glxp.api.util.StringUtils.isNotEmpty(alihealthKytDrugrescodeReqeust.getApproval_licence_no())){
|
|
|
|
|
map.put("approvalNum",alihealthKytDrugrescodeReqeust.getApproval_licence_no());
|
|
|
|
|
}
|
|
|
|
|
if (com.glxp.api.util.StringUtils.isNotEmpty(alihealthKytDrugrescodeReqeust.getApproval_licence_no())) {
|
|
|
|
|
map.put("approvalNum", alihealthKytDrugrescodeReqeust.getApproval_licence_no());
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
List<ThirdAliDrug> thirdAliDrugsListGjk = null;
|
|
|
|
|
}
|
|
|
|
|
if (com.glxp.api.util.StringUtils.isNotEmpty(alihealthThirdAliDrugInsertReqeust.getManufactory())) {
|
|
|
|
|
map.put("manufacturer", alihealthThirdAliDrugInsertReqeust.getManufactory());
|
|
|
|
|
|
|
|
|
|
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());
|
|
|
|
|
}
|
|
|
|
|
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(thirdAliDrugsListGjk!= null && thirdAliDrugsListGjk.size() >0){
|
|
|
|
|
return ResultVOUtils.success(thirdAliDrugsListGjk);
|
|
|
|
|
}else {
|
|
|
|
|
List<ThirdAliDrug> thirdAliDrugListNew;
|
|
|
|
|
BaseResponse<List<ThirdAliDrug>> baseResponse = alihealthUtils.thirdAliDrugInsertAll(alihealthThirdAliDrugInsertReqeust);
|
|
|
|
|
if(baseResponse.getCode() == 20000){
|
|
|
|
|
thirdAliDrugListNew = baseResponse.getData();
|
|
|
|
|
}else {
|
|
|
|
|
log.error("阿里接口未查到产品信息==="+baseResponse.getMessage());
|
|
|
|
|
return ResultVOUtils.error("阿里接口未查到产品信息==="+baseResponse.getMessage());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
// 上传到国家库
|
|
|
|
|
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());
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success(thirdAliDrugListNew);
|
|
|
|
|
if (thirdAliDrugsListGjk != null && thirdAliDrugsListGjk.size() > 0) {
|
|
|
|
|
return ResultVOUtils.success(thirdAliDrugsListGjk);
|
|
|
|
|
} else {
|
|
|
|
|
List<ThirdAliDrug> thirdAliDrugListNew;
|
|
|
|
|
BaseResponse<List<ThirdAliDrug>> baseResponse = alihealthUtils.thirdAliDrugInsertAll(alihealthThirdAliDrugInsertReqeust);
|
|
|
|
|
if (baseResponse.getCode() == 20000) {
|
|
|
|
|
thirdAliDrugListNew = baseResponse.getData();
|
|
|
|
|
} else {
|
|
|
|
|
log.error("阿里接口未查到产品信息===" + baseResponse.getMessage());
|
|
|
|
|
return ResultVOUtils.error("阿里接口未查到产品信息===" + baseResponse.getMessage());
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
// 上传到国家库
|
|
|
|
|
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());
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success(thirdAliDrugListNew);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
// udiProductService.insertUdiInfo(udiProductEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
AlihealthBusService alihealthBusService;
|
|
|
|
|
@Resource
|
|
|
|
@ -156,6 +160,7 @@ public class AlihealthBusController extends BaseController {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 阿里的采购单查询接口
|
|
|
|
|
*
|
|
|
|
|
* @param aliYljgSearchbillReqeust
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
@ -167,7 +172,7 @@ public class AlihealthBusController extends BaseController {
|
|
|
|
|
List<AliYljgSearchbill> list = alihealthBusService.aliYljgSearchbillPage(aliYljgSearchbillReqeust);
|
|
|
|
|
List<AliYljgSearchbill> listResp = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
if (CollUtil.isEmpty(list)){
|
|
|
|
|
if (CollUtil.isEmpty(list)) {
|
|
|
|
|
PageInfo<AliYljgSearchbill> pageInfo = new PageInfo<>(listResp);
|
|
|
|
|
return ResultVOUtils.page(pageInfo);
|
|
|
|
|
}
|
|
|
|
@ -186,7 +191,7 @@ public class AlihealthBusController extends BaseController {
|
|
|
|
|
//如果查得到就不可以再次选入
|
|
|
|
|
String billNo = orderService.selectAliYljgSearchbillByAliBillNo(key);
|
|
|
|
|
AliYljgSearchbill aliYljgSearchbill = group.get(0);
|
|
|
|
|
if (StringUtils.isNotEmpty(billNo)){
|
|
|
|
|
if (StringUtils.isNotEmpty(billNo)) {
|
|
|
|
|
aliYljgSearchbill.setCheckBillNO(true);
|
|
|
|
|
}
|
|
|
|
|
listResp.add(aliYljgSearchbill);
|
|
|
|
@ -200,13 +205,14 @@ public class AlihealthBusController extends BaseController {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 阿里的采购单码明细查询接口
|
|
|
|
|
*
|
|
|
|
|
* @param aliYljgSearchbillReqeust
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@PostMapping("/spms/alihealth/aliYljgBillDetail")
|
|
|
|
|
@Log(title = "获取阿里药品的采购单码明细", businessType = BusinessType.OTHER)
|
|
|
|
|
public BaseResponse aliYljgBillDetail(@RequestBody AliYljgSearchbillReqeust aliYljgSearchbillReqeust) {
|
|
|
|
|
AliYljgBillDetail aliYljgBillDetail= alihealthBusService.aliYljgBillDetail(aliYljgSearchbillReqeust);
|
|
|
|
|
AliYljgBillDetail aliYljgBillDetail = alihealthBusService.aliYljgBillDetail(aliYljgSearchbillReqeust);
|
|
|
|
|
return ResultVOUtils.success(aliYljgBillDetail);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|