|
@ -58,8 +58,8 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
private final AcsToLiKuService acsToLiKuService; |
|
|
private final AcsToLiKuService acsToLiKuService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private String log_file_type="log_file_type"; |
|
|
private String log_file_type = "log_file_type"; |
|
|
private String log_type="LMS请求ACS"; |
|
|
private String log_type = "LMS请求ACS"; |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public CancelTaskResponse cancelFromWms(String param) throws Exception { |
|
|
public CancelTaskResponse cancelFromWms(String param) throws Exception { |
|
@ -172,7 +172,6 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
response.setStatus(200); |
|
|
response.setStatus(200); |
|
|
response.setMessage("success"); |
|
|
response.setMessage("success"); |
|
@ -232,7 +231,7 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
jo.put("countdown_min", hongXiangConveyorDeviceDriver.getCountdown_min()); |
|
|
jo.put("countdown_min", hongXiangConveyorDeviceDriver.getCountdown_min()); |
|
|
jo.put("countdown_sec", hongXiangConveyorDeviceDriver.getCountdown_sec()); |
|
|
jo.put("countdown_sec", hongXiangConveyorDeviceDriver.getCountdown_sec()); |
|
|
//温度需要除以10
|
|
|
//温度需要除以10
|
|
|
jo.put("temperature", hongXiangConveyorDeviceDriver.getTemperature()/10); |
|
|
jo.put("temperature", hongXiangConveyorDeviceDriver.getTemperature() / 10); |
|
|
jo.put("door", hongXiangConveyorDeviceDriver.getDoor()); |
|
|
jo.put("door", hongXiangConveyorDeviceDriver.getDoor()); |
|
|
jo.put("finish", hongXiangConveyorDeviceDriver.getFinish()); |
|
|
jo.put("finish", hongXiangConveyorDeviceDriver.getFinish()); |
|
|
jo.put("task", hongXiangConveyorDeviceDriver.getTask()); |
|
|
jo.put("task", hongXiangConveyorDeviceDriver.getTask()); |
|
@ -305,7 +304,6 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public Map<String, Object> putPlusPullAction(String param) { |
|
|
public Map<String, Object> putPlusPullAction(String param) { |
|
|
try { |
|
|
try { |
|
@ -319,61 +317,61 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
if (ObjectUtil.isEmpty(device)) { |
|
|
if (ObjectUtil.isEmpty(device)) { |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("message", "未找到对应的设备:"+device_code); |
|
|
resultJson.put("message", "未找到对应的设备:" + device_code); |
|
|
return resultJson; |
|
|
return resultJson; |
|
|
} |
|
|
} |
|
|
PlugPullDeviceSiteDeviceDriver plugPullDeviceSiteDeviceDriver; |
|
|
PlugPullDeviceSiteDeviceDriver plugPullDeviceSiteDeviceDriver; |
|
|
if (device.getDeviceDriver() instanceof PlugPullDeviceSiteDeviceDriver) { |
|
|
if (device.getDeviceDriver() instanceof PlugPullDeviceSiteDeviceDriver) { |
|
|
plugPullDeviceSiteDeviceDriver = (PlugPullDeviceSiteDeviceDriver) device.getDeviceDriver(); |
|
|
plugPullDeviceSiteDeviceDriver = (PlugPullDeviceSiteDeviceDriver) device.getDeviceDriver(); |
|
|
// 0 穿轴 1拔轴
|
|
|
// 0 穿轴 1拔轴
|
|
|
if(StrUtil.equals(type,"1")){ |
|
|
if (StrUtil.equals(type, "1")) { |
|
|
|
|
|
|
|
|
if(plugPullDeviceSiteDeviceDriver.getMode() == 1){ |
|
|
if (plugPullDeviceSiteDeviceDriver.getMode() == 1) { |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("message", "请求拔轴,当前设备工作模式未自动"); |
|
|
resultJson.put("message", "请求拔轴,当前设备工作模式未自动"); |
|
|
return resultJson; |
|
|
return resultJson; |
|
|
} |
|
|
} |
|
|
if(plugPullDeviceSiteDeviceDriver.getAction() == 0){ |
|
|
if (plugPullDeviceSiteDeviceDriver.getAction() == 0) { |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("message", "请求拔轴,当前设备未全自动"); |
|
|
resultJson.put("message", "请求拔轴,当前设备未全自动"); |
|
|
return resultJson; |
|
|
return resultJson; |
|
|
} |
|
|
} |
|
|
if(plugPullDeviceSiteDeviceDriver.getStatus() != 0){ |
|
|
if (plugPullDeviceSiteDeviceDriver.getStatus() != 0) { |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("message", "请求拔轴,当前设备未待机"); |
|
|
resultJson.put("message", "请求拔轴,当前设备未待机"); |
|
|
return resultJson; |
|
|
return resultJson; |
|
|
} |
|
|
} |
|
|
if(plugPullDeviceSiteDeviceDriver.getControl() != 0){ |
|
|
if (plugPullDeviceSiteDeviceDriver.getControl() != 0) { |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("message", "请求拔轴,当前设备未远程控制"); |
|
|
resultJson.put("message", "请求拔轴,当前设备未远程控制"); |
|
|
return resultJson; |
|
|
return resultJson; |
|
|
} |
|
|
} |
|
|
if(plugPullDeviceSiteDeviceDriver.getMove() != 0){ |
|
|
if (plugPullDeviceSiteDeviceDriver.getMove() != 0) { |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("message", "请求拔轴,当前设备有轴"); |
|
|
resultJson.put("message", "请求拔轴,当前设备有轴"); |
|
|
return resultJson; |
|
|
return resultJson; |
|
|
} |
|
|
} |
|
|
if(plugPullDeviceSiteDeviceDriver.getMode() == 0 && plugPullDeviceSiteDeviceDriver.getAction() ==1 |
|
|
if (plugPullDeviceSiteDeviceDriver.getMode() == 0 && plugPullDeviceSiteDeviceDriver.getAction() == 1 |
|
|
&& plugPullDeviceSiteDeviceDriver.getStatus() ==0 && plugPullDeviceSiteDeviceDriver.getMove() ==0 |
|
|
&& plugPullDeviceSiteDeviceDriver.getStatus() == 0 && plugPullDeviceSiteDeviceDriver.getMove() == 0 |
|
|
&& plugPullDeviceSiteDeviceDriver.getControl() ==0 ){ |
|
|
&& plugPullDeviceSiteDeviceDriver.getControl() == 0) { |
|
|
|
|
|
|
|
|
List list = new ArrayList(); |
|
|
List list = new ArrayList(); |
|
|
Map map = new HashMap(); |
|
|
Map map = new HashMap(); |
|
|
map.put("code","to_size"); |
|
|
map.put("code", "to_size"); |
|
|
map.put("value",size); |
|
|
map.put("value", size); |
|
|
list.add(map); |
|
|
list.add(map); |
|
|
Map map2 = new HashMap(); |
|
|
Map map2 = new HashMap(); |
|
|
map2.put("code","to_type"); |
|
|
map2.put("code", "to_type"); |
|
|
map2.put("value",type); |
|
|
map2.put("value", type); |
|
|
list.add(map2); |
|
|
list.add(map2); |
|
|
Map map3 = new HashMap(); |
|
|
Map map3 = new HashMap(); |
|
|
map3.put("code","to_command"); |
|
|
map3.put("code", "to_command"); |
|
|
map3.put("value","1"); |
|
|
map3.put("value", "1"); |
|
|
list.add(map3); |
|
|
list.add(map3); |
|
|
plugPullDeviceSiteDeviceDriver.writing(list); |
|
|
plugPullDeviceSiteDeviceDriver.writing(list); |
|
|
|
|
|
|
|
@ -384,55 +382,55 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
return resultJson; |
|
|
return resultJson; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
} else if (StrUtil.equals(type,"0")){ |
|
|
} else if (StrUtil.equals(type, "0")) { |
|
|
|
|
|
|
|
|
if(plugPullDeviceSiteDeviceDriver.getMode() == 1){ |
|
|
if (plugPullDeviceSiteDeviceDriver.getMode() == 1) { |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("message", "请求插轴,当前设备工作模式未自动"); |
|
|
resultJson.put("message", "请求插轴,当前设备工作模式未自动"); |
|
|
return resultJson; |
|
|
return resultJson; |
|
|
} |
|
|
} |
|
|
if(plugPullDeviceSiteDeviceDriver.getAction() == 0){ |
|
|
if (plugPullDeviceSiteDeviceDriver.getAction() == 0) { |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("message", "请求插轴,当前设备未全自动"); |
|
|
resultJson.put("message", "请求插轴,当前设备未全自动"); |
|
|
return resultJson; |
|
|
return resultJson; |
|
|
} |
|
|
} |
|
|
if(plugPullDeviceSiteDeviceDriver.getStatus() != 0){ |
|
|
if (plugPullDeviceSiteDeviceDriver.getStatus() != 0) { |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("message", "请求插轴,当前设备未待机"); |
|
|
resultJson.put("message", "请求插轴,当前设备未待机"); |
|
|
return resultJson; |
|
|
return resultJson; |
|
|
} |
|
|
} |
|
|
if(plugPullDeviceSiteDeviceDriver.getControl() != 0){ |
|
|
if (plugPullDeviceSiteDeviceDriver.getControl() != 0) { |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("message", "请求插轴,当前设备未远程控制"); |
|
|
resultJson.put("message", "请求插轴,当前设备未远程控制"); |
|
|
return resultJson; |
|
|
return resultJson; |
|
|
} |
|
|
} |
|
|
if(plugPullDeviceSiteDeviceDriver.getMove() != 1){ |
|
|
if (plugPullDeviceSiteDeviceDriver.getMove() != 1) { |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
JSONObject resultJson = new JSONObject(); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("status", HttpStatus.BAD_REQUEST.value()); |
|
|
resultJson.put("message", "请求插轴,当前设备没有轴"); |
|
|
resultJson.put("message", "请求插轴,当前设备没有轴"); |
|
|
return resultJson; |
|
|
return resultJson; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if(plugPullDeviceSiteDeviceDriver.getMode() == 0 && plugPullDeviceSiteDeviceDriver.getAction() ==1 |
|
|
if (plugPullDeviceSiteDeviceDriver.getMode() == 0 && plugPullDeviceSiteDeviceDriver.getAction() == 1 |
|
|
&& plugPullDeviceSiteDeviceDriver.getStatus() ==0 && plugPullDeviceSiteDeviceDriver.getMove() ==1 |
|
|
&& plugPullDeviceSiteDeviceDriver.getStatus() == 0 && plugPullDeviceSiteDeviceDriver.getMove() == 1 |
|
|
&& plugPullDeviceSiteDeviceDriver.getControl() ==0 ){ |
|
|
&& plugPullDeviceSiteDeviceDriver.getControl() == 0) { |
|
|
|
|
|
|
|
|
List list = new ArrayList(); |
|
|
List list = new ArrayList(); |
|
|
Map map = new HashMap(); |
|
|
Map map = new HashMap(); |
|
|
map.put("code","to_size"); |
|
|
map.put("code", "to_size"); |
|
|
map.put("value",size); |
|
|
map.put("value", size); |
|
|
list.add(map); |
|
|
list.add(map); |
|
|
Map map2 = new HashMap(); |
|
|
Map map2 = new HashMap(); |
|
|
map2.put("code","to_type"); |
|
|
map2.put("code", "to_type"); |
|
|
map2.put("value",type); |
|
|
map2.put("value", type); |
|
|
list.add(map2); |
|
|
list.add(map2); |
|
|
Map map3 = new HashMap(); |
|
|
Map map3 = new HashMap(); |
|
|
map3.put("code","to_command"); |
|
|
map3.put("code", "to_command"); |
|
|
map3.put("value","1"); |
|
|
map3.put("value", "1"); |
|
|
list.add(map3); |
|
|
list.add(map3); |
|
|
plugPullDeviceSiteDeviceDriver.writing(list); |
|
|
plugPullDeviceSiteDeviceDriver.writing(list); |
|
|
|
|
|
|
|
@ -457,7 +455,6 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public CreateTaskResponse crateTask(String param) { |
|
|
public CreateTaskResponse crateTask(String param) { |
|
|
try { |
|
|
try { |
|
@ -581,14 +578,14 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
route_plan_code = "normal"; |
|
|
route_plan_code = "normal"; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if( StrUtil.equals(task_type,"5") && taskService.querySameDeviceReadyTask(start_device_code,next_device_code,"0") > 1){ |
|
|
// if( StrUtil.equals(task_type,"5") && taskService.querySameDeviceReadyTask(start_device_code,next_device_code,"0") > 1){
|
|
|
JSONObject json = new JSONObject(); |
|
|
// JSONObject json = new JSONObject();
|
|
|
json.put("task_code", task_code); |
|
|
// json.put("task_code", task_code);
|
|
|
json.put("ext_task_id", ext_task_id); |
|
|
// json.put("ext_task_id", ext_task_id);
|
|
|
json.put("message", "已存在相同的起点终点未执行的输送任务"); |
|
|
// json.put("message", "已存在相同的起点终点未执行的输送任务");
|
|
|
errArr.add(json); |
|
|
// errArr.add(json);
|
|
|
continue; |
|
|
// continue;
|
|
|
} |
|
|
// }
|
|
|
TaskDto taskDto = taskService.findByCodeFromCache(task_code); |
|
|
TaskDto taskDto = taskService.findByCodeFromCache(task_code); |
|
|
if (taskDto != null) { |
|
|
if (taskDto != null) { |
|
|
JSONObject json = new JSONObject(); |
|
|
JSONObject json = new JSONObject(); |
|
@ -646,6 +643,9 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
jo.put("vehicle_code", vehicle_code); |
|
|
jo.put("vehicle_code", vehicle_code); |
|
|
jo.put("vehicle_type", vehicle_type); |
|
|
jo.put("vehicle_type", vehicle_type); |
|
|
jo.put("storage_task_type", storage_task_type); |
|
|
jo.put("storage_task_type", storage_task_type); |
|
|
|
|
|
if (StrUtil.isEmpty(agv_system_type)) { |
|
|
|
|
|
agv_system_type = "1"; |
|
|
|
|
|
} |
|
|
jo.put("agv_system_type", agv_system_type); |
|
|
jo.put("agv_system_type", agv_system_type); |
|
|
jo.put("oven_time", (int) Math.ceil(oven_time)); |
|
|
jo.put("oven_time", (int) Math.ceil(oven_time)); |
|
|
jo.put("remark", remark); |
|
|
jo.put("remark", remark); |
|
@ -658,45 +658,7 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
|
|
|
|
|
|
TaskDto task_dto = jo.toJavaObject(TaskDto.class); |
|
|
TaskDto task_dto = jo.toJavaObject(TaskDto.class); |
|
|
try { |
|
|
try { |
|
|
// task_type=7 则是立库任务需要下刻下发
|
|
|
taskService.create(task_dto); |
|
|
if (StrUtil.equals(task_dto.getTask_type(), "7")) { |
|
|
|
|
|
// taskService.create(task_dto);
|
|
|
|
|
|
// try{
|
|
|
|
|
|
// taskService.createInst(task_dto.getTask_id());
|
|
|
|
|
|
// } catch (Exception e) {
|
|
|
|
|
|
// e.printStackTrace();
|
|
|
|
|
|
// JSONObject json = new JSONObject();
|
|
|
|
|
|
// json.put("task_code", task_code);
|
|
|
|
|
|
// json.put("ext_task_id", ext_task_id);
|
|
|
|
|
|
// json.put("message", "创建指令失败:"+e.getMessage());
|
|
|
|
|
|
// errArr.add(json);
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
//创建临时指令 不创建、不生成
|
|
|
|
|
|
//等立库反馈成功才能创建任务和指令
|
|
|
|
|
|
Instruction inst = taskService.createTemporaryInst(task_dto); |
|
|
|
|
|
Resp resp = acsToLiKuService.sendInst(task_dto.getStorage_task_type(),inst); |
|
|
|
|
|
|
|
|
|
|
|
if(StrUtil.equals(resp.result,"true")){ |
|
|
|
|
|
//创建任务和指令
|
|
|
|
|
|
taskService.create(task_dto); |
|
|
|
|
|
inst.setSend_status("1"); |
|
|
|
|
|
taskService.createInst(inst); |
|
|
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
JSONObject json = new JSONObject(); |
|
|
|
|
|
json.put("task_code", task_code); |
|
|
|
|
|
json.put("ext_task_id", ext_task_id); |
|
|
|
|
|
json.put("message", resp.getComment()); |
|
|
|
|
|
json.put("code", resp.code); |
|
|
|
|
|
json.put("data", data); |
|
|
|
|
|
errArr.add(json); |
|
|
|
|
|
continue; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
taskService.create(task_dto); |
|
|
|
|
|
} |
|
|
|
|
|
} catch (Exception e) { |
|
|
} catch (Exception e) { |
|
|
// e.printStackTrace();
|
|
|
// e.printStackTrace();
|
|
|
JSONObject json = new JSONObject(); |
|
|
JSONObject json = new JSONObject(); |
|
@ -712,7 +674,7 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
response.setMessage("success"); |
|
|
response.setMessage("success"); |
|
|
} else { |
|
|
} else { |
|
|
response.setStatus(400); |
|
|
response.setStatus(400); |
|
|
if(ObjectUtil.isNotEmpty(errArr)){ |
|
|
if (ObjectUtil.isNotEmpty(errArr)) { |
|
|
response.setMessage(errArr.getJSONObject(0).getString("message")); |
|
|
response.setMessage(errArr.getJSONObject(0).getString("message")); |
|
|
} else { |
|
|
} else { |
|
|
response.setMessage("false"); |
|
|
response.setMessage("false"); |
|
@ -727,7 +689,6 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|