Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzwf
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzwf
提交
153fde9b
提交
153fde9b
编写于
3月 23, 2021
作者:
zhouweidong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
工作流待阅
上级
8dc95b3b
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
45 行增加
和
2 行删除
+45
-2
WFCoreService.java
...izlab/core/workflow/extensions/service/WFCoreService.java
+45
-2
未找到文件。
ibzwf-core/src/main/java/cn/ibizlab/core/workflow/extensions/service/WFCoreService.java
浏览文件 @
153fde9b
...
...
@@ -8,6 +8,7 @@ import cn.ibizlab.core.workflow.service.IWFGroupService;
import
cn.ibizlab.core.workflow.service.IWFProcessDefinitionService
;
import
cn.ibizlab.core.workflow.service.IWFUserService
;
import
cn.ibizlab.util.client.IBZUAAFeignClient
;
import
cn.ibizlab.util.enums.TaskType
;
import
cn.ibizlab.util.errors.BadRequestAlertException
;
import
cn.ibizlab.util.helper.RuleUtils
;
import
cn.ibizlab.util.security.AuthTokenUtil
;
...
...
@@ -399,8 +400,9 @@ public class WFCoreService
return
""
;
}
public
Map
<
String
,
Map
<
String
,
Object
>>
getDynaBusinessKeys
(
String
system
,
String
appname
,
String
entity
,
String
dynainstid
,
String
userId
)
{
public
Map
<
String
,
Map
<
String
,
Object
>>
getDynaBusinessKeys
(
String
system
,
String
appname
,
String
entity
,
String
dynainstid
,
String
userId
,
TaskType
type
)
{
Map
<
String
,
Map
<
String
,
Object
>>
businessKeys
=
new
HashMap
<>();
Page
<
WFTask
>
tasks
;
if
(
StringUtils
.
isEmpty
(
userId
))
userId
=
AuthenticationUser
.
getAuthenticationUser
().
getUserid
();
if
(
StringUtils
.
isEmpty
(
userId
)
&&
StringUtils
.
isEmpty
(
dynainstid
))
...
...
@@ -412,7 +414,10 @@ public class WFCoreService
return
businessKeys
;
}
context
.
getSearchCond
().
in
(
"DefinitionKey"
,
keys
);
Page
<
WFTask
>
tasks
=
searchMyTask
(
context
);
if
(
TaskType
.
READ
==
type
)
tasks
=
searchMyTask
(
context
);
else
tasks
=
searchMyUnreadTask
(
context
);
if
(!
ObjectUtils
.
isEmpty
(
tasks
)){
for
(
WFTask
task:
tasks
.
getContent
())
{
Object
key
=
task
.
getProcessinstancebusinesskey
();
...
...
@@ -430,6 +435,12 @@ public class WFCoreService
return
businessKeys
;
}
private
Page
<
WFTask
>
searchMyUnreadTask
(
WFTaskSearchContext
context
)
{
context
.
setSort
(
"createtime,desc"
);
com
.
baomidou
.
mybatisplus
.
extension
.
plugins
.
pagination
.
Page
<
WFTask
>
pages
=
wfCoreMapper
.
searchUnReadTask
(
context
.
getPages
(),
context
,
context
.
getSelectCond
());
return
new
PageImpl
<
WFTask
>(
pages
.
getRecords
(),
context
.
getPageable
(),
pages
.
getTotal
());
}
public
List
<
String
>
getBusinessKeys
(
String
system
,
String
appname
,
String
entity
,
String
processDefinitionKey
,
String
taskDefinitionKey
,
String
userId
)
{
List
<
String
>
businessKeys
=
new
ArrayList
<>();
...
...
@@ -1794,4 +1805,36 @@ public class WFCoreService
return
signTask
;
}
/**
* 标记任务为已读
* @param system
* @param appname
* @param entity
* @param businessKey
* @param taskId
* @param taskWay
*/
public
boolean
readTask
(
String
system
,
String
appname
,
String
entity
,
String
businessKey
,
String
taskId
,
WFTaskWay
taskWay
)
{
String
userId
=
"450000-0002"
;
if
(
StringUtils
.
isEmpty
(
userId
))
throw
new
BadRequestAlertException
(
"未传入当前用户"
,
entity
,
businessKey
);
if
(
StringUtils
.
isEmpty
(
taskId
)){
taskId
=
taskWay
.
getTaskid
();
}
Task
task
=
taskService
.
createTaskQuery
().
taskId
(
taskId
).
singleResult
();
if
(
ObjectUtils
.
isEmpty
(
task
)){
throw
new
BadRequestAlertException
(
"未找到运行时任务"
,
""
,
""
);
}
List
<
IdentityLink
>
identityLinks
=
taskService
.
getIdentityLinksForTask
(
taskId
);
identityLinks
.
forEach
(
idl
->{
if
(
userId
.
equals
(
idl
.
getUserId
())){
Map
map
=
new
HashMap
();
map
.
put
(
"taskid"
,
task
.
getId
());
map
.
put
(
"userid"
,
userId
);
wfCoreMapper
.
readTask
(
map
);
return
;
}
});
return
true
;
}
}
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录