Commit 711eb636 by 284718418@qq.com

修改BUG 审批新建分组查询列表

parent a5cb05c7
......@@ -86,7 +86,10 @@
LEFT JOIN spmk_custom_approval b
ON a.id = b.approval_g_id
WHERE a.org_code = #{org_code} and b.name like CONCAT('%',#{eaaname},'%')
WHERE a.org_code = #{org_code}
<if test="eaaname != null and eaaname != '' ">
and b.name like CONCAT('%',#{eaaname},'%')
</if>
ORDER BY a.ranks, b.ranks,b.id DESC
</select>
......
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