12 changed files with 263 additions and 123 deletions
@ -0,0 +1,31 @@ |
|||||||
|
/* |
||||||
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are met: |
||||||
|
* |
||||||
|
* Redistributions of source code must retain the above copyright notice, |
||||||
|
* this list of conditions and the following disclaimer. |
||||||
|
* Redistributions in binary form must reproduce the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer in the |
||||||
|
* documentation and/or other materials provided with the distribution. |
||||||
|
* Neither the name of the dreamlu.net developer nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* Author: Chill 庄骞 (smallchill@163.com) |
||||||
|
*/ |
||||||
|
package org.springblade.flowable.engine.constant; |
||||||
|
|
||||||
|
/** |
||||||
|
* 流程常量. |
||||||
|
* |
||||||
|
* @author zhuangqian |
||||||
|
*/ |
||||||
|
public interface FlowableConstant { |
||||||
|
|
||||||
|
String FLOWABLE_BASE_PACKAGES = "org.flowable.ui"; |
||||||
|
|
||||||
|
String suffix = ".bpmn20.xml"; |
||||||
|
|
||||||
|
|
||||||
|
} |
@ -1,6 +1,11 @@ |
|||||||
flowable: |
flowable: |
||||||
async-executor-activate: false |
|
||||||
activity-font-name: \u5B8B\u4F53 |
activity-font-name: \u5B8B\u4F53 |
||||||
label-font-name: \u5B8B\u4F53 |
label-font-name: \u5B8B\u4F53 |
||||||
annotation-font-name: \u5B8B\u4F53 |
annotation-font-name: \u5B8B\u4F53 |
||||||
check-process-definitions: false |
check-process-definitions: false |
||||||
|
common: |
||||||
|
app: |
||||||
|
idm-url: http://localhost:9999 |
||||||
|
idm-admin: |
||||||
|
user: admin |
||||||
|
password: test |
||||||
|
@ -1,108 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
||||||
xmlns:flowable="http://flowable.org/bpmn" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" |
|
||||||
xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" |
|
||||||
typeLanguage="http://www.w3.org/2001/XMLSchema" expressionLanguage="http://www.w3.org/1999/XPath" |
|
||||||
targetNamespace="http://www.flowable.org/processdef"> |
|
||||||
<process id="Expense" name="ExpenseProcess" isExecutable="true"> |
|
||||||
<documentation>报销流程</documentation> |
|
||||||
<startEvent id="start" name="开始"></startEvent> |
|
||||||
<userTask id="fillTask" name="出差报销" flowable:assignee="${taskUser}"> |
|
||||||
<extensionElements> |
|
||||||
<modeler:initiator-can-complete xmlns:modeler="http://flowable.org/modeler"> |
|
||||||
<![CDATA[false]]></modeler:initiator-can-complete> |
|
||||||
</extensionElements> |
|
||||||
</userTask> |
|
||||||
<exclusiveGateway id="judgeTask"></exclusiveGateway> |
|
||||||
<userTask id="directorTak" name="经理审批"> |
|
||||||
<extensionElements> |
|
||||||
<flowable:taskListener event="create" |
|
||||||
class="org.springblade.flowable.business.handler.ManagerTaskHandler"></flowable:taskListener> |
|
||||||
</extensionElements> |
|
||||||
</userTask> |
|
||||||
<userTask id="bossTask" name="老板审批"> |
|
||||||
<extensionElements> |
|
||||||
<flowable:taskListener event="create" |
|
||||||
class="org.springblade.flowable.business.handler.BossTaskHandler"></flowable:taskListener> |
|
||||||
</extensionElements> |
|
||||||
</userTask> |
|
||||||
<endEvent id="end" name="结束"></endEvent> |
|
||||||
<sequenceFlow id="directorNotPassFlow" name="驳回" sourceRef="directorTak" targetRef="fillTask"> |
|
||||||
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${outcome=='驳回'}]]></conditionExpression> |
|
||||||
</sequenceFlow> |
|
||||||
<sequenceFlow id="bossNotPassFlow" name="驳回" sourceRef="bossTask" targetRef="fillTask"> |
|
||||||
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${outcome=='驳回'}]]></conditionExpression> |
|
||||||
</sequenceFlow> |
|
||||||
<sequenceFlow id="flow1" sourceRef="start" targetRef="fillTask"></sequenceFlow> |
|
||||||
<sequenceFlow id="flow2" sourceRef="fillTask" targetRef="judgeTask"></sequenceFlow> |
|
||||||
<sequenceFlow id="judgeMore" name="大于500元" sourceRef="judgeTask" targetRef="bossTask"> |
|
||||||
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${money > 500}]]></conditionExpression> |
|
||||||
</sequenceFlow> |
|
||||||
<sequenceFlow id="bossPassFlow" name="通过" sourceRef="bossTask" targetRef="end"> |
|
||||||
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${outcome=='通过'}]]></conditionExpression> |
|
||||||
</sequenceFlow> |
|
||||||
<sequenceFlow id="directorPassFlow" name="通过" sourceRef="directorTak" targetRef="end"> |
|
||||||
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${outcome=='通过'}]]></conditionExpression> |
|
||||||
</sequenceFlow> |
|
||||||
<sequenceFlow id="judgeLess" name="小于500元" sourceRef="judgeTask" targetRef="directorTak"> |
|
||||||
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${money <= 500}]]></conditionExpression> |
|
||||||
</sequenceFlow> |
|
||||||
</process> |
|
||||||
<bpmndi:BPMNDiagram id="BPMNDiagram_Expense"> |
|
||||||
<bpmndi:BPMNPlane bpmnElement="Expense" id="BPMNPlane_Expense"> |
|
||||||
<bpmndi:BPMNShape bpmnElement="start" id="BPMNShape_start"> |
|
||||||
<omgdc:Bounds height="30.0" width="30.0" x="285.0" y="135.0"></omgdc:Bounds> |
|
||||||
</bpmndi:BPMNShape> |
|
||||||
<bpmndi:BPMNShape bpmnElement="fillTask" id="BPMNShape_fillTask"> |
|
||||||
<omgdc:Bounds height="80.0" width="100.0" x="405.0" y="110.0"></omgdc:Bounds> |
|
||||||
</bpmndi:BPMNShape> |
|
||||||
<bpmndi:BPMNShape bpmnElement="judgeTask" id="BPMNShape_judgeTask"> |
|
||||||
<omgdc:Bounds height="40.0" width="40.0" x="585.0" y="130.0"></omgdc:Bounds> |
|
||||||
</bpmndi:BPMNShape> |
|
||||||
<bpmndi:BPMNShape bpmnElement="directorTak" id="BPMNShape_directorTak"> |
|
||||||
<omgdc:Bounds height="80.0" width="100.0" x="735.0" y="110.0"></omgdc:Bounds> |
|
||||||
</bpmndi:BPMNShape> |
|
||||||
<bpmndi:BPMNShape bpmnElement="bossTask" id="BPMNShape_bossTask"> |
|
||||||
<omgdc:Bounds height="80.0" width="100.0" x="555.0" y="255.0"></omgdc:Bounds> |
|
||||||
</bpmndi:BPMNShape> |
|
||||||
<bpmndi:BPMNShape bpmnElement="end" id="BPMNShape_end"> |
|
||||||
<omgdc:Bounds height="28.0" width="28.0" x="771.0" y="281.0"></omgdc:Bounds> |
|
||||||
</bpmndi:BPMNShape> |
|
||||||
<bpmndi:BPMNEdge bpmnElement="flow1" id="BPMNEdge_flow1"> |
|
||||||
<omgdi:waypoint x="315.0" y="150.0"></omgdi:waypoint> |
|
||||||
<omgdi:waypoint x="405.0" y="150.0"></omgdi:waypoint> |
|
||||||
</bpmndi:BPMNEdge> |
|
||||||
<bpmndi:BPMNEdge bpmnElement="flow2" id="BPMNEdge_flow2"> |
|
||||||
<omgdi:waypoint x="505.0" y="150.16611295681062"></omgdi:waypoint> |
|
||||||
<omgdi:waypoint x="585.4333333333333" y="150.43333333333334"></omgdi:waypoint> |
|
||||||
</bpmndi:BPMNEdge> |
|
||||||
<bpmndi:BPMNEdge bpmnElement="judgeLess" id="BPMNEdge_judgeLess"> |
|
||||||
<omgdi:waypoint x="624.5530726256983" y="150.44692737430168"></omgdi:waypoint> |
|
||||||
<omgdi:waypoint x="735.0" y="150.1392757660167"></omgdi:waypoint> |
|
||||||
</bpmndi:BPMNEdge> |
|
||||||
<bpmndi:BPMNEdge bpmnElement="directorNotPassFlow" id="BPMNEdge_directorNotPassFlow"> |
|
||||||
<omgdi:waypoint x="785.0" y="110.0"></omgdi:waypoint> |
|
||||||
<omgdi:waypoint x="785.0" y="37.0"></omgdi:waypoint> |
|
||||||
<omgdi:waypoint x="455.0" y="37.0"></omgdi:waypoint> |
|
||||||
<omgdi:waypoint x="455.0" y="110.0"></omgdi:waypoint> |
|
||||||
</bpmndi:BPMNEdge> |
|
||||||
<bpmndi:BPMNEdge bpmnElement="bossPassFlow" id="BPMNEdge_bossPassFlow"> |
|
||||||
<omgdi:waypoint x="655.0" y="295.0"></omgdi:waypoint> |
|
||||||
<omgdi:waypoint x="771.0" y="295.0"></omgdi:waypoint> |
|
||||||
</bpmndi:BPMNEdge> |
|
||||||
<bpmndi:BPMNEdge bpmnElement="judgeMore" id="BPMNEdge_judgeMore"> |
|
||||||
<omgdi:waypoint x="605.4340277777778" y="169.56597222222223"></omgdi:waypoint> |
|
||||||
<omgdi:waypoint x="605.1384083044983" y="255.0"></omgdi:waypoint> |
|
||||||
</bpmndi:BPMNEdge> |
|
||||||
<bpmndi:BPMNEdge bpmnElement="directorPassFlow" id="BPMNEdge_directorPassFlow"> |
|
||||||
<omgdi:waypoint x="785.0" y="190.0"></omgdi:waypoint> |
|
||||||
<omgdi:waypoint x="785.0" y="281.0"></omgdi:waypoint> |
|
||||||
</bpmndi:BPMNEdge> |
|
||||||
<bpmndi:BPMNEdge bpmnElement="bossNotPassFlow" id="BPMNEdge_bossNotPassFlow"> |
|
||||||
<omgdi:waypoint x="555.0" y="295.0"></omgdi:waypoint> |
|
||||||
<omgdi:waypoint x="455.0" y="295.0"></omgdi:waypoint> |
|
||||||
<omgdi:waypoint x="455.0" y="190.0"></omgdi:waypoint> |
|
||||||
</bpmndi:BPMNEdge> |
|
||||||
</bpmndi:BPMNPlane> |
|
||||||
</bpmndi:BPMNDiagram> |
|
||||||
</definitions> |
|
@ -0,0 +1,101 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:flowable="http://flowable.org/bpmn" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" typeLanguage="http://www.w3.org/2001/XMLSchema" expressionLanguage="http://www.w3.org/1999/XPath" targetNamespace="http://www.flowable.org/processdef"> |
||||||
|
<process id="Leave" name="LeaveProcess" isExecutable="true"> |
||||||
|
<documentation>请假流程</documentation> |
||||||
|
<startEvent id="start" name="开始"></startEvent> |
||||||
|
<userTask id="fillTask" name="事假申请" flowable:assignee="${taskUser}"> |
||||||
|
<extensionElements> |
||||||
|
<modeler:initiator-can-complete xmlns:modeler="http://flowable.org/modeler"><![CDATA[false]]></modeler:initiator-can-complete> |
||||||
|
</extensionElements> |
||||||
|
</userTask> |
||||||
|
<exclusiveGateway id="judgeTask"></exclusiveGateway> |
||||||
|
<userTask id="directorTak" name="经理审批"> |
||||||
|
<extensionElements> |
||||||
|
<flowable:taskListener event="create" class="org.springblade.flowable.business.handler.ManagerTaskHandler"></flowable:taskListener> |
||||||
|
</extensionElements> |
||||||
|
</userTask> |
||||||
|
<userTask id="bossTask" name="老板审批"> |
||||||
|
<extensionElements> |
||||||
|
<flowable:taskListener event="create" class="org.springblade.flowable.business.handler.BossTaskHandler"></flowable:taskListener> |
||||||
|
</extensionElements> |
||||||
|
</userTask> |
||||||
|
<endEvent id="end" name="结束"></endEvent> |
||||||
|
<sequenceFlow id="flow1" sourceRef="start" targetRef="fillTask"></sequenceFlow> |
||||||
|
<sequenceFlow id="flow2" sourceRef="fillTask" targetRef="judgeTask"></sequenceFlow> |
||||||
|
<sequenceFlow id="judgeLess" name="小于3天" sourceRef="judgeTask" targetRef="directorTak"> |
||||||
|
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${days <= 3}]]></conditionExpression> |
||||||
|
</sequenceFlow> |
||||||
|
<sequenceFlow id="judgeMore" name="大于3天" sourceRef="judgeTask" targetRef="bossTask"> |
||||||
|
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${days > 3}]]></conditionExpression> |
||||||
|
</sequenceFlow> |
||||||
|
<sequenceFlow id="bossNotPassFlow" name="驳回" sourceRef="bossTask" targetRef="fillTask"> |
||||||
|
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${outcome=='驳回'}]]></conditionExpression> |
||||||
|
</sequenceFlow> |
||||||
|
<sequenceFlow id="bossPassFlow" name="通过" sourceRef="bossTask" targetRef="end"> |
||||||
|
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${outcome=='通过'}]]></conditionExpression> |
||||||
|
</sequenceFlow> |
||||||
|
<sequenceFlow id="directorPassFlow" name="通过" sourceRef="directorTak" targetRef="end"> |
||||||
|
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${outcome=='通过'}]]></conditionExpression> |
||||||
|
</sequenceFlow> |
||||||
|
<sequenceFlow id="directorNotPassFlow" name="驳回" sourceRef="directorTak" targetRef="fillTask"> |
||||||
|
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${outcome=='驳回'}]]></conditionExpression> |
||||||
|
</sequenceFlow> |
||||||
|
</process> |
||||||
|
<bpmndi:BPMNDiagram id="BPMNDiagram_Leave"> |
||||||
|
<bpmndi:BPMNPlane bpmnElement="Leave" id="BPMNPlane_Leave"> |
||||||
|
<bpmndi:BPMNShape bpmnElement="start" id="BPMNShape_start"> |
||||||
|
<omgdc:Bounds height="30.0" width="30.0" x="285.0" y="135.0"></omgdc:Bounds> |
||||||
|
</bpmndi:BPMNShape> |
||||||
|
<bpmndi:BPMNShape bpmnElement="fillTask" id="BPMNShape_fillTask"> |
||||||
|
<omgdc:Bounds height="80.0" width="100.0" x="405.0" y="110.0"></omgdc:Bounds> |
||||||
|
</bpmndi:BPMNShape> |
||||||
|
<bpmndi:BPMNShape bpmnElement="judgeTask" id="BPMNShape_judgeTask"> |
||||||
|
<omgdc:Bounds height="40.0" width="40.0" x="585.0" y="130.0"></omgdc:Bounds> |
||||||
|
</bpmndi:BPMNShape> |
||||||
|
<bpmndi:BPMNShape bpmnElement="directorTak" id="BPMNShape_directorTak"> |
||||||
|
<omgdc:Bounds height="80.0" width="100.0" x="735.0" y="110.0"></omgdc:Bounds> |
||||||
|
</bpmndi:BPMNShape> |
||||||
|
<bpmndi:BPMNShape bpmnElement="bossTask" id="BPMNShape_bossTask"> |
||||||
|
<omgdc:Bounds height="80.0" width="100.0" x="555.0" y="255.0"></omgdc:Bounds> |
||||||
|
</bpmndi:BPMNShape> |
||||||
|
<bpmndi:BPMNShape bpmnElement="end" id="BPMNShape_end"> |
||||||
|
<omgdc:Bounds height="28.0" width="28.0" x="771.0" y="281.0"></omgdc:Bounds> |
||||||
|
</bpmndi:BPMNShape> |
||||||
|
<bpmndi:BPMNEdge bpmnElement="flow1" id="BPMNEdge_flow1"> |
||||||
|
<omgdi:waypoint x="314.9499992392744" y="150.0"></omgdi:waypoint> |
||||||
|
<omgdi:waypoint x="404.9999999999684" y="150.0"></omgdi:waypoint> |
||||||
|
</bpmndi:BPMNEdge> |
||||||
|
<bpmndi:BPMNEdge bpmnElement="flow2" id="BPMNEdge_flow2"> |
||||||
|
<omgdi:waypoint x="504.95000000000005" y="150.0"></omgdi:waypoint> |
||||||
|
<omgdi:waypoint x="585.0" y="150.0"></omgdi:waypoint> |
||||||
|
</bpmndi:BPMNEdge> |
||||||
|
<bpmndi:BPMNEdge bpmnElement="judgeLess" id="BPMNEdge_judgeLess"> |
||||||
|
<omgdi:waypoint x="624.9444614102993" y="150.0"></omgdi:waypoint> |
||||||
|
<omgdi:waypoint x="734.9999999999723" y="150.0"></omgdi:waypoint> |
||||||
|
</bpmndi:BPMNEdge> |
||||||
|
<bpmndi:BPMNEdge bpmnElement="directorNotPassFlow" id="BPMNEdge_directorNotPassFlow"> |
||||||
|
<omgdi:waypoint x="785.0" y="110.0"></omgdi:waypoint> |
||||||
|
<omgdi:waypoint x="785.0" y="37.0"></omgdi:waypoint> |
||||||
|
<omgdi:waypoint x="455.0" y="37.0"></omgdi:waypoint> |
||||||
|
<omgdi:waypoint x="455.0" y="110.0"></omgdi:waypoint> |
||||||
|
</bpmndi:BPMNEdge> |
||||||
|
<bpmndi:BPMNEdge bpmnElement="bossPassFlow" id="BPMNEdge_bossPassFlow"> |
||||||
|
<omgdi:waypoint x="654.9499999999431" y="295.0"></omgdi:waypoint> |
||||||
|
<omgdi:waypoint x="771.0" y="295.0"></omgdi:waypoint> |
||||||
|
</bpmndi:BPMNEdge> |
||||||
|
<bpmndi:BPMNEdge bpmnElement="judgeMore" id="BPMNEdge_judgeMore"> |
||||||
|
<omgdi:waypoint x="605.0" y="169.94312543073747"></omgdi:waypoint> |
||||||
|
<omgdi:waypoint x="605.0" y="255.0"></omgdi:waypoint> |
||||||
|
</bpmndi:BPMNEdge> |
||||||
|
<bpmndi:BPMNEdge bpmnElement="directorPassFlow" id="BPMNEdge_directorPassFlow"> |
||||||
|
<omgdi:waypoint x="785.0" y="189.95"></omgdi:waypoint> |
||||||
|
<omgdi:waypoint x="785.0" y="281.0"></omgdi:waypoint> |
||||||
|
</bpmndi:BPMNEdge> |
||||||
|
<bpmndi:BPMNEdge bpmnElement="bossNotPassFlow" id="BPMNEdge_bossNotPassFlow"> |
||||||
|
<omgdi:waypoint x="555.0" y="295.0"></omgdi:waypoint> |
||||||
|
<omgdi:waypoint x="455.0" y="295.0"></omgdi:waypoint> |
||||||
|
<omgdi:waypoint x="455.0" y="189.95"></omgdi:waypoint> |
||||||
|
</bpmndi:BPMNEdge> |
||||||
|
</bpmndi:BPMNPlane> |
||||||
|
</bpmndi:BPMNDiagram> |
||||||
|
</definitions> |
Loading…
Reference in new issue