no message

main
HUOJIN\92525 2026-01-28 12:14:46 +08:00
parent 6236694a13
commit efacfdf9ed
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ public interface PickMapper extends BaseMapper<Pick> {
*
* @return List<Pick>
*/
@Select("select * from data_pick where status in (1,2,3,4) order by order_date")
@Select("select * from data_pick where status in (1,2,4) order by order_date")
List<Pick> queryUnallocatedPick();
/**

View File

@ -30,7 +30,7 @@
<select id="queryUnFinishedPickDetail" resultType="org.cpte.modules.shipping.entity.PickDetail">
SELECT pd.* FROM data_pick p
JOIN data_pick_detail pd ON pd.pick_id=p.id
WHERE p.`status` in (1,2,3,4)
WHERE p.`status` in (1,2,4)
ORDER BY p.order_date,pd.line_no
</select>
</mapper>