|
|
|
@ -138,7 +138,7 @@ public class PlatformService {
|
|
|
|
|
Map<String, Object> paramMap = new HashMap<>();
|
|
|
|
|
paramMap.put("invSubCode", invSubCode);
|
|
|
|
|
String resp = HttpClient.mipsGet(host + "/udiwms/bussinessType/udimsFilter", paramMap);
|
|
|
|
|
if (StrUtil.isNotBlank(resp) && resp.contains(ResultEnum.SUCCESS.getCode().toString())) {
|
|
|
|
|
if (StrUtil.isNotBlank(resp) && resp.contains("20000")) {
|
|
|
|
|
return JSON.parseObject(resp, BaseResponse.class);
|
|
|
|
|
} else {
|
|
|
|
|
log.error("获取自助平台单据类型异常");
|
|
|
|
@ -158,7 +158,7 @@ public class PlatformService {
|
|
|
|
|
log.info("拉取自助平台仓库数据:" + url);
|
|
|
|
|
String resp = HttpUtil.get(url);
|
|
|
|
|
log.info("拉取结果:" + resp);
|
|
|
|
|
if (StrUtil.isNotBlank(resp) && resp.contains(ResultEnum.SUCCESS.getCode().toString())) {
|
|
|
|
|
if (StrUtil.isNotBlank(resp) && resp.contains("20000")) {
|
|
|
|
|
try {
|
|
|
|
|
return JSON.parseObject(resp, BaseResponse.class);
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
@ -182,7 +182,7 @@ public class PlatformService {
|
|
|
|
|
Map<String, String> paramMap = new HashMap<>();
|
|
|
|
|
paramMap.put("invCode", invCode);
|
|
|
|
|
String resp = HttpClient.mipsGet(host + "/spms/sub/inv/warehouse/getSubInvForUdims", paramMap);
|
|
|
|
|
if (StrUtil.isNotBlank(resp) && resp.contains(ResultEnum.SUCCESS.getCode().toString())) {
|
|
|
|
|
if (StrUtil.isNotBlank(resp) && resp.contains("20000")) {
|
|
|
|
|
return JSON.parseObject(resp, BaseResponse.class);
|
|
|
|
|
} else {
|
|
|
|
|
log.error("获取自助平台分库失败");
|
|
|
|
@ -202,7 +202,7 @@ public class PlatformService {
|
|
|
|
|
if (StrUtil.isNotBlank(response)) {
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse result = JSONUtil.toBean(response, BaseResponse.class);
|
|
|
|
|
if (result.getCode() == ResultEnum.SUCCESS.getCode()) {
|
|
|
|
|
if (result.getCode() == 20000) {
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL);
|
|
|
|
|