11/21 槽位管理绑定产品进行过滤1.0

dev_unify
wangwei 8 months ago
parent 8be0b3b5a8
commit 8cfbfc56e0

@ -125,6 +125,7 @@ public class FilterUdiRelRequest extends ListPageRequest {
private String payFeeCode;
private String keyWords;
private List<String> filterNameCodes;
}

@ -750,6 +750,13 @@
or basic_products.bzgg LIKE concat('%', #{keyWords}, '%')
or basic_products.prepnSpec LIKE concat('%', #{keyWords}, '%'))
</if>
<if test="filterNameCodes != null and filterNameCodes.size() != 0">
and nameCode not in
<foreach collection="filterNameCodes" item="item" open="(" separator="," close=")">
#{item}
</foreach>
and basic_products.packLevel = 1
</if>
</where>
GROUP BY basic_udirel.id
ORDER BY modifyTime DESC

Loading…
Cancel
Save