|
|
@ -130,9 +130,9 @@ public class AcsToWmsServiceImpl implements AcsToWmsService { |
|
|
|
.header("Content-Type", "application/json") |
|
|
|
.body(String.valueOf(reqData)) |
|
|
|
.execute(); |
|
|
|
log.info("反馈WMS任务状态,请求参数:{},响应参数:{}", String.valueOf(reqData), String.valueOf(result)); |
|
|
|
log.info("反馈WMS任务状态,请求路径:{},请求参数:{},响应参数:{}", url + taskcode, String.valueOf(reqData), String.valueOf(result)); |
|
|
|
} catch (Exception e) { |
|
|
|
log.error("反馈WMS任务状态,请求参数:{},响应参数:{}", String.valueOf(reqData), e.getMessage()); |
|
|
|
log.error("反馈WMS任务状态,请求路径:{},请求参数:{},响应参数:{}", url + taskcode, String.valueOf(reqData), e.getMessage()); |
|
|
|
} |
|
|
|
} |
|
|
|
String type = ""; |
|
|
@ -567,9 +567,9 @@ public class AcsToWmsServiceImpl implements AcsToWmsService { |
|
|
|
result = HttpRequest.post(url + "?token=" + token) |
|
|
|
.body(JSON.toJSONString(from)) |
|
|
|
.execute(); |
|
|
|
log.info("反馈WMS取放货状态,请求参数:{},响应参数:{}", JSON.toJSONString(from), String.valueOf(result)); |
|
|
|
log.info("反馈WMS取放货状态,请求路径:{},请求参数:{},响应参数:{}", url, JSON.toJSONString(from), String.valueOf(result)); |
|
|
|
} catch (Exception e) { |
|
|
|
log.info("反馈WMS取放货状态,请求参数:{},响应参数:{}", JSON.toJSONString(from), e.getMessage()); |
|
|
|
log.info("反馈WMS取放货状态,请求路径:{},请求参数:{},响应参数:{}", url, JSON.toJSONString(from), e.getMessage()); |
|
|
|
} |
|
|
|
return result; |
|
|
|
} |
|
|
|