Commit b2c24b2d by 284718418@qq.com

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

parent 4490d7d0
......@@ -206,4 +206,7 @@ config-8timer:
# 客户管理导入服务器保存路径
crm-excel:
realPath: '/data/crm-excel/'
#导出zip临时地址
zip:
path: '/data/crm-zip/'
......@@ -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