This commit is contained in:
2022-07-08 15:35:53 +08:00
parent b8ad160618
commit 41fa644bf0

View File

@@ -845,7 +845,7 @@ public class HandPFOutIvtServiceImpl implements HandPFOutIvtService {
WQLObject taskTable = WQLObject.getWQLObject("sch_base_task");
JSONArray taskObjja = taskTable.query("vehicle_code='" + storagevehicle_code + "' ").getResultJSONArray(0);
JSONObject taskObj = taskTable.query("vehicle_code='" + storagevehicle_code + "' and task_status='01'").uniqueResult(0);
JSONObject taskObj = taskTable.query("vehicle_code='" + storagevehicle_code + "' and task_status='01' is_delete = '0'").uniqueResult(0);
if (ObjectUtil.isEmpty(taskObj)) {
throw new PdaRequestException("托盘为【'" + storagevehicle_code + "'】指令未找到");
}