代码更新

This commit is contained in:
ludj
2023-10-09 17:23:31 +08:00
parent e6dda0f114
commit 161d9116ea
3 changed files with 4 additions and 3 deletions

View File

@@ -626,6 +626,7 @@ public class WmsToJnServiceImpl implements WmsToJnService {
}
log.info("诺力请求嘉耐回传组盘记录出参{}", resultMsg);
} catch (Exception e) {
log.info("诺力请求嘉耐回传组盘记录失败!");
e.printStackTrace();
}
return null;
@@ -951,7 +952,7 @@ public class WmsToJnServiceImpl implements WmsToJnService {
if (StrUtil.equals(value, "0")) {
return null;
}
String method = "/outWait";
String method = "/OutPartStock";
String task_id = (String) whereJson.get("task_id");
JSONObject jsonObject =
WQL.getWO("WMSTOJN_001")

View File

@@ -30,7 +30,7 @@ public class AutoFeedBackInfo {
int timeout = 3000;
log.info("开始自动开始回传嘉耐数据");
WQLObject Table = WQLObject.getWQLObject("pdm_bi_feedbackrecord");
JSONArray resultJSONArray = Table.query("status='0'").getResultJSONArray(0);
JSONArray resultJSONArray = Table.query("status='2'").getResultJSONArray(0);
for (int i = 0; i < resultJSONArray.size(); i++) {
JSONObject jo = resultJSONArray.getJSONObject(i);
String mehtod = jo.getString("method");

View File

@@ -39,7 +39,7 @@ https://juejin.cn/post/6844903775631572999
<!--日志文件保留天数-->
<maxHistory>15</maxHistory>
<!--单个日志最大容量 至少10MB才能看得出来-->
<maxFileSize>200MB</maxFileSize>
<maxFileSize>120MB</maxFileSize>
<!--所有日志最多占多大容量-->
<totalSizeCap>20GB</totalSizeCap>
</rollingPolicy>