Commit f7d2f91b authored by zhengyi's avatar zhengyi

完善商品下拉框搜索条件查询

parent 1571dc06
......@@ -14,7 +14,7 @@
GROUP BY type_id
</select>
<select id="getProductList" resultType="cn.iocoder.yudao.module.product.vo.product.ProductRespVO">
SELECT p.*
SELECT p.*,
t.title_zh as type_title_zh,
t.title_en as type_title_en
from ecw_product p left join ecw_product_type t on p.type_id = t.id
......@@ -34,6 +34,9 @@
</if>
<if test="reqVO.customsCode != null and reqVO.customsCode != '' ">
and p.customs_code like concat("%",concat(#{reqVO.customsCode},"%"))
</if>
<if test="reqVO.titleZh != null and reqVO.titleZh != '' ">
and (p.title_zh like concat("%",concat(#{reqVO.titleZh},"%")) or p.title_en like concat("%",concat(#{reqVO.titleZh},"%")))
</if>
<if test="reqVO.typeIds != null and reqVO.typeIds.size() > 0">
and p.type_id in
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment