会签管理-会签配置管理-费用见面审批流配置,节点名称文本框输入内容后点击搜索,报错系统未知错误;直转审批流配置、领用审批流配置类同;

This commit is contained in:
马三炮 2025-06-15 15:52:28 +08:00
parent 89e293575d
commit 52f38a5f68
1 changed files with 2 additions and 2 deletions

View File

@ -63,8 +63,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
from sys_workflow_node swn
left join sys_workflow_config sec on swn.id= sec.node_id
where swn.type_id=#{typeId}
<if test="nodeName != null "> and type_name like concat('%', #{typeName}, '%')</if>
<if test="nodeSignType != null "> and node_sign_type = #{nodeSignType}</if>
<if test="nodeName != null "> and swn.node_name like concat('%', #{nodeName}, '%')</if>
<if test="nodeSignType != null "> and swn.node_sign_type = #{nodeSignType}</if>
GROUP BY swn.id ORDER BY swn.node_sort
</select>
<select id="listByTaskId" resultType="com.bonus.material.work.domain.SysWorkflowNode">