|
|
@ -60,47 +60,38 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
|
private String log_type = "LMS请求ACS"; |
|
|
|
|
|
|
|
@Override |
|
|
|
public CancelTaskResponse cancelFromWms(String param) throws Exception { |
|
|
|
public CancelTaskResponse cancelFromWms(String param) { |
|
|
|
ParamService paramService = SpringContextHolder.getBean(ParamService.class); |
|
|
|
InstructionService instructionService = SpringContextHolder.getBean(InstructionService.class); |
|
|
|
JSONArray datas = JSONArray.parseArray(param); |
|
|
|
// JSONArray datas = JSONArray.parseArray(param);
|
|
|
|
CancelTaskResponse response = new CancelTaskResponse(); |
|
|
|
JSONArray errArr = new JSONArray(); |
|
|
|
for (int i = 0; i < datas.size(); i++) { |
|
|
|
String data = datas.get(i).toString(); |
|
|
|
CancelTaskRequest request = JsonUtl.format(param, CancelTaskRequest.class); |
|
|
|
CancelTaskRequest request = JsonUtl.format(param, CancelTaskRequest.class); |
|
|
|
|
|
|
|
String task_uuid = request.getExt_task_id(); |
|
|
|
String task_code = request.getTask_code(); |
|
|
|
String vehicle_code = request.getVehicle_code(); |
|
|
|
// String task_uuid = request.getExt_task_id();
|
|
|
|
String task_code = request.getTASKCODE(); |
|
|
|
String vehicle_code = request.getVehicle_code(); |
|
|
|
|
|
|
|
if (StrUtil.isEmpty(task_uuid)) { |
|
|
|
throw new WDKException("任务标识不能为空"); |
|
|
|
} |
|
|
|
if (StrUtil.isEmpty(task_code)) { |
|
|
|
throw new WDKException("任务号不能为空"); |
|
|
|
} |
|
|
|
String cancelTaskCheck = paramService.findByCode(AcsConfig.CANCELTASKCHECK).getValue(); |
|
|
|
if (StrUtil.equals(cancelTaskCheck, "1")) { |
|
|
|
taskService.cancel(task_uuid); |
|
|
|
} else if (StrUtil.equals(cancelTaskCheck, "0")) { |
|
|
|
Instruction inst = instructionService.findByTaskcode(task_code); |
|
|
|
if (inst == null) { |
|
|
|
taskService.cancel(task_uuid); |
|
|
|
} else { |
|
|
|
throw new RuntimeException("指令正在执行中,操作失败!"); |
|
|
|
} |
|
|
|
// if (StrUtil.isEmpty(task_uuid)) {
|
|
|
|
// throw new WDKException("任务标识不能为空");
|
|
|
|
// }
|
|
|
|
if (StrUtil.isEmpty(task_code)) { |
|
|
|
throw new WDKException("任务号不能为空!"); |
|
|
|
} |
|
|
|
String cancelTaskCheck = paramService.findByCode(AcsConfig.CANCELTASKCHECK).getValue(); |
|
|
|
if (StrUtil.equals(cancelTaskCheck, "1")) { |
|
|
|
taskService.cancelFromCode(task_code); |
|
|
|
} else if (StrUtil.equals(cancelTaskCheck, "0")) { |
|
|
|
Instruction inst = instructionService.findByTaskcode(task_code); |
|
|
|
if (inst == null) { |
|
|
|
taskService.cancelFromCode(task_code); |
|
|
|
} else { |
|
|
|
throw new RuntimeException("指令正在执行中,操作失败!"); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (ObjectUtil.isEmpty(errArr)) { |
|
|
|
response.setStatus(200); |
|
|
|
} else { |
|
|
|
response.setStatus(400); |
|
|
|
} |
|
|
|
|
|
|
|
response.setStatus(HttpStatus.OK.value()); |
|
|
|
response.setMessage("success"); |
|
|
|
response.setErrArr(errArr); |
|
|
|
log.info("cancelFromWms--------------:输出参数:" + response); |
|
|
|
|
|
|
|
return response; |
|
|
@ -458,70 +449,67 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
|
try { |
|
|
|
MDC.put(log_file_type, log_type); |
|
|
|
log.info("crateTask-----输入参数{}", param); |
|
|
|
JSONArray datas = JSONArray.parseArray("[" + param + "]"); |
|
|
|
CreateTaskResponse response = new CreateTaskResponse(); |
|
|
|
JSONArray errArr = new JSONArray(); |
|
|
|
for (int i = 0; i < datas.size(); i++) { |
|
|
|
String data = datas.get(i).toString(); |
|
|
|
CreateTaskRequest request = JsonUtl.format(data, CreateTaskRequest.class); |
|
|
|
CreateTaskRequest request = JsonUtl.format(param, CreateTaskRequest.class); |
|
|
|
// String ext_task_id = request.getREQCODE();
|
|
|
|
String task_code = request.getTASKCODE(); |
|
|
|
String start_device_code = request.getSTARTPOSITION(); |
|
|
|
String task_code = request.getTASKCODE(); |
|
|
|
String start_device_code = request.getSTARTPOSITION(); |
|
|
|
// String start_device_code2 = request.getStart_device_code2();
|
|
|
|
String next_device_code = request.getENNPOSITION(); |
|
|
|
String next_device_code = request.getENNPOSITION(); |
|
|
|
// String next_device_code2 = request.getNext_device_code2();
|
|
|
|
// String put_device_code = request.getPut_device_code();
|
|
|
|
String priority = request.getPriority(); |
|
|
|
String vehicle_code = request.getPODCODE(); |
|
|
|
String vehicle_type = request.getVehicle_type(); |
|
|
|
String route_plan_code = request.getRoute_plan_code(); |
|
|
|
String task_type = request.getTASKTYPE(); |
|
|
|
String storage_task_type = request.getDtl_type(); |
|
|
|
String agv_system_type = request.getAgv_system_type(); |
|
|
|
String remark = request.getRemark(); |
|
|
|
double oven_time = 0.00d; |
|
|
|
if (StrUtil.isNotEmpty(request.getOven_time())) { |
|
|
|
oven_time = Double.parseDouble(request.getOven_time()); |
|
|
|
} |
|
|
|
String temperature = request.getTemperature(); |
|
|
|
Map<String, String> params = request.getParams(); |
|
|
|
|
|
|
|
String start_point_code = ""; |
|
|
|
String start_point_code2 = ""; |
|
|
|
String next_point_code = ""; |
|
|
|
String next_point_code2 = ""; |
|
|
|
String put_point_code = ""; |
|
|
|
if (StrUtil.isEmpty(task_code)) { |
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setREQCODE("1"); |
|
|
|
response.setRTMSG("任务号不能为空!"); |
|
|
|
return response; |
|
|
|
} |
|
|
|
if (StrUtil.isEmpty(start_device_code)) { |
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setREQCODE("1"); |
|
|
|
response.setRTMSG("起点不能为空!"); |
|
|
|
return response; |
|
|
|
} |
|
|
|
if (StrUtil.isEmpty(next_device_code)) { |
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setREQCODE("1"); |
|
|
|
response.setRTMSG("终点不能为空!"); |
|
|
|
return response; |
|
|
|
} |
|
|
|
String priority = request.getPriority(); |
|
|
|
String vehicle_code = request.getPODCODE(); |
|
|
|
String vehicle_type = request.getVehicle_type(); |
|
|
|
String route_plan_code = request.getRoute_plan_code(); |
|
|
|
String task_type = request.getTASKTYPE(); |
|
|
|
String storage_task_type = request.getDtl_type(); |
|
|
|
String agv_system_type = request.getAgv_system_type(); |
|
|
|
String remark = request.getRemark(); |
|
|
|
double oven_time = 0.00d; |
|
|
|
if (StrUtil.isNotEmpty(request.getOven_time())) { |
|
|
|
oven_time = Double.parseDouble(request.getOven_time()); |
|
|
|
} |
|
|
|
String temperature = request.getTemperature(); |
|
|
|
Map<String, String> params = request.getParams(); |
|
|
|
|
|
|
|
String start_point_code = ""; |
|
|
|
String start_point_code2 = ""; |
|
|
|
String next_point_code = ""; |
|
|
|
String next_point_code2 = ""; |
|
|
|
String put_point_code = ""; |
|
|
|
if (StrUtil.isEmpty(task_code)) { |
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setRTCODE("1"); |
|
|
|
response.setRTMSG("任务号不能为空!"); |
|
|
|
return response; |
|
|
|
} |
|
|
|
if (StrUtil.isEmpty(start_device_code)) { |
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setRTCODE("1"); |
|
|
|
response.setRTMSG("起点不能为空!"); |
|
|
|
return response; |
|
|
|
} |
|
|
|
if (StrUtil.isEmpty(next_device_code)) { |
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setRTCODE("1"); |
|
|
|
response.setRTMSG("终点不能为空!"); |
|
|
|
return response; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
JSONObject start_device_json = WQLObject.getWQLObject("acs_storage_cell").query("parent_storage_code ='" + start_device_code + "'").uniqueResult(0); |
|
|
|
if (!ObjectUtil.isEmpty(start_device_json)) { |
|
|
|
start_point_code = (String) start_device_json.get("parent_storage_code") == null ? start_device_code : (String) start_device_json.get("storage_code"); |
|
|
|
} |
|
|
|
JSONObject next_device_json = WQLObject.getWQLObject("acs_storage_cell").query("parent_storage_code ='" + next_device_code + "'").uniqueResult(0); |
|
|
|
if (!ObjectUtil.isEmpty(next_device_json)) { |
|
|
|
next_point_code = (String) next_device_json.get("parent_storage_code") == null ? next_point_code : (String) next_device_json.get("storage_code"); |
|
|
|
} |
|
|
|
JSONObject start_device_json = WQLObject.getWQLObject("acs_storage_cell").query("parent_storage_code ='" + start_device_code + "'").uniqueResult(0); |
|
|
|
if (!ObjectUtil.isEmpty(start_device_json)) { |
|
|
|
start_point_code = (String) start_device_json.get("parent_storage_code") == null ? start_device_code : (String) start_device_json.get("storage_code"); |
|
|
|
} |
|
|
|
JSONObject next_device_json = WQLObject.getWQLObject("acs_storage_cell").query("parent_storage_code ='" + next_device_code + "'").uniqueResult(0); |
|
|
|
if (!ObjectUtil.isEmpty(next_device_json)) { |
|
|
|
next_point_code = (String) next_device_json.get("parent_storage_code") == null ? next_point_code : (String) next_device_json.get("storage_code"); |
|
|
|
} |
|
|
|
// JSONObject start_device_json2 = WQLObject.getWQLObject("acs_storage_cell").query("parent_storage_code ='" + start_device_code2 + "'").uniqueResult(0);
|
|
|
|
// if (!ObjectUtil.isEmpty(start_device_json2)) {
|
|
|
|
// start_point_code2 = (String) start_device_json2.get("parent_storage_code") == null ? start_device_code2 : (String) start_device_json2.get("storage_code");
|
|
|
@ -534,19 +522,19 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
|
// if (!ObjectUtil.isEmpty(put_device_json)) {
|
|
|
|
// put_point_code = (String) put_device_json.get("parent_storage_code") == null ? put_device_code : (String) put_device_json.get("storage_code");
|
|
|
|
// }
|
|
|
|
if (StrUtil.isNotEmpty(start_point_code) && start_point_code.indexOf("-") > 0) { |
|
|
|
String str[] = start_point_code.split("-"); |
|
|
|
start_device_code = str[0]; |
|
|
|
} else { |
|
|
|
start_device_code = start_point_code; |
|
|
|
} |
|
|
|
if (StrUtil.isNotEmpty(start_point_code) && start_point_code.indexOf("-") > 0) { |
|
|
|
String str[] = start_point_code.split("-"); |
|
|
|
start_device_code = str[0]; |
|
|
|
} else { |
|
|
|
start_device_code = start_point_code; |
|
|
|
} |
|
|
|
|
|
|
|
if (StrUtil.isNotEmpty(next_point_code) && next_point_code.indexOf("-") > 0) { |
|
|
|
String str[] = next_point_code.split("-"); |
|
|
|
next_device_code = str[0]; |
|
|
|
} else { |
|
|
|
next_device_code = next_point_code; |
|
|
|
} |
|
|
|
if (StrUtil.isNotEmpty(next_point_code) && next_point_code.indexOf("-") > 0) { |
|
|
|
String str[] = next_point_code.split("-"); |
|
|
|
next_device_code = str[0]; |
|
|
|
} else { |
|
|
|
next_device_code = next_point_code; |
|
|
|
} |
|
|
|
|
|
|
|
// if (StrUtil.isNotEmpty(start_point_code2) && start_point_code2.indexOf("-") > 0) {
|
|
|
|
// String str[] = start_point_code2.split("-");
|
|
|
@ -569,9 +557,9 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
|
// put_device_code = put_point_code;
|
|
|
|
// }
|
|
|
|
|
|
|
|
if (StrUtil.isEmpty(route_plan_code)) { |
|
|
|
route_plan_code = "normal"; |
|
|
|
} |
|
|
|
if (StrUtil.isEmpty(route_plan_code)) { |
|
|
|
route_plan_code = "normal"; |
|
|
|
} |
|
|
|
|
|
|
|
// if (StrUtil.equals(task_type, "5") && taskService.querySameDeviceReadyTask(start_device_code, next_device_code, "0") > 1) {
|
|
|
|
// JSONObject json = new JSONObject();
|
|
|
@ -581,73 +569,73 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
|
// errArr.add(json);
|
|
|
|
// continue;
|
|
|
|
// }
|
|
|
|
TaskDto taskDto = taskService.findByCodeFromCache(task_code); |
|
|
|
if (taskDto != null) { |
|
|
|
TaskDto taskDto = taskService.findByCodeFromCache(task_code); |
|
|
|
if (taskDto != null) { |
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setRTCODE("1"); |
|
|
|
response.setRTMSG("不能存在相同的任务号!"); |
|
|
|
return response; |
|
|
|
} |
|
|
|
if (!StrUtil.isEmpty(vehicle_code)) { |
|
|
|
TaskDto vehicle_dto = taskService.findByContainer(vehicle_code); |
|
|
|
if (vehicle_dto != null) { |
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setREQCODE("1"); |
|
|
|
response.setRTMSG("不能存在相同的任务号!"); |
|
|
|
response.setRTCODE("1"); |
|
|
|
response.setRTMSG("不能存在相同的料车号!"); |
|
|
|
return response; |
|
|
|
} |
|
|
|
if (!StrUtil.isEmpty(vehicle_code)) { |
|
|
|
TaskDto vehicle_dto = taskService.findByContainer(vehicle_code); |
|
|
|
if (vehicle_dto != null) { |
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setREQCODE("1"); |
|
|
|
response.setRTMSG("不能存在相同的料车号!"); |
|
|
|
return response; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (StrUtil.isEmpty(start_point_code)) { |
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setREQCODE("1"); |
|
|
|
response.setRTMSG(start_device_code + "未找到对应点位!"); |
|
|
|
return response; |
|
|
|
} |
|
|
|
if (StrUtil.isEmpty(next_point_code)) { |
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setREQCODE("1"); |
|
|
|
response.setRTMSG(next_device_code + "未找到对应点位!"); |
|
|
|
return response; |
|
|
|
} |
|
|
|
if (StrUtil.isEmpty(start_point_code)) { |
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setRTCODE("1"); |
|
|
|
response.setRTMSG(start_device_code + "未找到对应点位!"); |
|
|
|
return response; |
|
|
|
} |
|
|
|
if (StrUtil.isEmpty(next_point_code)) { |
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setRTCODE("1"); |
|
|
|
response.setRTMSG(next_device_code + "未找到对应点位!"); |
|
|
|
return response; |
|
|
|
} |
|
|
|
|
|
|
|
JSONObject jo = new JSONObject(); |
|
|
|
jo.put("task_code", task_code); |
|
|
|
jo.put("task_id", task_code); |
|
|
|
jo.put("start_point_code", start_point_code); |
|
|
|
jo.put("next_point_code", next_point_code); |
|
|
|
jo.put("start_point_code2", start_point_code2); |
|
|
|
jo.put("next_point_code2", next_point_code2); |
|
|
|
jo.put("put_point_code", put_point_code); |
|
|
|
jo.put("start_parent_code", start_point_code); |
|
|
|
jo.put("next_parent_code", next_point_code); |
|
|
|
jo.put("start_device_code", start_device_code); |
|
|
|
jo.put("next_device_code", next_device_code); |
|
|
|
JSONObject jo = new JSONObject(); |
|
|
|
jo.put("task_code", task_code); |
|
|
|
jo.put("task_id", task_code); |
|
|
|
jo.put("start_point_code", start_point_code); |
|
|
|
jo.put("next_point_code", next_point_code); |
|
|
|
jo.put("start_point_code2", start_point_code2); |
|
|
|
jo.put("next_point_code2", next_point_code2); |
|
|
|
jo.put("put_point_code", put_point_code); |
|
|
|
jo.put("start_parent_code", start_point_code); |
|
|
|
jo.put("next_parent_code", next_point_code); |
|
|
|
jo.put("start_device_code", start_device_code); |
|
|
|
jo.put("next_device_code", next_device_code); |
|
|
|
// jo.put("start_device_code2", start_device_code2);
|
|
|
|
// jo.put("next_device_code2", next_device_code2);
|
|
|
|
// jo.put("put_device_code", put_device_code);
|
|
|
|
jo.put("priority", priority); |
|
|
|
jo.put("vehicle_code", vehicle_code); |
|
|
|
jo.put("vehicle_type", vehicle_type); |
|
|
|
jo.put("storage_task_type", storage_task_type); |
|
|
|
jo.put("agv_system_type", agv_system_type); |
|
|
|
jo.put("oven_time", (int) Math.ceil(oven_time)); |
|
|
|
jo.put("remark", remark); |
|
|
|
jo.put("params", params); |
|
|
|
jo.put("task_type", task_type); |
|
|
|
|
|
|
|
if (!StrUtil.isEmpty(task_code)) { |
|
|
|
jo.put("ext_task_id", task_code); |
|
|
|
} |
|
|
|
jo.put("priority", priority); |
|
|
|
jo.put("vehicle_code", vehicle_code); |
|
|
|
jo.put("vehicle_type", vehicle_type); |
|
|
|
jo.put("storage_task_type", storage_task_type); |
|
|
|
jo.put("agv_system_type", agv_system_type); |
|
|
|
jo.put("oven_time", (int) Math.ceil(oven_time)); |
|
|
|
jo.put("remark", remark); |
|
|
|
jo.put("params", params); |
|
|
|
jo.put("task_type", task_type); |
|
|
|
|
|
|
|
if (!StrUtil.isEmpty(task_code)) { |
|
|
|
jo.put("ext_task_id", task_code); |
|
|
|
} |
|
|
|
|
|
|
|
TaskDto task_dto = jo.toJavaObject(TaskDto.class); |
|
|
|
try { |
|
|
|
// task_type=7 则是立库任务需要下刻下发
|
|
|
|
if (StrUtil.equals(task_dto.getTask_type(), "7")) { |
|
|
|
TaskDto task_dto = jo.toJavaObject(TaskDto.class); |
|
|
|
try { |
|
|
|
// task_type=7 则是立库任务需要下刻下发
|
|
|
|
if (StrUtil.equals(task_dto.getTask_type(), "7")) { |
|
|
|
// taskService.create(task_dto);
|
|
|
|
// try{
|
|
|
|
// taskService.createInst(task_dto.getTask_id());
|
|
|
@ -660,53 +648,43 @@ public class WmsToAcsServiceImpl implements WmsToAcsService { |
|
|
|
// 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); |
|
|
|
//创建临时指令 不创建、不生成
|
|
|
|
//等立库反馈成功才能创建任务和指令
|
|
|
|
Instruction inst = taskService.createTemporaryInst(task_dto); |
|
|
|
Resp resp = acsToLiKuService.sendInst(task_dto.getStorage_task_type(), 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; |
|
|
|
} |
|
|
|
if (StrUtil.equals(resp.result, "true")) { |
|
|
|
//创建任务和指令
|
|
|
|
taskService.create(task_dto); |
|
|
|
inst.setSend_status("1"); |
|
|
|
taskService.createInst(inst); |
|
|
|
|
|
|
|
} else { |
|
|
|
taskService.create(task_dto); |
|
|
|
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", param); |
|
|
|
errArr.add(json); |
|
|
|
} |
|
|
|
} catch (Exception e) { |
|
|
|
// e.printStackTrace();
|
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setREQCODE("1"); |
|
|
|
response.setRTMSG(e.getMessage()); |
|
|
|
return response; |
|
|
|
} |
|
|
|
} |
|
|
|
if (ObjectUtil.isEmpty(errArr)) { |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setREQCODE("0"); |
|
|
|
response.setRTMSG("success"); |
|
|
|
} else { |
|
|
|
response.setStatus(400); |
|
|
|
if (ObjectUtil.isNotEmpty(errArr)) { |
|
|
|
response.setMessage(errArr.getJSONObject(0).getString("message")); |
|
|
|
|
|
|
|
} else { |
|
|
|
response.setMessage("false"); |
|
|
|
taskService.create(task_dto); |
|
|
|
} |
|
|
|
response.setErrArr(errArr); |
|
|
|
} catch (Exception e) { |
|
|
|
// e.printStackTrace();
|
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setRTCODE("1"); |
|
|
|
response.setRTMSG(e.getMessage()); |
|
|
|
return response; |
|
|
|
} |
|
|
|
|
|
|
|
response.setREQCODE(task_code); |
|
|
|
response.setREPLYTIME(DateUtil.now()); |
|
|
|
response.setRTCODE("0"); |
|
|
|
response.setRTMSG("success"); |
|
|
|
log.info("createFromWms--------------:输出参数:" + JSON.toJSONString(response)); |
|
|
|
|
|
|
|
return response; |
|
|
|