Commit 494f2f9e by 陶光胜

门店查询支持多个门店控件id聚合

parent 6a054480
......@@ -287,9 +287,12 @@
#{item}
</foreach>
</if>
<if test="parentId != null">
<if test="parentId != null and parentId !=''">
and parent_store_group_id = #{parentId}
</if>
<if test="parentId == null or parentId = ''">
and group_level = 1
</if>
<if test="search != null and search != ''">
and store_group_name like concat('%', #{search}, '%')
</if>
......
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