入库单pda查询;

This commit is contained in:
王奎兴
2026-07-10 14:15:34 +08:00
parent 7ae6ed2aac
commit bbe8ce3523
5 changed files with 58 additions and 0 deletions
@@ -342,6 +342,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{item}
</foreach>
</if>
<if test="statusList != null and statusList.size > 0 ">
and a.status in
<foreach collection="statusList" item="item" index="index" open="(" close=")" separator=",">
#{item}
</foreach>
</if>
<if test="queryUserId != null">
and a.TASK_ISSUE_USER_ID like CONCAT(#{queryUserId}, '%')
</if>
<!-- 报关相关字段查询条件 -->
<if test="to != null and to != ''">
and a."TO" like concat('%', #{to}, '%')