Merge branch 'master' into docker_package
This commit is contained in:
commit
6d2ba4a421
|
@ -524,10 +524,10 @@ public class ActTaskService extends BaseServiceImpl {
|
||||||
public void completeTask(String taskId, String comment) {
|
public void completeTask(String taskId, String comment) {
|
||||||
String userId = SecurityUser.getUserId().toString();
|
String userId = SecurityUser.getUserId().toString();
|
||||||
Task task = taskService.createTaskQuery().taskId(taskId).singleResult();
|
Task task = taskService.createTaskQuery().taskId(taskId).singleResult();
|
||||||
if (StringUtils.isNotEmpty(task.getAssignee())
|
// if (StringUtils.isNotEmpty(task.getAssignee())
|
||||||
&& !task.getAssignee().equals(userId)) {
|
// && !task.getAssignee().equals(userId)) {
|
||||||
taskService.setAssignee(taskId, userId); //与原任务审核人员不一致时,换成实际通过的人
|
// taskService.setAssignee(taskId, userId); //与原任务审核人员不一致时,换成实际通过的人
|
||||||
}
|
// }
|
||||||
if (StringUtils.isNotEmpty(comment)) {
|
if (StringUtils.isNotEmpty(comment)) {
|
||||||
taskService.addComment(taskId, task.getProcessInstanceId(), comment);
|
taskService.addComment(taskId, task.getProcessInstanceId(), comment);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue