1.查询货位列表添加状态条件

feature-order-fix
x_z 2 years ago
parent 6f40183f82
commit 430cba26d6

@ -287,6 +287,9 @@
AND (s.code like concat('%', #{key}, '%') or s.name like concat('%', #{key}, '%') or
s.type like concat('%', #{key}, '%'))
</if>
<if test="status != null">
AND s.status = #{status}
</if>
</where>
</select>
@ -322,6 +325,9 @@
<if test="invWarehouseCode != null and invWarehouseCode != ''">
AND invWarehouseCode = #{invWarehouseCode}
</if>
<if test="status != null">
AND status = #{status}
</if>
</where>
</select>

Loading…
Cancel
Save