代码更新
This commit is contained in:
@@ -40,12 +40,18 @@
|
||||
|
||||
IF 输入.flag = "1"
|
||||
QUERY
|
||||
SELECT point_code,point_uuid from sch_base_point WHERE lock_type='01' and point_code not in (
|
||||
SELECT point_code,point_uuid from sch_base_point WHERE lock_type='01' and point_code not in (
|
||||
|
||||
SELECT start_point_code as point_code from sch_base_task task WHERE is_delete='0' and task_status <>'06'
|
||||
union
|
||||
SELECT next_point_code as point_code from sch_base_task task WHERE is_delete='0' and task_status <>'06'
|
||||
)
|
||||
SELECT start_point_code as point_code from sch_base_task task WHERE is_delete='0' and task_status <>'06'
|
||||
union
|
||||
SELECT next_point_code as point_code from sch_base_task task WHERE is_delete='0' and task_status <>'06'
|
||||
)
|
||||
and point_uuid not in (
|
||||
SELECT turnin_struct_uuid as point_uuid from st_buss_dumpinv dump WHERE is_delete='0' and bill_status <>'04'
|
||||
union
|
||||
SELECT turnout_struct_uuid as point_uuid from st_buss_dumpinv dump WHERE is_delete='0' and bill_status <>'04'
|
||||
|
||||
)
|
||||
ENDSELECT
|
||||
ENDQUERY
|
||||
ENDIF
|
||||
|
||||
@@ -32,7 +32,6 @@ public class AcsToWmsServiceImpl implements AcsToWmsService {
|
||||
* task_code:任务编码
|
||||
* task_status:1:执行中,2:完成 ,3:acs取消
|
||||
*
|
||||
* @param jsonObject 条件
|
||||
* @return
|
||||
*/
|
||||
public static void main(String[] args) {
|
||||
|
||||
@@ -242,7 +242,7 @@ public class InTask extends AbstractAcsTask {
|
||||
}
|
||||
JSONObject taskjo = WQLObject.getWQLObject("sch_base_task").query("task_uuid='" + task_uuid + "'").uniqueResult(0);
|
||||
taskjo.optString("taskfinish_mode", "02");
|
||||
this.updateTaskStatus(taskjo, TaskStatusEnum.FINISHED.getCode());
|
||||
this.updateTaskStatus(taskjo, TaskStatusEnum.EXECUTING.getCode());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user