Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzwf
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzwf
提交
e78ace6d
提交
e78ace6d
编写于
3月 29, 2021
作者:
tangyaolong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
完善逻辑
上级
4a189ed9
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
19 行增加
和
32 行删除
+19
-32
WFCoreService.java
...izlab/core/workflow/extensions/service/WFCoreService.java
+19
-24
WFCoreMapper.java
...in/java/cn/ibizlab/core/workflow/mapper/WFCoreMapper.java
+0
-2
WFCoreMapper.xml
...rc/main/resources/mapper/workflow/wfcore/WFCoreMapper.xml
+0
-6
未找到文件。
ibzwf-core/src/main/java/cn/ibizlab/core/workflow/extensions/service/WFCoreService.java
浏览文件 @
e78ace6d
...
...
@@ -41,6 +41,7 @@ import org.flowable.identitylink.api.IdentityLink;
import
org.flowable.task.api.DelegationState
;
import
org.flowable.task.api.Task
;
import
org.flowable.task.api.TaskQuery
;
import
org.flowable.task.api.history.HistoricTaskInstance
;
import
org.flowable.task.service.impl.persistence.entity.HistoricTaskInstanceEntity
;
import
org.flowable.task.service.impl.persistence.entity.TaskEntity
;
import
org.flowable.ui.common.security.SecurityUtils
;
...
...
@@ -1919,30 +1920,24 @@ public class WFCoreService
* @return 回退上一个节点
*/
public
boolean
wfback
(
String
taskId
)
{
try
{
String
sourceRef
=
null
;
Task
task
=
taskService
.
createTaskQuery
().
taskId
(
taskId
).
singleResult
();
String
taskDefinitionKey
=
task
.
getTaskDefinitionKey
();
if
(
taskDefinitionKey
==
null
)
{
log
.
debug
(
"taskDefinitionKey不存在"
);
return
false
;
}
String
processInstanceId
=
task
.
getProcessInstanceId
();
if
(
processInstanceId
==
null
)
{
log
.
debug
(
"processInstanceId不存在"
);
return
false
;
}
Map
taskMap
=
new
HashMap
();
taskMap
.
put
(
"processInstanceId"
,
processInstanceId
);
Map
process
=
wfCoreMapper
.
serchSubProcess
(
taskMap
);
if
(
process
.
size
()
==
1
){
sourceRef
=
process
.
get
(
"processInstanceId"
).
toString
();
runtimeService
.
createChangeActivityStateBuilder
().
processInstanceId
(
processInstanceId
).
moveActivityIdTo
(
taskDefinitionKey
,
sourceRef
).
changeState
();
return
true
;
}
}
catch
(
Exception
e
)
{
throw
new
BadRequestAlertException
(
"回退失败"
,
"WFCoreService"
,
"wfback"
);
Task
task
=
taskService
.
createTaskQuery
().
taskId
(
taskId
).
singleResult
();
String
taskDefinitionKey
=
task
.
getTaskDefinitionKey
();
if
(
taskDefinitionKey
==
null
)
{
log
.
debug
(
"taskDefinitionKey不存在"
);
return
false
;
}
return
false
;
String
processInstanceId
=
task
.
getProcessInstanceId
();
if
(
processInstanceId
==
null
)
{
log
.
debug
(
"processInstanceId不存在"
);
return
false
;
}
List
<
HistoricTaskInstance
>
history
=
historyService
.
createHistoricTaskInstanceQuery
().
processInstanceId
(
processInstanceId
).
orderByHistoricTaskInstanceEndTime
().
desc
().
list
();
if
(
ObjectUtils
.
isEmpty
(
history
)){
throw
new
BadRequestAlertException
(
"暂无流程数据"
,
"WFCoreService"
,
"wfback"
);
}
HistoricTaskInstance
sourceRef
=
history
.
get
(
0
);
// 执行回退
runtimeService
.
createChangeActivityStateBuilder
().
processInstanceId
(
processInstanceId
).
moveActivityIdTo
(
taskDefinitionKey
,
sourceRef
.
getTaskDefinitionKey
()).
changeState
();
return
true
;
}
}
ibzwf-core/src/main/java/cn/ibizlab/core/workflow/mapper/WFCoreMapper.java
浏览文件 @
e78ace6d
...
...
@@ -24,6 +24,4 @@ public interface WFCoreMapper {
Page
<
WFTask
>
searchUnReadTask
(
IPage
page
,
@Param
(
"srf"
)
WFTaskSearchContext
context
,
@Param
(
"ew"
)
Wrapper
<
WFTask
>
wrapper
)
;
Object
readTask
(
@Param
(
"et"
)
Map
param
);
Map
serchSubProcess
(
@Param
(
"et"
)
Map
param
);
}
ibzwf-core/src/main/resources/mapper/workflow/wfcore/WFCoreMapper.xml
浏览文件 @
e78ace6d
...
...
@@ -30,12 +30,6 @@
<if
test=
"ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere"
>
${ew.sqlSegment}
</if>
</select>
<select
id=
"serchSubProcess"
parameterType=
"cn.ibizlab.core.workflow.filter.WFTaskSearchContext"
resultType=
"java.util.Map"
>
select TASK_DEF_KEY_ as taskDefinitionKey from ACT_HI_TASKINST where PROC_INST_ID_ = #{et.processInstanceId} and END_TIME_ is not null and DELETE_REASON_ is null order by END_TIME_ desc
</select>
<select
id=
"searchMyTaskCnt"
parameterType=
"cn.ibizlab.core.workflow.filter.WFTaskSearchContext"
resultType=
"cn.ibizlab.core.workflow.domain.WFProcessNode"
>
select t.ProcessDefinitionKey,max(t.ProcessDefinitionName) as ProcessDefinitionName,
t.TaskDefinitionKey as UserTaskId,t.Name as UserTaskName,max(t.version) as version ,count(1) as Cnt from
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录