Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
datacollector
Overview
Overview
Details
Activity
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
chenweisong
datacollector
Commits
254b0845
Commit
254b0845
authored
Apr 24, 2020
by
chenweisong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新
parent
9f929833
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
41 deletions
+20
-41
TaskController.java
...in/java/com/keymobile/rest/controller/TaskController.java
+16
-32
ProcessDao.java
src/main/java/com/keymobile/rest/dao/ProcessDao.java
+0
-1
Template.java
src/main/java/com/keymobile/rest/model/Template.java
+2
-2
ProcessService.java
src/main/java/com/keymobile/rest/service/ProcessService.java
+0
-4
Mission.java
src/main/java/com/keymobile/rest/vo/Mission.java
+2
-2
No files found.
src/main/java/com/keymobile/rest/controller/TaskController.java
View file @
254b0845
...
...
@@ -17,6 +17,7 @@ import com.keymobile.rest.vo.SimpleTask;
import
io.swagger.annotations.*
;
import
org.activiti.engine.*
;
import
org.activiti.engine.history.HistoricActivityInstance
;
import
org.activiti.engine.history.HistoricProcessInstance
;
import
org.activiti.engine.repository.Deployment
;
import
org.activiti.engine.repository.ProcessDefinition
;
import
org.activiti.engine.runtime.ProcessInstance
;
...
...
@@ -115,9 +116,7 @@ public class TaskController {
Template
template
=
templateService
.
findById
(
templateId
);
vars
.
put
(
"config"
,
template
.
getConfig
());
vars
.
put
(
"templateId"
,
template
.
getId
());
if
(
StringUtils
.
isNotEmpty
(
template
.
getUpStreamAddr
()))
{
vars
.
put
(
"filePath"
,
template
.
getUpStreamAddr
());
}
vars
.
put
(
"headerLine"
,
template
.
getHeaderLine
());
}
missions
.
add
(
convertTaskToMission
(
task
,
vars
));
});
...
...
@@ -141,9 +140,7 @@ public class TaskController {
vars
.
put
(
"type"
,
CommonConstant
.
TASK_TYPE_GROUP
);
vars
.
put
(
"config"
,
template
.
getConfig
());
vars
.
put
(
"templateId"
,
templateId
);
if
(
StringUtils
.
isNotEmpty
(
template
.
getUpStreamAddr
()))
{
vars
.
put
(
"filePath"
,
template
.
getUpStreamAddr
());
}
vars
.
put
(
"headerLine"
,
template
.
getHeaderLine
());
missions
.
add
(
convertTaskToMission
(
groupTask
,
vars
));
}
});
...
...
@@ -347,35 +344,22 @@ public class TaskController {
public
SimplePage
viewTasksProgress
(
int
pageNo
,
int
pageSize
)
{
String
orderBy
=
"descending"
;
//
String
propBy
=
"id"
;
// groupBy
Page
<
Process
>
page
=
processService
.
findAll
ByActivityStatus
(
Activity
.
STATUS_BEGIN
,
pageNo
,
pageSize
,
orderBy
,
propBy
);
Page
<
Process
>
page
=
processService
.
findAll
(
pageNo
,
pageSize
,
orderBy
,
propBy
);
List
<
Process
>
processes
=
page
.
getContent
();
List
<
Map
>
list
=
new
ArrayList
<>();
processes
.
forEach
(
process
->
{
Map
map
=
new
HashMap
();
map
.
put
(
"id"
,
process
.
getId
());
// List<HistoricActivityInstance> lisst = historyService // 历史相关Service
// .createHistoricActivityInstanceQuery() // 创建历史活动实例查询
// .processInstanceId(process.getProcessId()) // 执行流程实例id
// .finished()
// .list();
// for (HistoricActivityInstance hai : lisst) {
// System.out.println("活动ID:" + hai.getId());
// }
List
<
ProcessInstance
>
s
=
runtimeService
.
createProcessInstanceQuery
()
.
processInstanceId
(
process
.
getProcessId
()).
active
()
.
list
();
List
<
Task
>
asda
=
taskService
.
createTaskQuery
()
.
processInstanceId
(
process
.
getProcessId
()).
active
()
.
list
();
for
(
Task
hai
:
asda
)
{
int
nrOfInstances
=
Integer
.
parseInt
(
runtimeService
.
getVariable
(
hai
.
getExecutionId
(),
"nrOfInstances"
).
toString
());
// 当前获取的会签任务数量
int
nrOfActiveInstances
=
Integer
.
parseInt
(
runtimeService
.
getVariable
(
hai
.
getExecutionId
(),
"nrOfActiveInstances"
).
toString
());
// 已经完成的会签任务数量
int
nrOfCompletedInstances
=
Integer
.
parseInt
(
runtimeService
.
getVariable
(
hai
.
getExecutionId
(),
"nrOfCompletedInstances"
).
toString
());
System
.
out
.
println
(
nrOfInstances
+
"*"
+
nrOfActiveInstances
+
"*"
+
nrOfCompletedInstances
);
}
HistoricProcessInstance
historicActivityInstances
=
historyService
.
createHistoricProcessInstanceQuery
().
processInstanceId
(
process
.
getProcessId
()).
singleResult
();
// int nrOfInstances = Integer.parseInt(runtimeService.getVariable(historicActivityInstances.getProcessVariables(), "nrOfInstances").toString());
// // 当前获取的会签任务数量
// int nrOfActiveInstances = Integer.parseInt(runtimeService.getVariable(historicActivityInstances.getExecutionId(), "nrOfActiveInstances").toString());
// // 已经完成的会签任务数量
// int nrOfCompletedInstances = Integer.parseInt(runtimeService.getVariable(historicActivityInstances.getExecutionId(), "nrOfCompletedInstances").toString());
// System.out.println(nrOfInstances + "*" + nrOfActiveInstances + "*" + nrOfCompletedInstances);
});
return
SimplePage
.
of
(
page
,
list
);
}
...
...
@@ -401,8 +385,8 @@ public class TaskController {
}
long
templateId
=
Long
.
parseLong
(
params
.
get
(
"templateId"
).
toString
());
String
config
=
params
.
get
(
"config"
).
toString
();
String
filePath
=
params
.
get
(
"filePath"
).
toString
(
);
builder
.
filePath
(
filePath
);
int
headerLine
=
Integer
.
valueOf
(
params
.
get
(
"headerLine"
).
toString
()
);
builder
.
headerLine
(
headerLine
);
builder
.
config
(
config
);
builder
.
excelId
(
templateId
);
}
else
if
(
task
.
getTaskDefinitionKey
().
equals
(
CommonConstant
.
MISSION_KEY_MANAGER_AUDIT
))
{
...
...
src/main/java/com/keymobile/rest/dao/ProcessDao.java
View file @
254b0845
...
...
@@ -11,6 +11,5 @@ public interface ProcessDao extends JpaRepository<Process, Long> {
Page
<
Process
>
findAll
(
Pageable
pageable
);
Page
<
Process
>
findAllByActivity_status
(
int
status
,
Pageable
pageable
);
}
src/main/java/com/keymobile/rest/model/Template.java
View file @
254b0845
...
...
@@ -31,8 +31,8 @@ public class Template implements Serializable {
@Column
(
nullable
=
false
,
columnDefinition
=
(
"varchar(2000) comment '模板配置'"
))
private
String
config
;
@Column
(
name
=
"
data_at
"
,
columnDefinition
=
(
"integer(20) default 1 comment 'spreadJs表头行数'"
))
private
Integer
dataAt
=
1
;
@Column
(
name
=
"
header_line
"
,
columnDefinition
=
(
"integer(20) default 1 comment 'spreadJs表头行数'"
))
private
Integer
headerLine
=
0
;
@Column
(
name
=
"need_audit"
,
columnDefinition
=
(
"integer(2) default 1 comment '需要审核'"
))
private
Integer
needAudit
=
1
;
...
...
src/main/java/com/keymobile/rest/service/ProcessService.java
View file @
254b0845
...
...
@@ -32,10 +32,6 @@ public class ProcessService {
return
processDao
.
findAll
(
pageable
);
}
public
Page
<
Process
>
findAllByActivityStatus
(
int
status
,
int
pageNo
,
int
pageSize
,
String
orderBy
,
String
propBy
)
{
Pageable
pageable
=
convert
(
pageNo
,
pageSize
,
orderBy
,
propBy
);
return
processDao
.
findAllByActivity_status
(
status
,
pageable
);
}
private
Pageable
convert
(
int
pageNo
,
int
pageSize
,
String
orderBy
,
String
propBy
)
{
pageNo
--;
...
...
src/main/java/com/keymobile/rest/vo/Mission.java
View file @
254b0845
...
...
@@ -13,8 +13,8 @@ public class Mission {
private
String
id
;
@ApiModelProperty
(
name
=
"user"
,
value
=
"当前登录用户"
)
private
String
user
;
@ApiModelProperty
(
name
=
"
filePath"
,
value
=
"文件路径
"
)
private
String
filePath
;
@ApiModelProperty
(
name
=
"
headerLine"
,
value
=
"表头行数
"
)
private
Integer
headerLine
;
@ApiModelProperty
(
name
=
"taskType"
,
value
=
"task类别 1 个人task 2 组task"
)
private
int
taskType
;
@ApiModelProperty
(
name
=
"createAt"
,
value
=
"任务发放时间"
)
...
...
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