| | |
| | | </select> |
| | | |
| | | <select id="selectWaitAnalyzeInBoundTask" resultType="com.zy.asrs.wcs.core.entity.Task"> |
| | | select * from wcs_task where task_ctg = 1 and task_sts = 1 |
| | | select * from wcs_task where task_sts = 1 |
| | | order by priority desc,start_time,task_no asc |
| | | </select> |
| | | |
| | | <select id="selectPakOut" resultType="com.zy.asrs.wcs.core.entity.Task"> |
| | | select * from wcs_task |
| | | where task_sts=101 |
| | | and (task_ctg=101 or task_ctg=110) |
| | | order by priority desc,start_time,task_no asc |
| | | </select> |
| | | |
| | |
| | | select * from wcs_task |
| | | where task_sts in (1,2,3,101,102,103,301,302,303,401,402,403) |
| | | and shuttle_no = #{shuttleNo} |
| | | <if test="taskNo!=null"> |
| | | and task_no != #{taskNo} |
| | | </if> |
| | | order by priority desc,start_time,task_no asc |
| | | </select> |
| | | |