|
|
|
@ -29,7 +29,7 @@ public class SignPushClient implements IOldSignPushClient {
|
|
|
|
|
public Boolean pushOldSystemSignInfo(SignPushDataDTO signPushDataDTO) { |
|
|
|
|
|
|
|
|
|
//todo 这里存在调用老系统的接口 将数据会写给老系统
|
|
|
|
|
|
|
|
|
|
int timeoutMilliseconds = 60000; |
|
|
|
|
Boolean result =false; |
|
|
|
|
log.info(">>>> pushOldSystemSignInfo 程序执行 start time: {}",System.currentTimeMillis()); |
|
|
|
|
String authCode = oldLogin(signPushDataDTO.getWarehouseId()+""); |
|
|
|
@ -39,7 +39,7 @@ public class SignPushClient implements IOldSignPushClient {
|
|
|
|
|
String data = JSON.toJSONString(signPushDataDTO); |
|
|
|
|
|
|
|
|
|
log.info(">>>> pushOldSystemSignInfo request url:{} data:{}",url,data); |
|
|
|
|
String body = HttpRequest.post(url).body(data).header("token", authCode).execute().body(); |
|
|
|
|
String body = HttpRequest.post(url).body(data).header("token", authCode).setConnectionTimeout(timeoutMilliseconds).execute().body(); |
|
|
|
|
if (StringUtil.isNotBlank(body)) { |
|
|
|
|
JSONObject res = JSON.parseObject(body); |
|
|
|
|
if ("200".equals(res.getString("code"))) { |
|
|
|
|