demand: tms-运输管理-组批次规则维护-查询组批次规则支持根据多个供应商查询,传多个供应商必须是忽略顺序全包含
This commit is contained in:
parent
13a848403b
commit
ac2b28d226
@ -96,7 +96,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
AND l.trans_manager like concat('%', #{transManager}, '%')
|
AND l.trans_manager like concat('%', #{transManager}, '%')
|
||||||
</if>
|
</if>
|
||||||
<if test="productType != null and productType != ''"> and ( FIND_IN_SET(#{productType},r.product_type) )</if>
|
<if test="productType != null and productType != ''"> and ( FIND_IN_SET(#{productType},r.product_type) )</if>
|
||||||
<if test="supplierCode != null and supplierCode != ''"> and ( FIND_IN_SET(#{supplierCode},r.supplier_code) )</if>
|
<if test="supplierCode != null and supplierCode != ''">
|
||||||
|
<foreach item="code" collection="supplierCode.replace(' ', '').split(',')">
|
||||||
|
and FIND_IN_SET(#{code}, r.supplier_code)
|
||||||
|
</foreach>
|
||||||
|
</if>
|
||||||
</where>
|
</where>
|
||||||
order by id desc
|
order by id desc
|
||||||
</select>
|
</select>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user