This commit is contained in:
周俊杰
2023-07-31 08:42:53 +08:00
parent a86c16bde8
commit ea6eca99ed
2 changed files with 3 additions and 2 deletions

View File

@@ -73,7 +73,7 @@ public class AcsToWmsZDServiceImpl implements AcsToWmsZDService {
} catch (Exception e) { } catch (Exception e) {
String msg = e.getMessage(); String msg = e.getMessage();
//网络不通 //网络不通
//System.out.println(msg); log.info("错误原因{}",msg);
} }
return result; return result;
} }

View File

@@ -30,8 +30,9 @@ public class QueryZDAgvTaskStatus {
JSONArray inst_rows = JSONArray.parseArray(response.body()); JSONArray inst_rows = JSONArray.parseArray(response.body());
for (int i = 0; i < inst_rows.size(); i++) { for (int i = 0; i < inst_rows.size(); i++) {
JSONObject inst_jo = inst_rows.getJSONObject(i); JSONObject inst_jo = inst_rows.getJSONObject(i);
String inst_code = inst_jo.getString("taskCode"); String inst_code = inst_jo.getString("task_code");
Instruction inst = instructionService.findByCodeFromCache(inst_code); Instruction inst = instructionService.findByCodeFromCache(inst_code);
log.info("查询到的任务号{}",inst);
if (ObjectUtil.isEmpty(inst)) { if (ObjectUtil.isEmpty(inst)) {
continue; continue;
} }