feat: 药品关联关系查重功能

dev_unify
chenhc 8 months ago
parent 37f27adf68
commit 78bb88d03d

@ -482,6 +482,17 @@ public class ErpBasicClient {
* (list)
*/
public BaseResponse<List> collectOrderCheckCodeUploading(List<String> codeList) {
return ResultVOUtils.success(new ArrayList<>());
ThrSystemEntity basicThirdSysEntity = basicThirdSysService.selectByThirdId("thirdId");
String url = basicThirdSysEntity.getThridUrl() + "/udiwms/relCode/checkCode";
try {
String response = httpOkClient.uCloudPost(url, codeList);
BaseResponse<List> listBaseResponse =
JSONObject.parseObject(response, new TypeReference<BaseResponse<List>>() {
});
return listBaseResponse;
} catch (Exception e) {
log.error("校验码是和下级所有码否上传医保", e);
return ResultVOUtils.error(500, "连接第三方系统接口服务出错");
}
}
}

Loading…
Cancel
Save