首页 > activiti任务TASK

activiti任务TASK

一、概要

  1. 设计TASK的表主要是:ACT_RU_TASK,ACT_HI_TASKINST(见参考-activiti表);
  2. 任务主要有:人工任务(usertask),服务任务(servicetask)等;
  3. 候选人/候选组(candidate):可以执行任务的一类人或者多个组,候选人/候选组中都可以去签收任务,一旦某人签收,就成为受理人,其他人就不能再签收受理此任务;usertask流程图中,candidate标示候选;候选人涉及的表ACT_RU_IDENTITYLINK;
  4. 受理人(assignee):有两种情况,一种是候选人/组中有人签收任务后成为受理人,另外一种是流程图中直接指定受理人,但是可以指定一个动态受理人;受理人涉及的表ACT_RU_TASK;
  5. 持有人(owner):持有人设置主要是存入历史表中,用于历史任务的查询,涉及的表ACT_HI_TASKINST;

二、任务操作

  1. 创建TASK任务与设置权限:可以使用代码创建任务,但是实际操作中都是绘制流程图。绘制TASK后,在属性可以设置候选人和受理人,一般都是设置候选人,因为固定受理人不太符合程序变动;

          候选人设置了deptleader,该值将部署在表ACT_RU_IDENTITYLINK中,查看xml看见:    

//设置了候选组<userTask id="deptLeaderAudit" name="部门领导审批" activiti:candidateGroups="deptLeader">userTask>

    完整的XML(无图形位置信息)

<process id="leave" name="请假流程" isExecutable="true"><documentation>请假流程演示documentation><startEvent id="startevent1" name="Start" activiti:initiator="applyUserId">startEvent><userTask id="deptLeaderAudit" name="部门领导审批" activiti:candidateGroups="deptLeader">userTask><exclusiveGateway id="exclusivegateway5" name="Exclusive Gateway">exclusiveGateway><userTask id="modifyApply" name="调整申请" activiti:assignee="${applyUserId}"><extensionElements><activiti:taskListener event="complete" delegateExpression="${afterModifyApplyContentProcessor}">activiti:taskListener>extensionElements>userTask><userTask id="hrAudit" name="人事审批" activiti:candidateGroups="hr">userTask><exclusiveGateway id="exclusivegateway6" name="Exclusive Gateway">exclusiveGateway><userTask id="reportBack" name="销假" activiti:assignee="${applyUserId}"><extensionElements><activiti:taskListener event="complete" delegateExpression="${reportBackEndProcessor}">activiti:taskListener>extensionElements>userTask><endEvent id="endevent1" name="End">endEvent><exclusiveGateway id="exclusivegateway7" name="Exclusive Gateway">exclusiveGateway><sequenceFlow id="flow2" sourceRef="startevent1" targetRef="deptLeaderAudit">sequenceFlow><sequenceFlow id="flow3" sourceRef="deptLeaderAudit" targetRef="exclusivegateway5">sequenceFlow><sequenceFlow id="flow4" name="不同意" sourceRef="exclusivegateway5" targetRef="modifyApply"><conditionExpression xsi:type="tFormalExpression">${!deptLeaderPass}]]>conditionExpression>sequenceFlow><sequenceFlow id="flow5" name="同意" sourceRef="exclusivegateway5" targetRef="hrAudit"><conditionExpression xsi:type="tFormalExpression">${deptLeaderPass}]]>conditionExpression>sequenceFlow><sequenceFlow id="flow6" sourceRef="hrAudit" targetRef="exclusivegateway6">sequenceFlow><sequenceFlow id="flow7" name="同意" sourceRef="exclusivegateway6" targetRef="reportBack"><conditionExpression xsi:type="tFormalExpression">${hrPass}]]>conditionExpression>sequenceFlow><sequenceFlow id="flow8" sourceRef="reportBack" targetRef="endevent1">sequenceFlow><sequenceFlow id="flow9" name="不同意" sourceRef="exclusivegateway6" targetRef="modifyApply"><conditionExpression xsi:type="tFormalExpression">${!hrPass}]]>conditionExpression>sequenceFlow><sequenceFlow id="flow10" name="重新申请" sourceRef="exclusivegateway7" targetRef="deptLeaderAudit"><conditionExpression xsi:type="tFormalExpression">${reApply}]]>conditionExpression>sequenceFlow><sequenceFlow id="flow11" sourceRef="modifyApply" targetRef="exclusivegateway7">sequenceFlow><sequenceFlow id="flow12" name="结束流程" sourceRef="exclusivegateway7" targetRef="endevent1"><conditionExpression xsi:type="tFormalExpression">${!reApply}]]>conditionExpression>sequenceFlow>process>

         2.查询候选任务

    //根据候选组ID查询拥有任务List tasks = taskService.createTaskQuery().taskCandidateGroup(groupA.getId()).list();for (Task task : tasks){ 

    System.out.println(task.getName());

  }
//根据用户ID查询任务tasks = taskService.createTaskQuery().taskCandidateUser(user.getId()).list();for (Task task : tasks){

    System.out.println(task.getName());

  }
//调用taskCandidateGroupInList groupIds = new ArrayList();groupIds.add(groupA.getId());groupIds.add(groupB.getId());

tasks
= taskService.createTaskQuery().taskCandidateGroupIn(groupIds).list();for (Task task : tasks){

    System.out.println(task.getName());

  }
//查询权限数据List links = taskService.getIdentityLinksForTask(tasks.get(0).getId());System.out.println("关系数据量: " + links.size());}

 

转载于:https://www.cnblogs.com/firebata/p/5253021.html

更多相关:

  •     先吐为敬!   最近心血来潮研究nodejs如何完成微信支付功能,结果网上一搜索,一大堆“代码拷贝党”、“留一手”、“缺斤少两”、“不说人话”、“自己都没跑通还出来发blog”、“各种缺少依赖包”、“各种注释都没有”、“自己都不知道在写什么”的程序大神纷纷为了增加自己博客一个帖子的名额而发布了各种千奇百�...

  • 阅读ceph源码过程中需要明确当前操作是由哪个线程发出,此时需要根据线程id来确认线程名称 C++获取线程id是通过系统调用来直接获取 函数描述 头文件: 函数名称:syscall(SYS_gettid) 该函数直接返回了一个pid_t int类型的数字,即为当前线程id 此外函数pthread_s...

  • 面试题 分库分表之后,id 主键如何处理? 面试官心理分析 其实这是分库分表之后你必然要面对的一个问题,就是 id 咋生成?因为要是分成多个表之后,每个表都是从 1 开始累加,那肯定不对啊,需要一个全局唯一的 id 来支持。所以这都是你实际生产环境中必须考虑的问题。 面试题剖析 基于数据库的实现方案 数据库自增 id 这个就是说你的...

  • ORM操作    单表、一对多表操作 1 from django.db import models 2 3 4 class UserGroup(models.Model): 5 title = models.CharField(max_length=32) 6 7 8 class UserInfo(m...

  • 建立如下表: 建表语句: class表创建语句 create table class(cid int not null auto_increment primary key, caption varchar(32) not null)engine=innodb default charset=utf8;student表创建语句 c...

  • 引言 在这个-SLAM建图和导航仿真实例-项目中,主要分为三个部分,分别是 (一)模型构建(二)根据已知地图进行定位和导航(三)使用RTAB-MAP进行建图和导航 该项目的slam_bot已经上传我的Github。 这是第三部分,完成效果如下 图1 建图和导航 三、使用RTAB-Map进行建图和导航 1. rtab...

  • 引言 在这个-SLAM建图和导航仿真实例-项目中,主要分为三个部分,分别是 (一)模型构建(二)根据已知地图进行定位和导航(三)使用RTAB-MAP进行建图和导航 该项目的slam_bot已经上传我的Github。 由于之前的虚拟机性能限制,我在这个项目中使用了新的ubantu 16.04环境,虚拟机配置 内存 8GCPU...

  • [{name:1},{name:2}].forEach((v,i,ar) => {console.log(v,i,ar)});//基础遍历[{name:1},{name:2}].map((v) => v.name);//[1,2]返回对象数组中指定字段值的一位数组(不改变原始数组)[{name:1},{name:2},{name:3}...

  • 体验内容 使用gmapping方法利用turtlebot底盘移动信息和激光雷达数据进行建图。 1. 安装一些依赖包 sudo apt-get install ros-melodic-move-base* sudo apt-get install ros-melodic-map-server* sudo apt-get insta...

  • 前言 我们知道Java/Python这种语言能够很好得 支持反射。反射机制 就是一种用户输入的字符串到对应实现方法的映射,比如http接口中 用户传入了url,我们需要调用该url对应的方法/函数对象 从而做出对应的操作。 而C++ 并没有友好得支持这样的操作,而最近工作中需要通过C++实现http接口,这个过程想要代码实现得优雅...