123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569 |
- <?xml version="1.0" encoding="UTF-8"?>
- <bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" id="sample-diagram" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="5.22.0" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
- <bpmn2:process id="ProcessProjectApprove" name="立项审批流程" isExecutable="true" camunda:versionTag="1.0">
- <bpmn2:startEvent id="event_start">
- <bpmn2:extensionElements>
- <camunda:properties>
- <camunda:property name="test" value="test111" />
- </camunda:properties>
- </bpmn2:extensionElements>
- <bpmn2:outgoing>Flow_15zn1tu</bpmn2:outgoing>
- </bpmn2:startEvent>
- <bpmn2:userTask id="task_request" name="申请立项" camunda:formKey="prj_create_req" camunda:assignee="owner">
- <bpmn2:extensionElements>
- <camunda:inputOutput>
- <camunda:inputParameter name="show_in_my_works">${false}</camunda:inputParameter>
- <camunda:inputParameter name="process_type">${1}</camunda:inputParameter>
- </camunda:inputOutput>
- <camunda:executionListener event="end">
- <camunda:script scriptFormat="JavaScript">
- (async function () {
- try {
- let owner = await this.environment.services.owner(); // 获取任务责任人
- if (!owner) {
- await this.environment.services.gen_warn_task('admin', '提交立项审核时未找到负责人',
- `提交立项审核时未找到负责人,流程出错。case id: ${this.environment.variables.id}`);
- }
- // 获取项目审核人列表
- let checkers = await this.environment.services.get_handlers('project_checker');
- if (!checkers || checkers.length === 0) return;
- let checkers_str = "";
- for (var i = 0; i < checkers.length; i++) {
- if (i > 0) checkers_str += '、';
- checkers_str += `${checkers[i].name}`;
- }
- await this.environment.services.gen_remind_task(owner.id, '立项申请已提交', `<b>${owner.name}</b>已于 <b>` +
- this.environment.services.get_datetime() + `</b> 提交了立项申请,将由: <br> <b>${checkers_str}</b> 进行立项审核。`);
- await this.environment.services.logger(owner.id, owner.name, `提交了立项申请,将由: <br> <b>${checkers_str}</b> <br>进行立项审核。`);
-
- } catch (e) {
- this.environment.Logger('work').error(e);
- }
- })();
- </camunda:script>
- </camunda:executionListener>
- <camunda:executionListener event="start">
- <camunda:script scriptFormat="JavaScript">
- (async function () {
- try {
- let checkers = await this.environment.services.get_handlers('project_checker');
- this.environment.Logger('work').debug(checkers);
- let staffs = await this.environment.services.get_staffs();
- this.environment.staff_ids = [];
- this.environment.staff_names = [];
- if (staffs) {
- for (let staff of staffs) {
- this.environment.staff_ids.push(staff.id);
- this.environment.staff_names.push(staff.name);
- }
- }
-
- let result = checkers.length > 0 ? true: false;
- if (!result) {
- return {
- result: false,
- message: '立项申请前,请先配置审核组成员,否则无法执行立项审核任务。'
- }
- } else {
- return {
- result: true,
- message: 'OK'
- }
- }
-
-
- } catch (e) {
- this.environment.Logger('work').error(e);
- return {
- result: false,
- message: 'fail'
- }
- }
- })();
- </camunda:script>
- </camunda:executionListener>
- </bpmn2:extensionElements>
- <bpmn2:incoming>Flow_1t45qnv</bpmn2:incoming>
- <bpmn2:incoming>Flow_0gyvyyo</bpmn2:incoming>
- <bpmn2:outgoing>Flow_1rg4oob</bpmn2:outgoing>
- </bpmn2:userTask>
- <bpmn2:sequenceFlow id="Flow_15zn1tu" sourceRef="event_start" targetRef="task_create" />
- <bpmn2:sequenceFlow id="Flow_1rg4oob" sourceRef="task_request" targetRef="Activity_16s6waw">
- <bpmn2:extensionElements />
- </bpmn2:sequenceFlow>
- <bpmn2:userTask id="task_approve" name="审核立项" camunda:formKey="prj_approve" camunda:assignee="project_checker">
- <bpmn2:documentation>content.output.*来自于signal</bpmn2:documentation>
- <bpmn2:extensionElements>
- <camunda:inputOutput>
- <camunda:inputParameter name="show_in_my_works">${true}</camunda:inputParameter>
- <camunda:inputParameter name="process_type">${1}</camunda:inputParameter>
- <camunda:inputParameter name="target_type">project-detail</camunda:inputParameter>
- <camunda:inputParameter name="prj_id">${environment.variables.prj_id}</camunda:inputParameter>
- </camunda:inputOutput>
- <camunda:executionListener event="end">
- <camunda:script scriptFormat="JavaScript">
- (async function () {
- try {
- let owner = await this.environment.services.owner(); // 获取任务责任人
- if (!owner) {
- await this.environment.services.gen_warn_task('admin', '立项申请时未找到负责人',
- `立项申请时未找到负责人,流程出错。case id: ${this.environment.variables.id}`);
- }
- this.environment.Logger('work').debug(this.content);
- let checker = this.content.handlers[this.content.index]; // 获取当前审核人,这个是循环任务,有多个审核人依次审核
- let result = this.content.output[this.content.index]; // 来自于审核人表单结果
- if (result.pass) { // 如果审核通过
- await this.environment.services.gen_remind_task(owner.id, `${checker.name}已批准立项`,
- '<b>' + checker.name + '</b>已于 <b>' + this.environment.services.get_datetime() + '</b> 批准立项。审核意见如下:<br>' + result.opinion);
- await this.environment.services.logger(checker.id, checker.name, '批准立项,审核意见:' + result.opinion);
- } else {
- await this.environment.services.gen_remind_task(owner.id, `${checker.name}已驳回立项`,
- '<b>' + checker.name + '</b>已于 <b>' + this.environment.services.get_datetime() + '</b> 驳回立项。审核意见如下:<br>' + result.opinion);
- await this.environment.services.logger(checker.id, checker.name, '驳回立项,审核意见:<span style="color: red;">' + result.opinion + '</span>');
- }
- } catch (e) {
- this.environment.Logger('work').error(e);
- }
- })();
- </camunda:script>
- </camunda:executionListener>
- </bpmn2:extensionElements>
- <bpmn2:incoming>Flow_0jpbzcr</bpmn2:incoming>
- <bpmn2:outgoing>Flow_193tusd</bpmn2:outgoing>
- <bpmn2:multiInstanceLoopCharacteristics isSequential="true" camunda:collection="${content.handlers}" camunda:elementVariable="handler">
- <bpmn2:loopCardinality xsi:type="bpmn2:tFormalExpression">${content.handlers.length}</bpmn2:loopCardinality>
- <bpmn2:completionCondition xsi:type="bpmn2:tFormalExpression">${!content.output.pass}</bpmn2:completionCondition>
- </bpmn2:multiInstanceLoopCharacteristics>
- </bpmn2:userTask>
- <bpmn2:exclusiveGateway id="gateway_approved" default="Flow_0nwaga3">
- <bpmn2:incoming>Flow_193tusd</bpmn2:incoming>
- <bpmn2:outgoing>Flow_0zubkyw</bpmn2:outgoing>
- <bpmn2:outgoing>Flow_0nwaga3</bpmn2:outgoing>
- </bpmn2:exclusiveGateway>
- <bpmn2:sequenceFlow id="Flow_193tusd" sourceRef="task_approve" targetRef="gateway_approved" />
- <bpmn2:sequenceFlow id="Flow_0zubkyw" name="通过" sourceRef="gateway_approved" targetRef="event_throw_approved">
- <bpmn2:extensionElements>
- <camunda:properties>
- <camunda:property name="prj_phase" value="created" />
- <camunda:property name="prj_phase_name" value="审核通过" />
- </camunda:properties>
- </bpmn2:extensionElements>
- <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="JavaScript">next(null, this.environment.variables.pass===true);</bpmn2:conditionExpression>
- </bpmn2:sequenceFlow>
- <bpmn2:sequenceFlow id="Flow_0nwaga3" name="驳回" sourceRef="gateway_approved" targetRef="event_throw_approved_back">
- <bpmn2:extensionElements>
- <camunda:properties>
- <camunda:property name="prj_phase" value="reject_create" />
- <camunda:property name="prj_phase_name" value="立项审请被驳回" />
- </camunda:properties>
- </bpmn2:extensionElements>
- </bpmn2:sequenceFlow>
- <bpmn2:userTask id="task_with_draw" name="撤回立项" camunda:assignee="owner">
- <bpmn2:extensionElements>
- <camunda:inputOutput>
- <camunda:inputParameter name="process_type">${1}</camunda:inputParameter>
- </camunda:inputOutput>
- <camunda:executionListener event="end">
- <camunda:script scriptFormat="JavaScript">
- (async function() {
- try{
- let owner = await this.environment.services.owner(); // 获取任务责任人
- if (!owner) {
- await this.environment.services.gen_warn_task('admin', '立项申请被撤回时未找到负责人',
- `立项申请被撤回时未找到负责人,流程出错。case id: ${this.environment.variables.id}`);
- }
- await this.environment.services.gen_remind_task(owner.id, '立项申请已被撤回',
- owner.name+'已于 ' + this.environment.services.get_datetime() + ' 撤回立项申请。');
- await this.environment.services.logger(owner.id, owner.name, `撤回了立项申请。`);
- } catch(e){
- this.environment.Logger('work').error(e);
- }
- })();
- </camunda:script>
- </camunda:executionListener>
- </bpmn2:extensionElements>
- <bpmn2:incoming>Flow_12nug8s</bpmn2:incoming>
- <bpmn2:outgoing>Flow_0tj9nd6</bpmn2:outgoing>
- </bpmn2:userTask>
- <bpmn2:sequenceFlow id="Flow_0tj9nd6" sourceRef="task_with_draw" targetRef="Event_throw_withdraw">
- <bpmn2:extensionElements />
- </bpmn2:sequenceFlow>
- <bpmn2:boundaryEvent id="Event_catch_withdraw" name="撤回" attachedToRef="task_approve">
- <bpmn2:outgoing>Flow_0nzbvpg</bpmn2:outgoing>
- <bpmn2:signalEventDefinition id="SignalEventDefinition_111s194" signalRef="Signal_0hhmd7l" />
- </bpmn2:boundaryEvent>
- <bpmn2:intermediateThrowEvent id="Event_throw_withdraw" name="撤回事件">
- <bpmn2:incoming>Flow_0tj9nd6</bpmn2:incoming>
- <bpmn2:signalEventDefinition id="SignalEventDefinition_1tt7p06" signalRef="Signal_0hhmd7l" />
- </bpmn2:intermediateThrowEvent>
- <bpmn2:sequenceFlow id="Flow_02taytj" sourceRef="event_throw_approved" targetRef="task_set_owner">
- <bpmn2:extensionElements />
- </bpmn2:sequenceFlow>
- <bpmn2:intermediateThrowEvent id="event_throw_approved">
- <bpmn2:incoming>Flow_0zubkyw</bpmn2:incoming>
- <bpmn2:outgoing>Flow_02taytj</bpmn2:outgoing>
- <bpmn2:signalEventDefinition id="SignalEventDefinition_07jfo4t" signalRef="Signal_0828f9d" />
- </bpmn2:intermediateThrowEvent>
- <bpmn2:sequenceFlow id="Flow_1ucg773" sourceRef="event_catch_approved" targetRef="Event_end" />
- <bpmn2:boundaryEvent id="event_catch_approved" name="已审核" attachedToRef="task_with_draw">
- <bpmn2:outgoing>Flow_1ucg773</bpmn2:outgoing>
- <bpmn2:signalEventDefinition id="SignalEventDefinition_02ri5rf" signalRef="Signal_0828f9d" />
- </bpmn2:boundaryEvent>
- <bpmn2:intermediateThrowEvent id="event_throw_approved_back" name="已审核事件">
- <bpmn2:incoming>Flow_0nwaga3</bpmn2:incoming>
- <bpmn2:outgoing>Flow_06cxzjx</bpmn2:outgoing>
- <bpmn2:signalEventDefinition id="SignalEventDefinition_0y27jk5" signalRef="Signal_0828f9d" />
- </bpmn2:intermediateThrowEvent>
- <bpmn2:sequenceFlow id="Flow_1t45qnv" sourceRef="task_modify" targetRef="task_request" />
- <bpmn2:sequenceFlow id="Flow_0nzbvpg" sourceRef="Event_catch_withdraw" targetRef="Activity_1ga5o6o">
- <bpmn2:extensionElements>
- <camunda:properties>
- <camunda:property name="prj_phase" value="new" />
- <camunda:property name="prj_phase_name" value="立项申请已撤回" />
- </camunda:properties>
- </bpmn2:extensionElements>
- </bpmn2:sequenceFlow>
- <bpmn2:sequenceFlow id="Flow_06cxzjx" sourceRef="event_throw_approved_back" targetRef="task_place_on_file_reject" />
- <bpmn2:manualTask id="task_create" name="创建项目">
- <bpmn2:incoming>Flow_15zn1tu</bpmn2:incoming>
- <bpmn2:outgoing>Flow_0gyvyyo</bpmn2:outgoing>
- </bpmn2:manualTask>
- <bpmn2:sequenceFlow id="Flow_0gyvyyo" sourceRef="task_create" targetRef="task_request">
- <bpmn2:extensionElements />
- </bpmn2:sequenceFlow>
- <bpmn2:manualTask id="task_modify" name="修改项目信息">
- <bpmn2:extensionElements />
- <bpmn2:incoming>Flow_01n3edp</bpmn2:incoming>
- <bpmn2:incoming>Flow_0sb2avy</bpmn2:incoming>
- <bpmn2:incoming>Flow_0ipuk5f</bpmn2:incoming>
- <bpmn2:outgoing>Flow_1t45qnv</bpmn2:outgoing>
- </bpmn2:manualTask>
- <bpmn2:endEvent id="Event_end">
- <bpmn2:incoming>Flow_1ucg773</bpmn2:incoming>
- <bpmn2:incoming>Flow_0if8for</bpmn2:incoming>
- </bpmn2:endEvent>
- <bpmn2:sequenceFlow id="Flow_01ekshh" sourceRef="Activity_16s6waw" targetRef="Gateway_00icdjr" />
- <bpmn2:scriptTask id="Activity_16s6waw" name="检查审核人是否存在" scriptFormat="JavaScript">
- <bpmn2:incoming>Flow_1rg4oob</bpmn2:incoming>
- <bpmn2:outgoing>Flow_01ekshh</bpmn2:outgoing>
- <bpmn2:script>
- this.environment.services.get_handlers('project_checker').then((handlers) => {
- this.environment.variables.checkers_ok = handlers.length > 0 ? true: false;
- next();
- });</bpmn2:script>
- </bpmn2:scriptTask>
- <bpmn2:exclusiveGateway id="Gateway_00icdjr" default="Flow_10qwx33">
- <bpmn2:incoming>Flow_01ekshh</bpmn2:incoming>
- <bpmn2:outgoing>Flow_0a0l2t3</bpmn2:outgoing>
- <bpmn2:outgoing>Flow_10qwx33</bpmn2:outgoing>
- </bpmn2:exclusiveGateway>
- <bpmn2:sequenceFlow id="Flow_0a0l2t3" name="已设置审核组成员" sourceRef="Gateway_00icdjr" targetRef="Gateway_1hhlhsh">
- <bpmn2:extensionElements>
- <camunda:properties>
- <camunda:property name="prj_phase" value="apply_create" />
- <camunda:property name="prj_phase_name" value="申请立项中" />
- </camunda:properties>
- </bpmn2:extensionElements>
- <bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="JavaScript">next(null, this.environment.variables.checkers_ok===true);</bpmn2:conditionExpression>
- </bpmn2:sequenceFlow>
- <bpmn2:sequenceFlow id="Flow_10qwx33" sourceRef="Gateway_00icdjr" targetRef="Activity_0zp61jx" />
- <bpmn2:sequenceFlow id="Flow_01n3edp" sourceRef="Activity_0zp61jx" targetRef="task_modify" />
- <bpmn2:scriptTask id="Activity_0zp61jx" name="提醒设置审核组成员" scriptFormat="JavaScript">
- <bpmn2:incoming>Flow_10qwx33</bpmn2:incoming>
- <bpmn2:outgoing>Flow_01n3edp</bpmn2:outgoing>
- <bpmn2:script>try{
- this.environment.services.get_handlers('owner').then((handlers) => {
- for (var i = 0; i < handlers.length; i++) {
- this.environment.services.gen_remind_task(handlers[i].id, '提醒:没有配置审核组成员', '立项申请前,请先配置审核组成员,否则无法执行立项审核任务。');
- }
- next();
- });
- }catch(e){
- console.log(e);
- }</bpmn2:script>
- </bpmn2:scriptTask>
- <bpmn2:inclusiveGateway id="Gateway_1hhlhsh">
- <bpmn2:incoming>Flow_0a0l2t3</bpmn2:incoming>
- <bpmn2:outgoing>Flow_12nug8s</bpmn2:outgoing>
- <bpmn2:outgoing>Flow_0jpbzcr</bpmn2:outgoing>
- </bpmn2:inclusiveGateway>
- <bpmn2:sequenceFlow id="Flow_12nug8s" sourceRef="Gateway_1hhlhsh" targetRef="task_with_draw" />
- <bpmn2:sequenceFlow id="Flow_0jpbzcr" sourceRef="Gateway_1hhlhsh" targetRef="task_approve">
- <bpmn2:extensionElements>
- <camunda:properties>
- <camunda:property name="prj_phase" value="overview_create" />
- <camunda:property name="prj_phase_name" value="立项审核中" />
- </camunda:properties>
- </bpmn2:extensionElements>
- </bpmn2:sequenceFlow>
- <bpmn2:sequenceFlow id="Flow_0sb2avy" sourceRef="task_place_on_file_reject" targetRef="task_modify" />
- <bpmn2:scriptTask id="task_place_on_file_reject" name="归档审核未通过的立项文件" scriptFormat="Javascript">
- <bpmn2:incoming>Flow_06cxzjx</bpmn2:incoming>
- <bpmn2:outgoing>Flow_0sb2avy</bpmn2:outgoing>
- <bpmn2:script>try{
- let files = this.environment.output.task_request.files;
- if (files) {
- this.environment.services.place_on_files(files, "立项驳回").then(()=> next());
- } else {
- next();
- }
- } catch(e){
- this.environment.Logger('work').error(e);
- next();
- }</bpmn2:script>
- </bpmn2:scriptTask>
- <bpmn2:sequenceFlow id="Flow_0if8for" sourceRef="Activity_10dmh6u" targetRef="Event_end" />
- <bpmn2:scriptTask id="Activity_10dmh6u" name="归档审核通过的立项文件" scriptFormat="JavaScript">
- <bpmn2:incoming>Flow_07g8vvu</bpmn2:incoming>
- <bpmn2:outgoing>Flow_0if8for</bpmn2:outgoing>
- <bpmn2:script>try{
- let files = this.environment.output.task_request.files;
- if (files) {
- this.environment.services.place_on_files(files, "立项通过", "project_set_up").then(()=> next());
- } else {
- next();
- }
- }catch(e){
- next();
- }</bpmn2:script>
- </bpmn2:scriptTask>
- <bpmn2:sequenceFlow id="Flow_0ipuk5f" sourceRef="Activity_1ga5o6o" targetRef="task_modify" />
- <bpmn2:scriptTask id="Activity_1ga5o6o" name="归档撤回的立项文件" scriptFormat="JavaScript">
- <bpmn2:incoming>Flow_0nzbvpg</bpmn2:incoming>
- <bpmn2:outgoing>Flow_0ipuk5f</bpmn2:outgoing>
- <bpmn2:script>try{
- let files = this.environment.output.task_request.files;
- if (files) {
- this.environment.services.place_on_files(files, "主动撤回").then(()=> next());
- } else {
- next();
- }
- } catch(e){
- this.environment.Logger('work').error(e);
- next();
- }</bpmn2:script>
- </bpmn2:scriptTask>
- <bpmn2:sequenceFlow id="Flow_07g8vvu" sourceRef="task_set_owner" targetRef="Activity_10dmh6u" />
- <bpmn2:scriptTask id="task_set_owner" scriptFormat="JavaScript">
- <bpmn2:documentation>设置项目负责人</bpmn2:documentation>
- <bpmn2:incoming>Flow_02taytj</bpmn2:incoming>
- <bpmn2:outgoing>Flow_07g8vvu</bpmn2:outgoing>
- <bpmn2:script>
- (async function () {
- // 从审核时提交的表单中得到项目负责人,并设置
- try {
- await this.environment.services.set_leader(this.environment.variables.leader_id);
- } catch (e) {
- this.environment.Logger('work').error(e);
- }
- next();
- })();
- </bpmn2:script>
- </bpmn2:scriptTask>
- </bpmn2:process>
- <bpmn2:signal id="Signal_0hhmd7l" name="cancel_sign" />
- <bpmn2:message id="Message_0fh9t3e" name="msg_cancel" />
- <bpmn2:message id="Message_1qtzp8g" name="Message_0q7qbc4" />
- <bpmn2:signal id="Signal_0828f9d" name="Signal_2sf6vik" />
- <bpmndi:BPMNDiagram id="BPMNDiagram_1">
- <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="ProcessProjectApprove">
- <bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="event_start">
- <dc:Bounds x="152" y="212" width="36" height="36" />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Activity_09wmdbt_di" bpmnElement="task_request">
- <dc:Bounds x="380" y="190" width="100" height="80" />
- <bpmndi:BPMNLabel />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Activity_0ds6ym0_di" bpmnElement="task_approve">
- <dc:Bounds x="858" y="280" width="100" height="80" />
- <bpmndi:BPMNLabel />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Gateway_06baw71_di" bpmnElement="gateway_approved" isMarkerVisible="true">
- <dc:Bounds x="1115" y="295" width="50" height="50" />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Activity_0fonc56_di" bpmnElement="task_with_draw">
- <dc:Bounds x="870" y="80" width="100" height="80" />
- <bpmndi:BPMNLabel />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Event_0mceau4_di" bpmnElement="Event_throw_withdraw">
- <dc:Bounds x="1112" y="102" width="36" height="36" />
- <bpmndi:BPMNLabel>
- <dc:Bounds x="1108" y="78" width="44" height="14" />
- </bpmndi:BPMNLabel>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Event_0tntlum_di" bpmnElement="event_throw_approved">
- <dc:Bounds x="1202" y="302" width="36" height="36" />
- <bpmndi:BPMNLabel>
- <dc:Bounds x="1233" y="235" width="55" height="14" />
- </bpmndi:BPMNLabel>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Event_1gjhb1n_di" bpmnElement="event_throw_approved_back">
- <dc:Bounds x="1122" y="392" width="36" height="36" />
- <bpmndi:BPMNLabel>
- <dc:Bounds x="1162" y="403" width="55" height="14" />
- </bpmndi:BPMNLabel>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Activity_0isolrc_di" bpmnElement="task_create">
- <dc:Bounds x="230" y="190" width="100" height="80" />
- <bpmndi:BPMNLabel />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Activity_1k7kq2t_di" bpmnElement="task_modify">
- <dc:Bounds x="490" y="410" width="100" height="80" />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Event_1jljt88_di" bpmnElement="Event_end">
- <dc:Bounds x="1632" y="302" width="36" height="36" />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Activity_0kc4efu_di" bpmnElement="Activity_16s6waw">
- <dc:Bounds x="510" y="190" width="100" height="80" />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Gateway_00icdjr_di" bpmnElement="Gateway_00icdjr" isMarkerVisible="true">
- <dc:Bounds x="655" y="205" width="50" height="50" />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Activity_0qvsyb4_di" bpmnElement="Activity_0zp61jx">
- <dc:Bounds x="630" y="280" width="100" height="80" />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Gateway_06flgld_di" bpmnElement="Gateway_1hhlhsh">
- <dc:Bounds x="765" y="155" width="50" height="50" />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Activity_0hdmx5i_di" bpmnElement="task_place_on_file_reject">
- <dc:Bounds x="860" y="540" width="100" height="80" />
- <bpmndi:BPMNLabel />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Activity_04s4p12_di" bpmnElement="Activity_10dmh6u">
- <dc:Bounds x="1500" y="280" width="100" height="80" />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Activity_1k1mf96_di" bpmnElement="Activity_1ga5o6o">
- <dc:Bounds x="770" y="400" width="100" height="80" />
- <bpmndi:BPMNLabel />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Activity_1cu0e92_di" bpmnElement="task_set_owner">
- <dc:Bounds x="1300" y="280" width="100" height="80" />
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Event_06bs6js_di" bpmnElement="event_catch_approved">
- <dc:Bounds x="912" y="142" width="36" height="36" />
- <bpmndi:BPMNLabel>
- <dc:Bounds x="943" y="173" width="33" height="14" />
- </bpmndi:BPMNLabel>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape id="Event_0s1xb2l_di" bpmnElement="Event_catch_withdraw">
- <dc:Bounds x="920" y="342" width="36" height="36" />
- <bpmndi:BPMNLabel>
- <dc:Bounds x="947" y="378" width="22" height="14" />
- </bpmndi:BPMNLabel>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNEdge id="Flow_15zn1tu_di" bpmnElement="Flow_15zn1tu">
- <di:waypoint x="188" y="230" />
- <di:waypoint x="230" y="230" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_1rg4oob_di" bpmnElement="Flow_1rg4oob">
- <di:waypoint x="480" y="230" />
- <di:waypoint x="510" y="230" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_193tusd_di" bpmnElement="Flow_193tusd">
- <di:waypoint x="958" y="320" />
- <di:waypoint x="1115" y="320" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_0zubkyw_di" bpmnElement="Flow_0zubkyw">
- <di:waypoint x="1165" y="320" />
- <di:waypoint x="1202" y="320" />
- <bpmndi:BPMNLabel>
- <dc:Bounds x="1173" y="302" width="22" height="14" />
- </bpmndi:BPMNLabel>
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_0nwaga3_di" bpmnElement="Flow_0nwaga3">
- <di:waypoint x="1140" y="345" />
- <di:waypoint x="1140" y="392" />
- <bpmndi:BPMNLabel>
- <dc:Bounds x="1144" y="353" width="22" height="14" />
- </bpmndi:BPMNLabel>
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_0tj9nd6_di" bpmnElement="Flow_0tj9nd6">
- <di:waypoint x="970" y="120" />
- <di:waypoint x="1112" y="120" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_02taytj_di" bpmnElement="Flow_02taytj">
- <di:waypoint x="1238" y="320" />
- <di:waypoint x="1300" y="320" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_1ucg773_di" bpmnElement="Flow_1ucg773">
- <di:waypoint x="930" y="178" />
- <di:waypoint x="930" y="240" />
- <di:waypoint x="1650" y="240" />
- <di:waypoint x="1650" y="302" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_1t45qnv_di" bpmnElement="Flow_1t45qnv">
- <di:waypoint x="540" y="410" />
- <di:waypoint x="540" y="385" />
- <di:waypoint x="450" y="385" />
- <di:waypoint x="450" y="270" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_0nzbvpg_di" bpmnElement="Flow_0nzbvpg">
- <di:waypoint x="938" y="378" />
- <di:waypoint x="938" y="440" />
- <di:waypoint x="870" y="440" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_06cxzjx_di" bpmnElement="Flow_06cxzjx">
- <di:waypoint x="1140" y="428" />
- <di:waypoint x="1140" y="580" />
- <di:waypoint x="960" y="580" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_0gyvyyo_di" bpmnElement="Flow_0gyvyyo">
- <di:waypoint x="330" y="230" />
- <di:waypoint x="380" y="230" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_01ekshh_di" bpmnElement="Flow_01ekshh">
- <di:waypoint x="610" y="230" />
- <di:waypoint x="655" y="230" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_0a0l2t3_di" bpmnElement="Flow_0a0l2t3">
- <di:waypoint x="680" y="205" />
- <di:waypoint x="680" y="180" />
- <di:waypoint x="765" y="180" />
- <bpmndi:BPMNLabel>
- <dc:Bounds x="680" y="162" width="88" height="14" />
- </bpmndi:BPMNLabel>
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_10qwx33_di" bpmnElement="Flow_10qwx33">
- <di:waypoint x="680" y="255" />
- <di:waypoint x="680" y="280" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_01n3edp_di" bpmnElement="Flow_01n3edp">
- <di:waypoint x="680" y="360" />
- <di:waypoint x="680" y="430" />
- <di:waypoint x="590" y="430" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_12nug8s_di" bpmnElement="Flow_12nug8s">
- <di:waypoint x="790" y="155" />
- <di:waypoint x="790" y="110" />
- <di:waypoint x="870" y="110" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_0jpbzcr_di" bpmnElement="Flow_0jpbzcr">
- <di:waypoint x="790" y="205" />
- <di:waypoint x="790" y="320" />
- <di:waypoint x="858" y="320" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_0sb2avy_di" bpmnElement="Flow_0sb2avy">
- <di:waypoint x="860" y="580" />
- <di:waypoint x="725" y="580" />
- <di:waypoint x="725" y="450" />
- <di:waypoint x="590" y="450" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_0if8for_di" bpmnElement="Flow_0if8for">
- <di:waypoint x="1600" y="320" />
- <di:waypoint x="1632" y="320" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_0ipuk5f_di" bpmnElement="Flow_0ipuk5f">
- <di:waypoint x="770" y="440" />
- <di:waypoint x="590" y="440" />
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge id="Flow_07g8vvu_di" bpmnElement="Flow_07g8vvu">
- <di:waypoint x="1400" y="320" />
- <di:waypoint x="1500" y="320" />
- </bpmndi:BPMNEdge>
- </bpmndi:BPMNPlane>
- </bpmndi:BPMNDiagram>
- </bpmn2:definitions>
|