org.activiti.db.mapping.entity.Task.xml Maven / Gradle / Ivy
The newest version!
<?xml version="1.0" encoding="UTF-8" ?> <!-- ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="org.activiti.engine.impl.persistence.entity.TaskEntityImpl"> <!-- TASK INSERT --> <insert id="insertTask" parameterType="org.activiti.engine.impl.persistence.entity.TaskEntityImpl"> insert into ${prefix}ACT_RU_TASK (ID_, REV_, NAME_, PARENT_TASK_ID_, DESCRIPTION_, PRIORITY_, CREATE_TIME_, OWNER_, ASSIGNEE_, DELEGATION_, EXECUTION_ID_, PROC_INST_ID_, PROC_DEF_ID_, TASK_DEF_KEY_, DUE_DATE_, CATEGORY_, SUSPENSION_STATE_, TENANT_ID_, FORM_KEY_, CLAIM_TIME_) values (#{id, jdbcType=VARCHAR}, 1, #{name, jdbcType=VARCHAR}, #{parentTaskId, jdbcType=VARCHAR}, #{description, jdbcType=VARCHAR}, #{priority, jdbcType=INTEGER}, #{createTime, jdbcType=TIMESTAMP}, #{owner, jdbcType=VARCHAR}, #{assignee, jdbcType=VARCHAR}, #{delegationStateString, jdbcType=VARCHAR}, #{executionId, jdbcType=VARCHAR}, #{processInstanceId, jdbcType=VARCHAR}, #{processDefinitionId, jdbcType=VARCHAR}, #{taskDefinitionKey, jdbcType=VARCHAR}, #{dueDate, jdbcType=TIMESTAMP}, #{category, jdbcType=VARCHAR}, #{suspensionState, jdbcType=INTEGER}, #{tenantId, jdbcType=VARCHAR}, #{formKey, jdbcType=VARCHAR}, #{claimTime, jdbcType=TIMESTAMP} ) </insert> <insert id="bulkInsertTask" parameterType="java.util.List"> INSERT INTO ${prefix}ACT_RU_TASK (ID_, REV_, NAME_, PARENT_TASK_ID_, DESCRIPTION_, PRIORITY_, CREATE_TIME_, OWNER_, ASSIGNEE_, DELEGATION_, EXECUTION_ID_, PROC_INST_ID_, PROC_DEF_ID_, TASK_DEF_KEY_, DUE_DATE_, CATEGORY_, SUSPENSION_STATE_, TENANT_ID_, FORM_KEY_, CLAIM_TIME_) VALUES <foreach collection="list" item="task" index="index" separator=","> (#{task.id, jdbcType=VARCHAR}, 1, #{task.name, jdbcType=VARCHAR}, #{task.parentTaskId, jdbcType=VARCHAR}, #{task.description, jdbcType=VARCHAR}, #{task.priority, jdbcType=INTEGER}, #{task.createTime, jdbcType=TIMESTAMP}, #{task.owner, jdbcType=VARCHAR}, #{task.assignee, jdbcType=VARCHAR}, #{task.delegationStateString, jdbcType=VARCHAR}, #{task.executionId, jdbcType=VARCHAR}, #{task.processInstanceId, jdbcType=VARCHAR}, #{task.processDefinitionId, jdbcType=VARCHAR}, #{task.taskDefinitionKey, jdbcType=VARCHAR}, #{task.dueDate, jdbcType=TIMESTAMP}, #{task.category, jdbcType=VARCHAR}, #{task.suspensionState, jdbcType=INTEGER}, #{task.tenantId, jdbcType=VARCHAR}, #{task.formKey, jdbcType=VARCHAR}, #{task.claimTime, jdbcType=TIMESTAMP}) </foreach> </insert> <insert id="bulkInsertTask" databaseId="oracle" parameterType="java.util.List"> INSERT ALL <foreach collection="list" item="task" index="index"> INTO ${prefix}ACT_RU_TASK (ID_, REV_, NAME_, PARENT_TASK_ID_, DESCRIPTION_, PRIORITY_, CREATE_TIME_, OWNER_, ASSIGNEE_, DELEGATION_, EXECUTION_ID_, PROC_INST_ID_, PROC_DEF_ID_, TASK_DEF_KEY_, DUE_DATE_, CATEGORY_, SUSPENSION_STATE_, TENANT_ID_, FORM_KEY_, CLAIM_TIME_) VALUES (#{task.id, jdbcType=VARCHAR}, 1, #{task.name, jdbcType=VARCHAR}, #{task.parentTaskId, jdbcType=VARCHAR}, #{task.description, jdbcType=VARCHAR}, #{task.priority, jdbcType=INTEGER}, #{task.createTime, jdbcType=TIMESTAMP}, #{task.owner, jdbcType=VARCHAR}, #{task.assignee, jdbcType=VARCHAR}, #{task.delegationStateString, jdbcType=VARCHAR}, #{task.executionId, jdbcType=VARCHAR}, #{task.processInstanceId, jdbcType=VARCHAR}, #{task.processDefinitionId, jdbcType=VARCHAR}, #{task.taskDefinitionKey, jdbcType=VARCHAR}, #{task.dueDate, jdbcType=TIMESTAMP}, #{task.category, jdbcType=VARCHAR}, #{task.suspensionState, jdbcType=INTEGER}, #{task.tenantId, jdbcType=VARCHAR}, #{task.formKey, jdbcType=VARCHAR}, #{task.claimTime, jdbcType=TIMESTAMP}) </foreach> SELECT * FROM dual </insert> <!-- TASK UPDATE --> <update id="updateTask" parameterType="org.activiti.engine.impl.persistence.entity.TaskEntityImpl"> update ${prefix}ACT_RU_TASK <set> REV_ = #{revisionNext, jdbcType=INTEGER}, NAME_ = #{name, jdbcType=VARCHAR}, PARENT_TASK_ID_ = #{parentTaskId, jdbcType=VARCHAR}, PRIORITY_ = #{priority, jdbcType=INTEGER}, CREATE_TIME_ = #{createTime, jdbcType=TIMESTAMP}, OWNER_ = #{owner, jdbcType=VARCHAR}, ASSIGNEE_ = #{assignee, jdbcType=VARCHAR}, DELEGATION_ = #{delegationStateString, jdbcType=VARCHAR}, EXECUTION_ID_ = #{executionId, jdbcType=VARCHAR}, PROC_DEF_ID_ = #{processDefinitionId, jdbcType=VARCHAR}, DESCRIPTION_ = #{description, jdbcType=VARCHAR}, DUE_DATE_ = #{dueDate, jdbcType=TIMESTAMP}, CATEGORY_ = #{category, jdbcType=VARCHAR}, SUSPENSION_STATE_ = #{suspensionState, jdbcType=INTEGER}, FORM_KEY_ = #{formKey, jdbcType=INTEGER}, CLAIM_TIME_ = #{claimTime, jdbcType=TIMESTAMP} </set> where ID_= #{id, jdbcType=VARCHAR} and REV_ = #{revision, jdbcType=INTEGER} </update> <update id="updateTaskTenantIdForDeployment" parameterType="java.util.Map"> update ${prefix}ACT_RU_TASK set TENANT_ID_ = #{tenantId, jdbcType=VARCHAR} where ID_ in ( SELECT T.ID_ from ${prefix}ACT_RU_TASK T inner join ${prefix}ACT_RE_PROCDEF P on T.PROC_DEF_ID_ = P.ID_ inner join ${prefix}ACT_RE_DEPLOYMENT D on P.DEPLOYMENT_ID_ = D.ID_ where D.ID_ = #{deploymentId, jdbcType=VARCHAR} ) </update> <!-- See http://stackoverflow.com/questions/4429319/you-cant-specify-target-table-for-update-in-from-clause Tested this on MySQL 5.6: does NOT use a temporary table (so good, performance0 --> <update id="updateTaskTenantIdForDeployment" databaseId="mysql" parameterType="java.util.Map"> update ${prefix}ACT_RU_TASK set TENANT_ID_ = #{tenantId, jdbcType=VARCHAR} where ID_ in ( SELECT tempTask.tempId FROM ( SELECT T.ID_ as tempId FROM ${prefix}ACT_RU_TASK T inner join ${prefix}ACT_RE_PROCDEF P on T.PROC_DEF_ID_ = P.ID_ inner join ${prefix}ACT_RE_DEPLOYMENT D on P.DEPLOYMENT_ID_ = D.ID_ where D.ID_ = #{deploymentId, jdbcType=VARCHAR} ) AS tempTask ) </update> <!-- TASK DELETE --> <delete id="deleteTask" parameterType="org.activiti.engine.impl.persistence.entity.TaskEntityImpl"> delete from ${prefix}ACT_RU_TASK where ID_ = #{id} and REV_ = #{revision} </delete> <delete id="bulkDeleteTask" parameterType="java.util.Collection"> delete from ${prefix}ACT_RU_TASK where <foreach item="task" collection="list" index="index" separator=" or "> ID_ = #{task.id, jdbcType=VARCHAR} </foreach> </delete> <!-- TASK RESULTMAP --> <resultMap id="taskResultMap" type="org.activiti.engine.impl.persistence.entity.TaskEntityImpl"> <id property="id" column="ID_" jdbcType="VARCHAR"/> <result property="revision" column="REV_" jdbcType="INTEGER"/> <result property="name" column="NAME_" jdbcType="VARCHAR"/> <result property="parentTaskId" column="PARENT_TASK_ID_" jdbcType="VARCHAR"/> <result property="description" column="DESCRIPTION_" jdbcType="VARCHAR"/> <result property="priority" column="PRIORITY_" jdbcType="INTEGER"/> <result property="createTime" column="CREATE_TIME_" jdbcType="TIMESTAMP" /> <result property="owner" column="OWNER_" jdbcType="VARCHAR"/> <result property="assignee" column="ASSIGNEE_" jdbcType="VARCHAR"/> <result property="delegationStateString" column="DELEGATION_" jdbcType="VARCHAR"/> <result property="executionId" column="EXECUTION_ID_" jdbcType="VARCHAR" /> <result property="processInstanceId" column="PROC_INST_ID_" jdbcType="VARCHAR" /> <result property="processDefinitionId" column="PROC_DEF_ID_" jdbcType="VARCHAR"/> <result property="taskDefinitionKey" column="TASK_DEF_KEY_" jdbcType="VARCHAR"/> <result property="dueDate" column="DUE_DATE_" jdbcType="TIMESTAMP"/> <result property="category" column="CATEGORY_" jdbcType="VARCHAR" /> <result property="suspensionState" column="SUSPENSION_STATE_" jdbcType="INTEGER" /> <result property="tenantId" column="TENANT_ID_" jdbcType="VARCHAR" /> <result property="formKey" column="FORM_KEY_" jdbcType="VARCHAR" /> <result property="claimTime" column="CLAIM_TIME_" jdbcType="TIMESTAMP" /> </resultMap> <resultMap id="taskAndVariablesResultMap" type="org.activiti.engine.impl.persistence.entity.TaskEntityImpl"> <id property="id" column="ID_" jdbcType="VARCHAR"/> <result property="revision" column="REV_" jdbcType="INTEGER"/> <result property="name" column="NAME_" jdbcType="VARCHAR"/> <result property="parentTaskId" column="PARENT_TASK_ID_" jdbcType="VARCHAR"/> <result property="description" column="DESCRIPTION_" jdbcType="VARCHAR"/> <result property="priority" column="PRIORITY_" jdbcType="INTEGER"/> <result property="createTime" column="CREATE_TIME_" jdbcType="TIMESTAMP" /> <result property="owner" column="OWNER_" jdbcType="VARCHAR"/> <result property="assignee" column="ASSIGNEE_" jdbcType="VARCHAR"/> <result property="delegationStateString" column="DELEGATION_" jdbcType="VARCHAR"/> <result property="executionId" column="EXECUTION_ID_" jdbcType="VARCHAR" /> <result property="processInstanceId" column="PROC_INST_ID_" jdbcType="VARCHAR" /> <result property="processDefinitionId" column="PROC_DEF_ID_" jdbcType="VARCHAR"/> <result property="taskDefinitionKey" column="TASK_DEF_KEY_" jdbcType="VARCHAR"/> <result property="dueDate" column="DUE_DATE_" jdbcType="TIMESTAMP"/> <result property="category" column="CATEGORY_" jdbcType="VARCHAR" /> <result property="suspensionState" column="SUSPENSION_STATE_" jdbcType="INTEGER" /> <result property="tenantId" column="TENANT_ID_" jdbcType="VARCHAR" /> <result property="formKey" column="FORM_KEY_" jdbcType="VARCHAR" /> <result property="claimTime" column="CLAIM_TIME_" jdbcType="TIMESTAMP" /> <collection property="queryVariables" column="TASK_ID_" javaType="ArrayList" ofType="org.activiti.engine.impl.persistence.entity.VariableInstanceEntityImpl"> <id property="id" column="VAR_ID_"/> <result property="name" column="VAR_NAME_" javaType="String" jdbcType="VARCHAR" /> <result property="type" column="VAR_TYPE_" javaType="org.activiti.engine.impl.variable.VariableType" jdbcType="VARCHAR" /> <result property="revision" column="VAR_REV_" jdbcType="INTEGER" /> <result property="processInstanceId" column="VAR_PROC_INST_ID_" jdbcType="VARCHAR" /> <result property="executionId" column="VAR_EXECUTION_ID_" jdbcType="VARCHAR" /> <result property="taskId" column="VAR_TASK_ID_" jdbcType="VARCHAR" /> <result property="byteArrayRef" column="VAR_BYTEARRAY_ID_" typeHandler="ByteArrayRefTypeHandler"/> <result property="doubleValue" column="VAR_DOUBLE_" jdbcType="DOUBLE" /> <result property="textValue" column="VAR_TEXT_" jdbcType="VARCHAR" /> <result property="textValue2" column="VAR_TEXT2_" jdbcType="VARCHAR" /> <result property="longValue" column="VAR_LONG_" jdbcType="BIGINT" /> </collection> </resultMap> <!-- TASK SELECT --> <select id="selectTask" parameterType="string" resultMap="taskResultMap"> select * from ${prefix}ACT_RU_TASK where ID_ = #{id, jdbcType=VARCHAR} </select> <select id="selectTasksByParentTaskId" parameterType="org.activiti.engine.impl.db.ListQueryParameterObject" resultMap="taskResultMap"> select * from ${prefix}ACT_RU_TASK where PARENT_TASK_ID_ = #{parameter} </select> <select id="selectTasksByExecutionId" parameterType="org.activiti.engine.impl.db.ListQueryParameterObject" resultMap="taskResultMap"> select distinct T.* from ${prefix}ACT_RU_TASK T where T.EXECUTION_ID_ = #{parameter} </select> <select id="selectTasksByProcessInstanceId" parameterType="org.activiti.engine.impl.db.ListQueryParameterObject" resultMap="taskResultMap"> select T.* from ${prefix}ACT_RU_TASK T where T.PROC_INST_ID_ = #{parameter} </select> <!-- Using distinct here because a task can appear multiple times in a resultset when --> <select id="selectTaskByQueryCriteria" parameterType="org.activiti.engine.impl.TaskQueryImpl" resultMap="taskResultMap"> ${limitBefore} select distinct RES.* ${limitBetween} <include refid="selectTaskByQueryCriteriaSql"/> ${orderBy} ${limitAfter} </select> <select id="selectTaskCountByQueryCriteria" parameterType="org.activiti.engine.impl.TaskQueryImpl" resultType="long"> select count(distinct RES.ID_) <include refid="selectTaskByQueryCriteriaSql"/> </select> <sql id="selectTaskByQueryCriteriaSql"> from ${prefix}ACT_RU_TASK RES <include refid="commonSelectTaskByQueryCriteriaSql"/> </sql> <select id="selectTaskWithVariablesByQueryCriteria" parameterType="org.activiti.engine.impl.TaskQueryImpl" resultMap="taskAndVariablesResultMap"> <include refid="selectTaskWithVariablesByQueryCriteriaColumns"/> <include refid="selectTaskWithVariablesByQueryCriteriaSql"/> ${orderBy} ${limitAfter} </select> <sql id="selectTaskWithVariablesByQueryCriteriaColumns"> ${limitBefore} <if test="_databaseId != 'db2' and _databaseId != 'mssql'"> select RES.*, VAR.ID_ as VAR_ID_, VAR.NAME_ as VAR_NAME_, VAR.TYPE_ as VAR_TYPE_, VAR.REV_ as VAR_REV_, VAR.PROC_INST_ID_ as VAR_PROC_INST_ID_, VAR.EXECUTION_ID_ as VAR_EXECUTION_ID_, VAR.TASK_ID_ as VAR_TASK_ID_, VAR.BYTEARRAY_ID_ as VAR_BYTEARRAY_ID_, VAR.DOUBLE_ as VAR_DOUBLE_, VAR.TEXT_ as VAR_TEXT_, VAR.TEXT2_ as VAR_TEXT2_, VAR.LONG_ as VAR_LONG_ ${limitBetween} </if> <if test="_databaseId == 'db2' || _databaseId == 'mssql'"> select distinct TEMPRES_ID_ as ID_, TEMPRES_REV_ as REV_, TEMPRES_NAME_ as NAME_, TEMPRES_PARENT_TASK_ID_ as PARENT_TASK_ID_, TEMPRES_DESCRIPTION_ as DESCRIPTION_, TEMPRES_PRIORITY_ as PRIORITY_, TEMPRES_CREATE_TIME_ as CREATE_TIME_, TEMPRES_OWNER_ as OWNER_, TEMPRES_ASSIGNEE_ as ASSIGNEE_, TEMPRES_DELEGATION_ as DELEGATION_, TEMPRES_FORM_KEY_ as FORM_KEY_, TEMPRES_CLAIM_TIME_ as CLAIM_TIME_, TEMPRES_EXECUTION_ID_ as EXECUTION_ID_, TEMPRES_PROC_INST_ID_ as PROC_INST_ID_, TEMPRES_PROC_DEF_ID_ as PROC_DEF_ID_, TEMPRES_TASK_DEF_KEY_ as TASK_DEF_KEY_, TEMPRES_DUE_DATE_ as DUE_DATE_, TEMPRES_SUSPENSION_STATE_ as SUSPENSION_STATE_, TEMPRES_CATEGORY_ as CATEGORY_, TEMPVAR_ID_ as VAR_ID_, TEMPVAR_NAME_ as VAR_NAME_, TEMPVAR_TYPE_ as VAR_TYPE_, TEMPVAR_REV_ as VAR_REV_, TEMPVAR_PROC_INST_ID_ as VAR_PROC_INST_ID_, TEMPVAR_EXECUTION_ID_ as VAR_EXECUTION_ID_, TEMPVAR_TASK_ID_ as VAR_TASK_ID_, TEMPVAR_BYTEARRAY_ID_ as VAR_BYTEARRAY_ID_, TEMPVAR_DOUBLE_ as VAR_DOUBLE_, TEMPVAR_TEXT_ as VAR_TEXT_, TEMPVAR_TEXT2_ as VAR_TEXT2_, TEMPVAR_LONG_ as VAR_LONG_ ${limitOuterJoinBetween} RES.ID_ as TEMPRES_ID_, RES.REV_ as TEMPRES_REV_, RES.NAME_ as TEMPRES_NAME_, RES.PARENT_TASK_ID_ as TEMPRES_PARENT_TASK_ID_, RES.DESCRIPTION_ as TEMPRES_DESCRIPTION_, RES.PRIORITY_ as TEMPRES_PRIORITY_, RES.CREATE_TIME_ as TEMPRES_CREATE_TIME_, RES.OWNER_ as TEMPRES_OWNER_, RES.ASSIGNEE_ as TEMPRES_ASSIGNEE_, RES.DELEGATION_ as TEMPRES_DELEGATION_, RES.FORM_KEY_ as TEMPRES_FORM_KEY_, RES.CLAIM_TIME_ as TEMPRES_CLAIM_TIME_, RES.EXECUTION_ID_ as TEMPRES_EXECUTION_ID_, RES.PROC_INST_ID_ as TEMPRES_PROC_INST_ID_, RES.PROC_DEF_ID_ as TEMPRES_PROC_DEF_ID_, RES.TASK_DEF_KEY_ as TEMPRES_TASK_DEF_KEY_, RES.DUE_DATE_ as TEMPRES_DUE_DATE_, RES.SUSPENSION_STATE_ as TEMPRES_SUSPENSION_STATE_, RES.CATEGORY_ as TEMPRES_CATEGORY_, VAR.ID_ as TEMPVAR_ID_, VAR.NAME_ as TEMPVAR_NAME_, VAR.TYPE_ as TEMPVAR_TYPE_, VAR.REV_ as TEMPVAR_REV_, VAR.PROC_INST_ID_ as TEMPVAR_PROC_INST_ID_, VAR.EXECUTION_ID_ as TEMPVAR_EXECUTION_ID_, VAR.TASK_ID_ as TEMPVAR_TASK_ID_, VAR.BYTEARRAY_ID_ as TEMPVAR_BYTEARRAY_ID_, VAR.DOUBLE_ as TEMPVAR_DOUBLE_, VAR.TEXT_ as TEMPVAR_TEXT_, VAR.TEXT2_ as TEMPVAR_TEXT2_, VAR.LONG_ as TEMPVAR_LONG_ </if> </sql> <sql id="selectTaskWithVariablesByQueryCriteriaSql"> from ${prefix}ACT_RU_TASK RES <choose> <when test="includeTaskLocalVariables && includeProcessVariables"> left outer join ${prefix}ACT_RU_VARIABLE VAR ON RES.ID_ = VAR.TASK_ID_ or RES.PROC_INST_ID_ = VAR.EXECUTION_ID_ </when> <otherwise> <if test="includeTaskLocalVariables"> left outer join ${prefix}ACT_RU_VARIABLE VAR ON RES.ID_ = VAR.TASK_ID_ </if> <if test="includeProcessVariables"> left outer join ${prefix}ACT_RU_VARIABLE VAR ON RES.PROC_INST_ID_ = VAR.EXECUTION_ID_ and VAR.TASK_ID_ is null </if> </otherwise> </choose> <include refid="commonSelectTaskByQueryCriteriaSql"/> </sql> <sql id="commonSelectTaskByQueryCriteriaSql"> <if test="candidateUser != null || candidateGroups != null || bothCandidateAndAssigned || involvedGroups != null"> <choose> <when test="bothCandidateAndAssigned">left</when> <otherwise>inner</otherwise> </choose> join ${prefix}ACT_RU_IDENTITYLINK I on I.TASK_ID_ = RES.ID_ </if> <foreach collection="queryVariableValues" index="index" item="var"> <choose> <when test="var.local"> inner join ${prefix}ACT_RU_VARIABLE A${index} on RES.ID_ = A${index}.TASK_ID_ </when> <otherwise> inner join ${prefix}ACT_RU_VARIABLE A${index} on RES.PROC_INST_ID_ = A${index}.PROC_INST_ID_ </otherwise> </choose> </foreach> <foreach collection="orQueryObjects" index="orIndex" item="orQueryObject"> <if test="orQueryObject.candidateUser != null || orQueryObject.candidateGroups != null || orQueryObject.bothCandidateAndAssigned || orQueryObject.involvedGroups != null"> <choose> <when test="orQueryObject.bothCandidateAndAssigned || orQueryObject.involvedGroups != null">left</when> <otherwise>inner</otherwise> </choose> join ${prefix}ACT_RU_IDENTITYLINK I_OR${orIndex} on I_OR${orIndex}.TASK_ID_ = RES.ID_ </if> <if test="orQueryObject.queryVariableValues.size() > 0"> <if test="orQueryObject.hasLocalQueryVariableValue()"> left outer join ${prefix}ACT_RU_VARIABLE A_L_OR${orIndex} on RES.ID_ = A_L_OR${orIndex}.TASK_ID_ </if> <if test="orQueryObject.hasNonLocalQueryVariableValue()"> left outer join ${prefix}ACT_RU_VARIABLE A_OR${orIndex} on RES.PROC_INST_ID_ = A_OR${orIndex}.PROC_INST_ID_ </if> </if> <if test="orQueryObject.processDefinitionKey != null || orQueryObject.processDefinitionKeyLike != null || orQueryObject.processDefinitionKeyLikeIgnoreCase != null || orQueryObject.processDefinitionName != null || orQueryObject.processDefinitionNameLike != null || (orQueryObject.processCategoryInList != null && orQueryObject.processCategoryInList.size() > 0) || (orQueryObject.processCategoryNotInList != null && orQueryObject.processCategoryNotInList.size() > 0) || (orQueryObject.processDefinitionKeys != null && orQueryObject.processDefinitionKeys.size() > 0)"> left outer join ${prefix}ACT_RE_PROCDEF D_OR${orIndex} on RES.PROC_DEF_ID_ = D_OR${orIndex}.ID_ </if> <if test="orQueryObject.processInstanceBusinessKey != null || orQueryObject.processInstanceBusinessKeyLike != null || orQueryObject.processInstanceBusinessKeyLikeIgnoreCase != null"> inner join ${prefix}ACT_RU_EXECUTION E_OR${orIndex} on RES.PROC_INST_ID_ = E_OR${orIndex}.ID_ </if> <if test="orQueryObject.deploymentId != null || (orQueryObject.deploymentIds != null && orQueryObject.deploymentIds.size() > 0)"> left outer join ${prefix}ACT_RE_PROCDEF DEPLOY_P_OR${orIndex} ON RES.PROC_DEF_ID_ = DEPLOY_P_OR${orIndex}.ID_ </if> </foreach> <if test="processDefinitionKey != null || processDefinitionKeyLike != null || processDefinitionKeyLikeIgnoreCase != null || processDefinitionName != null || processDefinitionNameLike != null || (processCategoryInList != null && processCategoryInList.size() > 0) || (processCategoryNotInList != null && processCategoryNotInList.size() > 0) || (processDefinitionKeys != null && processDefinitionKeys.size() > 0)"> inner join ${prefix}ACT_RE_PROCDEF D on RES.PROC_DEF_ID_ = D.ID_ </if> <if test="processInstanceBusinessKey != null || processInstanceBusinessKeyLike != null || processInstanceBusinessKeyLikeIgnoreCase != null"> inner join ${prefix}ACT_RU_EXECUTION E on RES.PROC_INST_ID_ = E.ID_ </if> <if test="deploymentId != null || (deploymentIds != null && deploymentIds.size() > 0)"> left outer join ${prefix}ACT_RE_PROCDEF DEPLOY_P ON RES.PROC_DEF_ID_ = DEPLOY_P.ID_ </if> <where> <if test="taskId != null"> RES.ID_ = #{taskId} </if> <if test="name != null"> and RES.NAME_ = #{name} </if> <if test="nameLike != null"> and RES.NAME_ like #{nameLike}${wildcardEscapeClause} </if> <if test="nameLikeIgnoreCase != null"> and lower(RES.NAME_) like #{nameLikeIgnoreCase}${wildcardEscapeClause} </if> <if test="nameList != null && nameList.size() > 0"> and RES.NAME_ IN <foreach item="name" index="index" collection="nameList" open="(" separator="," close=")"> #{name} </foreach> </if> <if test="nameListIgnoreCase != null && nameListIgnoreCase.size() > 0"> and lower(RES.NAME_) IN <foreach item="name" index="index" collection="nameListIgnoreCase" open="(" separator="," close=")"> #{name} </foreach> </if> <if test="description != null"> and RES.DESCRIPTION_ = #{description} </if> <if test="descriptionLike != null"> and RES.DESCRIPTION_ like #{descriptionLike}${wildcardEscapeClause} </if> <if test="descriptionLikeIgnoreCase != null"> and lower(RES.DESCRIPTION_) like #{descriptionLikeIgnoreCase}${wildcardEscapeClause} </if> <if test="priority != null"> and RES.PRIORITY_ = #{priority} </if> <if test="minPriority != null"> and RES.PRIORITY_ >= #{minPriority} </if> <if test="maxPriority != null"> and RES.PRIORITY_ <= #{maxPriority} </if> <if test="assignee != null"> and RES.ASSIGNEE_ = #{assignee} </if> <if test="assigneeLike != null"> and RES.ASSIGNEE_ like #{assigneeLike}${wildcardEscapeClause} </if> <if test="assigneeLikeIgnoreCase != null"> and lower(RES.ASSIGNEE_) like #{assigneeLikeIgnoreCase}${wildcardEscapeClause} </if> <if test="assigneeIds != null && assigneeIds.size() > 0"> and RES.ASSIGNEE_ IN <foreach item="assigneeId" index="index" collection="assigneeIds" open="(" separator="," close=")"> #{assigneeId} </foreach> </if> <if test="owner != null"> and RES.OWNER_ = #{owner} </if> <if test="ownerLike != null"> and RES.OWNER_ like #{ownerLike}${wildcardEscapeClause} </if> <if test="ownerLikeIgnoreCase != null"> and lower(RES.OWNER_) like #{ownerLikeIgnoreCase}${wildcardEscapeClause} </if> <if test="unassigned"> and RES.ASSIGNEE_ IS NULL </if> <if test="taskParentTaskId != null"> and RES.PARENT_TASK_ID_ = #{taskParentTaskId} </if> <if test="noDelegationState"> and RES.DELEGATION_ IS NULL </if> <if test="delegationState != null"> and RES.DELEGATION_ = #{delegationStateString} </if> <if test="processInstanceId != null"> and RES.PROC_INST_ID_ = #{processInstanceId} </if> <if test="processInstanceIds != null && processInstanceIds.size() > 0"> and RES.PROC_INST_ID_ IN <foreach item="processInstance" index="index" collection="processInstanceIds" open="(" separator="," close=")"> #{processInstance} </foreach> </if> <if test="processInstanceBusinessKey != null"> and E.BUSINESS_KEY_ = #{processInstanceBusinessKey} </if> <if test="processInstanceBusinessKeyLike != null"> and E.BUSINESS_KEY_ like #{processInstanceBusinessKeyLike}${wildcardEscapeClause} </if> <if test="processInstanceBusinessKeyLikeIgnoreCase != null"> and lower(E.BUSINESS_KEY_) like #{processInstanceBusinessKeyLikeIgnoreCase}${wildcardEscapeClause} </if> <if test="executionId != null"> and RES.EXECUTION_ID_ = #{executionId} </if> <if test="createTime != null"> and RES.CREATE_TIME_ = #{createTime} </if> <if test="createTimeBefore != null"> and RES.CREATE_TIME_ < #{createTimeBefore} </if> <if test="createTimeAfter != null"> and RES.CREATE_TIME_ > #{createTimeAfter} </if> <if test="key != null"> and RES.TASK_DEF_KEY_ = #{key} </if> <if test="keyLike != null"> and RES.TASK_DEF_KEY_ like #{keyLike}${wildcardEscapeClause} </if> <if test="processDefinitionId != null"> and RES.PROC_DEF_ID_ = #{processDefinitionId} </if> <if test="processDefinitionKey != null"> and D.KEY_ = #{processDefinitionKey} </if> <if test="processDefinitionKeyLike != null"> and D.KEY_ like #{processDefinitionKeyLike}${wildcardEscapeClause} </if> <if test="processDefinitionKeyLikeIgnoreCase != null"> and lower(D.KEY_) like #{processDefinitionKeyLikeIgnoreCase}${wildcardEscapeClause} </if> <if test="processDefinitionKeys != null && processDefinitionKeys.size() > 0"> and D.KEY_ in <foreach item="item" index="index" collection="processDefinitionKeys" open="(" separator="," close=")"> #{item} </foreach> </if> <if test="processDefinitionName != null"> and D.NAME_ = #{processDefinitionName} </if> <if test="processDefinitionNameLike != null"> and D.NAME_ like #{processDefinitionNameLike}${wildcardEscapeClause} </if> <if test="processCategoryInList != null && processCategoryInList.size() > 0"> and D.CATEGORY_ IN <foreach item="processCategory" index="index" collection="processCategoryInList" open="(" separator="," close=")"> #{processCategory} </foreach> </if> <if test="processCategoryNotInList != null && processCategoryNotInList.size() > 0"> and D.CATEGORY_ NOT IN <foreach item="processCategory" index="index" collection="processCategoryNotInList" open="(" separator="," close=")"> #{processCategory} </foreach> </if> <if test="deploymentId != null"> and DEPLOY_P.DEPLOYMENT_ID_ = #{deploymentId} </if> <if test="deploymentIds != null && deploymentIds.size() > 0"> and DEPLOY_P.DEPLOYMENT_ID_ IN <foreach item="deployment" index="index" collection="deploymentIds" open="(" separator="," close=")"> #{deployment} </foreach> </if> <if test="dueDate != null"> and RES.DUE_DATE_ = #{dueDate} </if> <if test="dueBefore != null"> and RES.DUE_DATE_ < #{dueBefore} </if> <if test="dueAfter != null"> and RES.DUE_DATE_ > #{dueAfter} </if> <if test="withoutDueDate"> and RES.DUE_DATE_ is null </if> <if test="dueDate != null || dueBefore != null || dueAfter != null"> and RES.DUE_DATE_ is not null </if> <if test="category != null"> and RES.CATEGORY_ = #{category} </if> <if test="excludeSubtasks"> and RES.PARENT_TASK_ID_ IS NULL </if> <if test="!bothCandidateAndAssigned && (candidateUser != null || candidateGroups != null)"> and RES.ASSIGNEE_ is null and I.TYPE_ = 'candidate' and ( <if test="candidateUser != null"> I.USER_ID_ = #{candidateUser} </if> <if test="candidateUser != null && candidateGroups != null && candidateGroups.size() > 0"> or </if> <if test="candidateGroups != null && candidateGroups.size() > 0"> I.GROUP_ID_ IN <foreach item="group" index="index" collection="candidateGroups" open="(" separator="," close=")"> #{group} </foreach> </if> ) </if> <if test="involvedUser != null"> and ( exists(select LINK.USER_ID_ from ${prefix}ACT_RU_IDENTITYLINK LINK where USER_ID_ = #{involvedUser} and LINK.TASK_ID_ = RES.ID_) or RES.ASSIGNEE_ = #{involvedUser} or RES.OWNER_ = #{involvedUser} ) </if> <if test="involvedGroups != null && involvedGroups.size() > 0"> and ( I.TYPE_ = 'participant' and I.GROUP_ID_ IN <foreach item="group" index="index" collection="involvedGroups" open="(" separator="," close=")"> #{group} </foreach> ) </if> <foreach item="var" collection="queryVariableValues" index="index"> <if test="!var.local"> <!-- When process instance variable is queried for, taskId should be null --> and A${index}.TASK_ID_ is null </if> <if test="var.name != null"> <!-- Match-all variable-names when name is null --> and A${index}.NAME_= #{var.name} </if> <if test="var.name == null"> and A${index}.NAME_ is not null </if> <if test="!var.type.equals('null')"> and A${index}.TYPE_ = #{var.type} </if> <!-- Variable value --> <if test="var.textValue != null && var.longValue == null && var.doubleValue == null"> <choose> <when test="var.operator.equals('EQUALS_IGNORE_CASE') || var.operator.equals('NOT_EQUALS_IGNORE_CASE') || var.operator.equals('LIKE_IGNORE_CASE')"> and lower(A${index}.TEXT_) </when> <otherwise> and A${index}.TEXT_ </otherwise> </choose> <choose> <when test="var.operator.equals('LIKE') || var.operator.equals('LIKE_IGNORE_CASE')">LIKE</when> <otherwise><include refid="executionVariableOperator" /></otherwise> </choose> #{var.textValue} <choose> <when test="var.operator.equals('LIKE') || var.operator.equals('LIKE_IGNORE_CASE')">${wildcardEscapeClause}</when> </choose> </if> <if test="var.textValue2 != null"> and A${index}.TEXT2_ <choose> <when test="var.operator.equals('LIKE')">LIKE</when> <otherwise><include refid="executionVariableOperator" /></otherwise> </choose> #{var.textValue2} <choose> <when test="var.operator.equals('LIKE')">${wildcardEscapeClause}</when> </choose> </if> <if test="var.longValue != null"> and A${index}.LONG_ <include refid="executionVariableOperator" /> #{var.longValue} </if> <if test="var.doubleValue != null"> and A${index}.DOUBLE_ <include refid="executionVariableOperator" /> #{var.doubleValue} </if> <!-- Null variable type --> <if test="var.textValue == null && var.textValue2 == null && var.longValue == null && var.doubleValue == null"> <choose> <when test="var.operator.equals('NOT_EQUALS')"> and (A${index}.TEXT_ is not null or A${index}.TEXT2_ is not null or A${index}.LONG_ is not null or A${index}.DOUBLE_ is not null or A${index}.BYTEARRAY_ID_ is not null) </when> <otherwise> and A${index}.TEXT_ is null and A${index}.TEXT2_ is null and A${index}.LONG_ is null and A${index}.DOUBLE_ is null and A${index}.BYTEARRAY_ID_ is null </otherwise> </choose> </if> </foreach> <if test="suspensionState != null"> <if test="suspensionState.stateCode == 1"> and RES.SUSPENSION_STATE_ = 1 </if> <if test="suspensionState.stateCode == 2"> and RES.SUSPENSION_STATE_ = 2 </if> </if> <if test="tenantId != null"> and RES.TENANT_ID_ = #{tenantId} </if> <if test="tenantIdLike != null"> and RES.TENANT_ID_ like #{tenantIdLike}${wildcardEscapeClause} </if> <if test="withoutTenantId"> and (RES.TENANT_ID_ = '' or RES.TENANT_ID_ is null) </if> <choose> <when test="bothCandidateAndAssigned"> <!-- if dbIdentityUsed set true in process engine configuration --> <if test="userIdForCandidateAndAssignee != null"> <if test="candidateGroups == null"> and (RES.ASSIGNEE_ = #{userIdForCandidateAndAssignee} or (RES.ASSIGNEE_ is null and (I.USER_ID_ = #{userIdForCandidateAndAssignee} ) ) ) </if> </if> <!-- if dbIdentityUsed set false in process engine configuration of using custom session factory of GroupIdentityManager --> <if test="candidateGroups != null"> and (RES.ASSIGNEE_ = #{userIdForCandidateAndAssignee} or (RES.ASSIGNEE_ is null and I.TYPE_ = 'candidate' and (I.USER_ID_ = #{userIdForCandidateAndAssignee} <if test="candidateGroups.size() > 0"> or I.GROUP_ID_ IN <foreach item="group" index="index" collection="candidateGroups" open="(" separator="," close=")"> #{group} </foreach> </if> ))) </if> </when> </choose> <foreach item="orQueryObject" index="orIndex" collection="orQueryObjects"> and <trim prefix="(" prefixOverrides="OR" suffix=")"> <if test="orQueryObject.taskId != null"> RES.ID_ = #{orQueryObject.taskId} </if> <if test="orQueryObject.name != null"> or RES.NAME_ = #{orQueryObject.name} </if> <if test="orQueryObject.nameLike != null"> or RES.NAME_ like #{orQueryObject.nameLike}${wildcardEscapeClause} </if> <if test="orQueryObject.nameLikeIgnoreCase != null"> or lower(RES.NAME_) like #{orQueryObject.nameLikeIgnoreCase}${wildcardEscapeClause} </if> <if test="orQueryObject.nameList != null && orQueryObject.nameList.size() > 0"> or RES.NAME_ IN <foreach item="name" index="index" collection="orQueryObject.nameList" open="(" separator="," close=")"> #{name} </foreach> </if> <if test="orQueryObject.nameListIgnoreCase != null && orQueryObject.nameListIgnoreCase.size() > 0"> or lower(RES.NAME_) IN <foreach item="name" index="index" collection="orQueryObject.nameListIgnoreCase" open="(" separator="," close=")"> #{name} </foreach> </if> <if test="orQueryObject.description != null"> or RES.DESCRIPTION_ = #{orQueryObject.description} </if> <if test="orQueryObject.descriptionLike != null"> or RES.DESCRIPTION_ like #{orQueryObject.descriptionLike}${wildcardEscapeClause} </if> <if test="orQueryObject.descriptionLikeIgnoreCase != null"> or lower(RES.DESCRIPTION_) like #{orQueryObject.descriptionLikeIgnoreCase}${wildcardEscapeClause} </if> <if test="orQueryObject.priority != null"> or RES.PRIORITY_ = #{orQueryObject.priority} </if> <if test="orQueryObject.minPriority != null"> or RES.PRIORITY_ >= #{orQueryObject.minPriority} </if> <if test="orQueryObject.maxPriority != null"> or RES.PRIORITY_ <= #{orQueryObject.maxPriority} </if> <if test="orQueryObject.assignee != null"> or RES.ASSIGNEE_ = #{orQueryObject.assignee} </if> <if test="orQueryObject.assigneeLike != null"> or RES.ASSIGNEE_ like #{orQueryObject.assigneeLike}${wildcardEscapeClause} </if> <if test="orQueryObject.assigneeLikeIgnoreCase != null"> or lower(RES.ASSIGNEE_) like #{orQueryObject.assigneeLikeIgnoreCase}${wildcardEscapeClause} </if> <if test="orQueryObject.assigneeIds != null && orQueryObject.assigneeIds.size() > 0"> or RES.ASSIGNEE_ IN <foreach item="assigneeId" index="index" collection="orQueryObject.assigneeIds" open="(" separator="," close=")"> #{assigneeId} </foreach> </if> <if test="orQueryObject.owner != null"> or RES.OWNER_ = #{orQueryObject.owner} </if> <if test="orQueryObject.ownerLike != null"> or RES.OWNER_ like #{orQueryObject.ownerLike}${wildcardEscapeClause} </if> <if test="orQueryObject.ownerLikeIgnoreCase != null"> or RES.OWNER_ like #{orQueryObject.ownerLikeIgnoreCase}${wildcardEscapeClause} </if> <if test="orQueryObject.unassigned"> or RES.ASSIGNEE_ IS NULL </if> <if test="orQueryObject.taskParentTaskId != null"> or RES.PARENT_TASK_ID_ = #{orQueryObject.taskParentTaskId} </if> <if test="orQueryObject.noDelegationState"> or RES.DELEGATION_ IS NULL </if> <if test="orQueryObject.delegationState != null"> or RES.DELEGATION_ = #{orQueryObject.delegationStateString} </if> <if test="orQueryObject.processInstanceId != null"> or RES.PROC_INST_ID_ = #{orQueryObject.processInstanceId} </if> <if test="orQueryObject.processInstanceIds != null && orQueryObject.processInstanceIds.size() > 0"> or RES.PROC_INST_ID_ IN <foreach item="processInstance" index="index" collection="orQueryObject.processInstanceIds" open="(" separator="," close=")"> #{processInstance} </foreach> </if> <if test="orQueryObject.processInstanceBusinessKey != null"> or E_OR${orIndex}.BUSINESS_KEY_ = #{orQueryObject.processInstanceBusinessKey} </if> <if test="orQueryObject.processInstanceBusinessKeyLike != null"> or E_OR${orIndex}.BUSINESS_KEY_ like #{orQueryObject.processInstanceBusinessKeyLike}${wildcardEscapeClause} </if> <if test="orQueryObject.processInstanceBusinessKeyLikeIgnoreCase != null"> or lower(E.BUSINESS_KEY_) like #{orQueryObject.processInstanceBusinessKeyLikeIgnoreCase}${wildcardEscapeClause} </if> <if test="orQueryObject.executionId != null"> or RES.EXECUTION_ID_ = #{orQueryObject.executionId} </if> <if test="orQueryObject.createTime != null"> or RES.CREATE_TIME_ = #{orQueryObject.createTime} </if> <if test="orQueryObject.createTimeBefore != null"> or RES.CREATE_TIME_ < #{orQueryObject.createTimeBefore} </if> <if test="orQueryObject.createTimeAfter != null"> or RES.CREATE_TIME_ > #{orQueryObject.createTimeAfter} </if> <if test="orQueryObject.key != null"> or RES.TASK_DEF_KEY_ = #{orQueryObject.key} </if> <if test="orQueryObject.keyLike != null"> or RES.TASK_DEF_KEY_ like #{orQueryObject.keyLike}${wildcardEscapeClause} </if> <if test="orQueryObject.processDefinitionId != null"> or RES.PROC_DEF_ID_ = #{orQueryObject.processDefinitionId} </if> <if test="orQueryObject.processDefinitionKey != null"> or D_OR${orIndex}.KEY_ = #{orQueryObject.processDefinitionKey} </if> <if test="orQueryObject.processDefinitionKeyLike != null"> or D_OR${orIndex}.KEY_ like #{orQueryObject.processDefinitionKeyLike}${wildcardEscapeClause} </if> <if test="orQueryObject.processDefinitionKeyLikeIgnoreCase != null"> or lower(D_OR${orIndex}.KEY_) like #{orQueryObject.processDefinitionKeyLikeIgnoreCase}${wildcardEscapeClause} </if> <if test="orQueryObject.processDefinitionKeys != null && orQueryObject.processDefinitionKeys.size() > 0"> or D_OR${orIndex}.KEY_ in <foreach item="item" index="index" collection="orQueryObject.processDefinitionKeys" open="(" separator="," close=")"> #{item} </foreach> </if> <if test="orQueryObject.processDefinitionName != null"> or D_OR${orIndex}.NAME_ = #{orQueryObject.processDefinitionName} </if> <if test="orQueryObject.processDefinitionNameLike != null"> or D_OR${orIndex}.NAME_ like #{orQueryObject.processDefinitionNameLike}${wildcardEscapeClause} </if> <if test="orQueryObject.processCategoryInList != null && orQueryObject.processCategoryInList.size() > 0"> or D_OR${orIndex}.CATEGORY_ IN <foreach item="processCategory" index="index" collection="orQueryObject.processCategoryInList" open="(" separator="," close=")"> #{processCategory} </foreach> </if> <if test="orQueryObject.processCategoryNotInList != null && orQueryObject.processCategoryNotInList.size() > 0"> or D_OR${orIndex}.CATEGORY_ NOT IN <foreach item="processCategory" index="index" collection="orQueryObject.processCategoryNotInList" open="(" separator="," close=")"> #{processCategory} </foreach> </if> <if test="orQueryObject.deploymentId != null"> or DEPLOY_P_OR${orIndex}.DEPLOYMENT_ID_ = #{orQueryObject.deploymentId} </if> <if test="orQueryObject.deploymentIds != null && orQueryObject.deploymentIds.size() > 0"> or DEPLOY_P_OR${orIndex}.DEPLOYMENT_ID_ IN <foreach item="deployment" index="index" collection="orQueryObject.deploymentIds" open="(" separator="," close=")"> #{deployment} </foreach> </if> <if test="orQueryObject.dueDate != null"> or RES.DUE_DATE_ = #{orQueryObject.dueDate} </if> <if test="orQueryObject.dueBefore != null"> or (RES.DUE_DATE_ < #{orQueryObject.dueBefore} and RES.DUE_DATE_ is not null) </if> <if test="orQueryObject.dueAfter != null"> or (RES.DUE_DATE_ > #{orQueryObject.dueAfter} and RES.DUE_DATE_ is not null) </if> <if test="orQueryObject.withoutDueDate"> or RES.DUE_DATE_ is null </if> <if test="orQueryObject.category != null"> or RES.CATEGORY_ = #{orQueryObject.category} </if> <if test="orQueryObject.excludeSubtasks"> or RES.PARENT_TASK_ID_ IS NULL </if> <if test="!orQueryObject.bothCandidateAndAssigned && (orQueryObject.candidateUser != null || orQueryObject.candidateGroups != null)"> or (RES.ASSIGNEE_ is null and I_OR${orIndex}.TYPE_ = 'candidate' and ( <if test="orQueryObject.candidateUser != null"> I_OR${orIndex}.USER_ID_ = #{orQueryObject.candidateUser} </if> <if test="orQueryObject.candidateUser != null && orQueryObject.candidateGroups != null && orQueryObject.candidateGroups.size() > 0"> or </if> <if test="orQueryObject.candidateGroups != null && orQueryObject.candidateGroups.size() > 0"> I_OR${orIndex}.GROUP_ID_ IN <foreach item="group" index="index" collection="orQueryObject.candidateGroups" open="(" separator="," close=")"> #{group} </foreach> </if> )) </if> <if test="orQueryObject.involvedUser != null"> or ( exists(select LINK.USER_ID_ from ${prefix}ACT_RU_IDENTITYLINK LINK where USER_ID_ = #{orQueryObject.involvedUser} and LINK.TASK_ID_ = RES.ID_) or RES.ASSIGNEE_ = #{orQueryObject.involvedUser} or RES.OWNER_ = #{orQueryObject.involvedUser} ) </if> <if test="orQueryObject.involvedGroups != null && orQueryObject.involvedGroups.size() > 0"> or ( I_OR${orIndex}.TYPE_ = 'participant' and I_OR${orIndex}.GROUP_ID_ IN <foreach item="group" index="index" collection="orQueryObject.involvedGroups" open="(" separator="," close=")"> #{group} </foreach> ) </if> <foreach item="var" collection="orQueryObject.queryVariableValues" index="index"> or <trim prefix="(" prefixOverrides="AND" suffix=")"> <choose> <when test="!var.local"> <bind name="orLocal" value="''" /> <!-- When process instance variable is queried for, taskId should be null --> and A_OR${orIndex}.TASK_ID_ is null </when> <otherwise> <bind name="orLocal" value="'L_'" /> </otherwise> </choose> <if test="var.name != null"> <!-- Match-all variable-names when name is null --> and A_${orLocal}OR${orIndex}.NAME_= #{var.name} </if> <if test="var.name == null"> and A_${orLocal}OR${orIndex}.NAME_ is not null </if> <if test="!var.type.equals('null')"> and A_${orLocal}OR${orIndex}.TYPE_ = #{var.type} </if> <!-- Variable value --> <if test="var.textValue != null && var.longValue == null && var.doubleValue == null"> <choose> <when test="var.operator.equals('EQUALS_IGNORE_CASE') || var.operator.equals('NOT_EQUALS_IGNORE_CASE') || var.operator.equals('LIKE_IGNORE_CASE')"> and lower(A_${orLocal}OR${orIndex}.TEXT_) </when> <otherwise> and A_${orLocal}OR${orIndex}.TEXT_ </otherwise> </choose> <choose> <when test="var.operator.equals('LIKE') || var.operator.equals('LIKE_IGNORE_CASE')">LIKE</when> <otherwise><include refid="executionVariableOperator" /></otherwise> </choose> #{var.textValue} <choose> <when test="var.operator.equals('LIKE') || var.operator.equals('LIKE_IGNORE_CASE')">${wildcardEscapeClause}</when> </choose> </if> <if test="var.textValue2 != null"> and A_${orLocal}OR${orIndex}.TEXT2_ <choose> <when test="var.operator.equals('LIKE')">LIKE</when> <otherwise><include refid="executionVariableOperator" /></otherwise> </choose> #{var.textValue2} <choose> <when test="var.operator.equals('LIKE')">${wildcardEscapeClause}</when> </choose> </if> <if test="var.longValue != null"> and A_${orLocal}OR${orIndex}.LONG_ <include refid="executionVariableOperator" /> #{var.longValue} </if> <if test="var.doubleValue != null"> and A_${orLocal}OR${orIndex}.DOUBLE_ <include refid="executionVariableOperator" /> #{var.doubleValue} </if> <!-- Null variable type --> <if test="var.textValue == null && var.textValue2 == null && var.longValue == null && var.doubleValue == null"> <choose> <when test="var.operator.equals('NOT_EQUALS')"> and (A_${orLocal}OR${orIndex}.TEXT_ is not null or A_${orLocal}OR${orIndex}.TEXT2_ is not null or A_${orLocal}OR${orIndex}.LONG_ is not null or A_${orLocal}OR${orIndex}.DOUBLE_ is not null or A_${orLocal}OR${orIndex}.BYTEARRAY_ID_ is not null) </when> <otherwise> and A_${orLocal}OR${orIndex}.TEXT_ is null and A_${orLocal}OR${orIndex}.TEXT2_ is null and A_${orLocal}OR${orIndex}.LONG_ is null and A_${orLocal}OR${orIndex}.DOUBLE_ is null and A_${orLocal}OR${orIndex}.BYTEARRAY_ID_ is null </otherwise> </choose> </if> </trim> </foreach> <if test="orQueryObject.suspensionState != null"> <if test="orQueryObject.suspensionState.stateCode == 1"> or RES.SUSPENSION_STATE_ = 1 </if> <if test="orQueryObject.suspensionState.stateCode == 2"> or RES.SUSPENSION_STATE_ = 2 </if> </if> <if test="orQueryObject.tenantId != null"> or RES.TENANT_ID_ = #{orQueryObject.tenantId} </if> <if test="orQueryObject.tenantIdLike != null"> or RES.TENANT_ID_ like #{orQueryObject.tenantIdLike}${wildcardEscapeClause} </if> <if test="orQueryObject.withoutTenantId"> or (RES.TENANT_ID_ = '' or RES.TENANT_ID_ is null) </if> <choose> <when test="orQueryObject.bothCandidateAndAssigned"> <!-- if dbIdentityUsed set true in process engine configuration --> <if test="orQueryObject.userIdForCandidateAndAssignee != null"> <if test="orQueryObject.candidateGroups == null "> or (RES.ASSIGNEE_ = #{orQueryObject.userIdForCandidateAndAssignee} or (RES.ASSIGNEE_ is null and (I_OR${orIndex}.USER_ID_ = #{orQueryObject.userIdForCandidateAndAssignee} ) ) ) </if> </if> <!-- if dbIdentityUsed set false in process engine configuration of using custom session factory of GroupIdentityManager --> <if test="orQueryObject.candidateGroups != null"> or (RES.ASSIGNEE_ = #{orQueryObject.userIdForCandidateAndAssignee} or (RES.ASSIGNEE_ is null and I_OR${orIndex}.TYPE_ = 'candidate' and (I_OR${orIndex}.USER_ID_ = #{orQueryObject.userIdForCandidateAndAssignee} <if test="orQueryObject.candidateGroups.size() > 0"> or I_OR${orIndex}.GROUP_ID_ IN <foreach item="group" index="index" collection="orQueryObject.candidateGroups" open="(" separator="," close=")"> #{group} </foreach> </if> ))) </if> </when> </choose> </trim> </foreach> </where> </sql> <sql id="executionVariableOperator"> <choose> <when test="var.operator.equals('EQUALS')">=</when> <when test="var.operator.equals('EQUALS_IGNORE_CASE')">=</when> <when test="var.operator.equals('NOT_EQUALS')"><></when> <when test="var.operator.equals('NOT_EQUALS_IGNORE_CASE')"><></when> <when test="var.operator.equals('GREATER_THAN')">></when> <when test="var.operator.equals('GREATER_THAN_OR_EQUAL')">>=</when> <when test="var.operator.equals('LESS_THAN')"><</when> <when test="var.operator.equals('LESS_THAN_OR_EQUAL')"><=</when> </choose> </sql> <select id="selectTaskByNativeQuery" parameterType="java.util.Map" resultMap="taskResultMap"> <include refid="org.activiti.engine.db.common.selectByNativeQuery"/> </select> <select id="selectTaskCountByNativeQuery" parameterType="java.util.Map" resultType="long"> ${sql} </select> </mapper>