PDA出库交接修改

This commit is contained in:
秦鸿展
2026-05-27 21:19:34 +08:00
parent 2a2037b2fb
commit 5ba32daf3c
4 changed files with 9 additions and 4 deletions
@@ -210,8 +210,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="tabType != null and tabType==1">
and operators_by = #{operatorsBy}
</if>
<!-- 任务大厅 tabType=2:未领取;出库交接 taskType=7 不按 operators_name 过滤 -->
<if test="tabType != null and tabType==2">
<include refid="deliveTaskHallUnassignedFilter"/>
<if test="taskType == null or taskType != 7">
<include refid="deliveTaskHallUnassignedFilter"/>
</if>
</if>
<if test="operatorsName != null and operatorsName != ''">
and operators_name like concat('%', #{operatorsName}, '%')