|
|
@ -663,6 +663,21 @@ public class AgvServiceImpl implements AgvService { |
|
|
|
String agvport = acsConfigService.findConfigFromCache().get(AcsConfig.AGVPORT); |
|
|
|
|
|
|
|
agvurl = agvurl + ":" + agvport + "/orders?page=1&size=9999"; |
|
|
|
List<Instruction> insts = instructionService.findAllInstFromCache(); |
|
|
|
if (!insts.isEmpty()) { |
|
|
|
JSONObject where = new JSONObject(); |
|
|
|
where.put("relation", "OR"); |
|
|
|
JSONArray predicates = new JSONArray(); |
|
|
|
where.put("predicates", predicates); |
|
|
|
for (Instruction instruction : insts) { |
|
|
|
JSONArray row = new JSONArray(); |
|
|
|
row.add("id"); |
|
|
|
row.add("EQ"); |
|
|
|
row.add(instruction.getInstruction_code()); |
|
|
|
predicates.add(row); |
|
|
|
} |
|
|
|
agvurl = agvurl+ "&where=" + where; |
|
|
|
} |
|
|
|
|
|
|
|
HttpResponse result = HttpRequest.get(agvurl) |
|
|
|
.timeout(20000)//超时,毫秒
|
|
|
@ -2132,26 +2147,24 @@ public class AgvServiceImpl implements AgvService { |
|
|
|
jo1.put("operation", "JackLoad"); |
|
|
|
ja.add(jo1); |
|
|
|
|
|
|
|
// if ("true".equals(startDevice.getExtraValue().get("ignore_pickup_check"))) {
|
|
|
|
// //取货完成等待
|
|
|
|
// com.alibaba.fastjson.JSONObject jo2 = new com.alibaba.fastjson.JSONObject();
|
|
|
|
// jo2.put("blockId", IdUtil.simpleUUID());
|
|
|
|
// jo2.put("location", inst.getStart_point_code() + "OUTGET");
|
|
|
|
// jo2.put("operation", "script");
|
|
|
|
// jo2.put("id", inst.getStart_point_code() + "OUTGET");
|
|
|
|
// jo2.put("script_name", "userpy/interact.py");
|
|
|
|
// com.alibaba.fastjson.JSONObject script_args2 = new com.alibaba.fastjson.JSONObject();
|
|
|
|
// script_args2.put("addr", addr);
|
|
|
|
// com.alibaba.fastjson.JSONObject data2 = new com.alibaba.fastjson.JSONObject();
|
|
|
|
// com.alibaba.fastjson.JSONObject reach2 = new com.alibaba.fastjson.JSONObject();
|
|
|
|
// reach2.put("task_code", inst.getInstruction_code());
|
|
|
|
// reach2.put("address", inst.getStart_point_code() + "OUTGET");
|
|
|
|
// data2.put("reach", reach2);
|
|
|
|
// script_args2.put("data", data2);
|
|
|
|
// script_args2.put("protocol", "HTTP");
|
|
|
|
// jo2.put("script_args", script_args2);
|
|
|
|
// ja.add(jo2);
|
|
|
|
// }
|
|
|
|
//取货完成等待
|
|
|
|
com.alibaba.fastjson.JSONObject jo2 = new com.alibaba.fastjson.JSONObject(); |
|
|
|
jo2.put("blockId", IdUtil.simpleUUID()); |
|
|
|
jo2.put("location", inst.getStart_point_code() + "OUTGET"); |
|
|
|
jo2.put("operation", "script"); |
|
|
|
jo2.put("id", inst.getStart_point_code() + "OUTGET"); |
|
|
|
jo2.put("script_name", "userpy/interact.py"); |
|
|
|
com.alibaba.fastjson.JSONObject script_args2 = new com.alibaba.fastjson.JSONObject(); |
|
|
|
script_args2.put("addr", addr); |
|
|
|
com.alibaba.fastjson.JSONObject data2 = new com.alibaba.fastjson.JSONObject(); |
|
|
|
com.alibaba.fastjson.JSONObject reach2 = new com.alibaba.fastjson.JSONObject(); |
|
|
|
reach2.put("task_code", inst.getInstruction_code()); |
|
|
|
reach2.put("address", inst.getStart_point_code() + "OUTGET"); |
|
|
|
data2.put("reach", reach2); |
|
|
|
script_args2.put("data", data2); |
|
|
|
script_args2.put("protocol", "HTTP"); |
|
|
|
jo2.put("script_args", script_args2); |
|
|
|
ja.add(jo2); |
|
|
|
|
|
|
|
Device nextDevice = deviceAppService.findDeviceByCode(inst.getNext_device_code()); |
|
|
|
if ("true".equals(nextDevice.getExtraValue().get("ignore_release_check"))) { |
|
|
|