根据仓库id过滤列表,根据仓库id查询仓库名称

This commit is contained in:
zhou-hongcheng
2026-02-06 10:55:36 +08:00
parent 1e6173c74f
commit d9e5d5187e
3 changed files with 22 additions and 4 deletions
@@ -64,6 +64,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="organizationName != null and organizationName != ''">
and organization_name like concat('%', #{organizationName}, '%')
</if>
<if test="warehouseId != null and warehouseId != ''">
and warehouse_id = #{warehouseId}
</if>
<if test="warehouseName != null and warehouseName != ''">
and warehouse_name like concat('%', #{warehouseName}, '%')
</if>