Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
leaf-hlcm
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hlcm
leaf-hlcm
Commits
6099438d
Commit
6099438d
authored
Jul 04, 2024
by
38823
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
工作流监控跳转优化
parent
a93f2dad
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
zj_wfl_monitoring_admin_jump_node.lwm
...ses/zjwfl/ZJWFL1060/zj_wfl_monitoring_admin_jump_node.lwm
+10
-1
zj_wfl_monitoring_admin_operation.lview
...s/zjwfl/ZJWFL1060/zj_wfl_monitoring_admin_operation.lview
+1
-0
No files found.
src/main/webapp/WEB-INF/classes/zjwfl/ZJWFL1060/zj_wfl_monitoring_admin_jump_node.lwm
View file @
6099438d
...
...
@@ -4,6 +4,7 @@
<bm:field
name=
"node_id"
databaseType=
"NUMBER"
datatype=
"java.lang.Long"
/>
<bm:field
name=
"parent_node_id"
databaseType=
"NUMBER"
datatype=
"java.lang.Long"
/>
<bm:field
name=
"sequence_num"
databaseType=
"VARCHAR2"
datatype=
"java.lang.String"
displayWidth=
"150"
forDisplay=
"true"
prompt=
"节点序号"
/>
<bm:field
name=
"node_type"
databaseType=
"VARCHAR2"
datatype=
"java.lang.String"
displayWidth=
"150"
forDisplay=
"true"
prompt=
"节点类型"
/>
<bm:field
name=
"node_desc"
databaseType=
"VARCHAR2"
datatype=
"java.lang.String"
displayWidth=
"250"
forDisplay=
"true"
forQuery=
"true"
prompt=
"节点名称"
/>
</bm:fields>
<bm:operations>
...
...
@@ -14,6 +15,10 @@
select a.node_id,
null as parent_node_id,
to_char(a.sequence_num) as sequence_num,
(select v.code_value_name
from sys_code_values_v v
where v.code = 'ZJ_WFL_NODE_TYPE'
and v.code_value = a.node_type) node_type,
node_desc
from zj_wfl_workflow_node a
where a.workflow_id = ${@workflow_id}
...
...
@@ -22,6 +27,10 @@
select a.node_id,
p.parent_node_id,
p.sequence_num || '-' || a.sequence_num,
(select v.code_value_name
from sys_code_values_v v
where v.code = 'ZJ_WFL_NODE_TYPE'
and v.code_value = a.node_type) node_type,
p.node_desc || '-' || a.node_desc
from zj_wfl_workflow_node a,
(select a.link_workflow_id,
...
...
src/main/webapp/modules/zjwfl/ZJWFL1060/zj_wfl_monitoring_admin_operation.lview
View file @
6099438d
...
...
@@ -112,6 +112,7 @@
<a:field
name=
"jump_node_desc"
lovGridHeight=
"300"
lovHeight=
"450"
lovService=
"zjwfl.ZJWFL1060.zj_wfl_monitoring_admin_jump_node?workflow_id=${/parameter/@workflow_id}"
lovWidth=
"480"
prompt=
"跳转到节点"
title=
"跳转到节点"
>
<a:mapping>
<a:map
from=
"node_desc"
to=
"jump_node_desc"
/>
<a:map
from=
"node_type"
to=
"node_type"
/>
<a:map
from=
"node_id"
to=
"node_id"
/>
<a:map
from=
"parent_node_id"
to=
"parent_node_id"
/>
</a:mapping>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment