Skip to content
Snippets Groups Projects
Commit 11b4971e authored by Sebastian Listl's avatar Sebastian Listl :speech_balloon:
Browse files

Merge branch 'sales_1082209_OfferWorkflowsAsStandardWorkflows' into '2021.1'

[Projekt: xRM-Sales][TicketNr.: 1082209][Workflows als Standard-Workflows laden]

See merge request xrm/basic!1063
parents a7c04cfb 78c016a8
No related branches found
No related tags found
No related merge requests found
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
......@@ -2,13 +2,13 @@
<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="approveOffer" name="AngebotFreigeben" isExecutable="true">
<startEvent id="startEvent1" flowable:formFieldValidation="true"></startEvent>
<userTask id="sid-7EE94F7E-20DC-49DF-A751-7EC30166393B" name="Angebot freigeben" flowable:candidateGroups="PROJECT_Pruefer1,PROJECT_Pruefer2" flowable:formFieldValidation="true">
<userTask id="sid-7EE94F7E-20DC-49DF-A751-7EC30166393B" name="Angebot freigeben" flowable:candidateGroups="PROJECT_Inspector1,PROJECT_Inspector2" flowable:formFieldValidation="true">
<extensionElements>
<flowable:formProperty id="approval" name="Angebot freigegeben?" type="boolean" variable="inspector1approval" required="true"></flowable:formProperty>
<flowable:formProperty id="reason" name="Begründung der Ablehnung" type="string" variable="reason" visibilityExpression="${currentValues.approval == false}"></flowable:formProperty>
<flowable:formProperty id="inspector2needed" name="2. Freigabe nötig?" type="boolean" expression="#{true}" variable="inspector2needed" visibilityExpression="${currentValues.approval == true}"></flowable:formProperty>
<modeler:group-info-name-PROJECT_Pruefer1 xmlns:modeler="http://flowable.org/modeler"><![CDATA[VT BL]]></modeler:group-info-name-PROJECT_Pruefer1>
<modeler:group-info-name-PROJECT_Pruefer2 xmlns:modeler="http://flowable.org/modeler"><![CDATA[GF/Leiter Vertrieb]]></modeler:group-info-name-PROJECT_Pruefer2>
<modeler:group-info-name-PROJECT_Inspector1 xmlns:modeler="http://flowable.org/modeler"><![CDATA[PROJECT_Inspector1]]></modeler:group-info-name-PROJECT_Inspector1>
<modeler:group-info-name-PROJECT_Inspector2 xmlns:modeler="http://flowable.org/modeler"><![CDATA[executives]]></modeler:group-info-name-PROJECT_Inspector2>
<modeler:activiti-idm-candidate-group xmlns:modeler="http://flowable.org/modeler"><![CDATA[true]]></modeler:activiti-idm-candidate-group>
<modeler:initiator-can-complete xmlns:modeler="http://flowable.org/modeler"><![CDATA[false]]></modeler:initiator-can-complete>
</extensionElements>
......
......@@ -4,4 +4,6 @@
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<include relativeToChangelogFile="true" file="insert_rejectEmailCommunication.xml"/>
<include relativeToChangelogFile="true" file="insert_unsubscribeInterest.xml"/>
<include relativeToChangelogFile="true" file="insert_advertisingShipment.xml"/>
<include relativeToChangelogFile="true" file="insert_approveOffer.xml"/>
</databaseChangeLog>
\ No newline at end of file
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<changeSet author="b.ulrich" id="cdc027b9-f280-4b36-aa27-c4ec5fc0ca91">
<insert tableName="STANDARD_WORKFLOW">
<column name="STANDARD_WORKFLOWID" value="85fec215-0556-4631-ba86-e03fe64749b4"/>
<column name="PROCESSKEY" value="AdvertisingShipment"/>
<column name="NAME" value="AdvertisingShipment"/>
<column name="DESCRIPTION" value="Advertising Shipment"/>
<column name="PROCESSXML" valueBlobFile="blob/advertisingShipment.xml"/>
<column name="DIAGRAM" valueBlobFile="blob/advertisingShipment.png"/>
</insert>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<changeSet author="b.ulrich" id="7470f270-16a9-4b0f-b48a-70b3b8d9b8ff">
<insert tableName="STANDARD_WORKFLOW">
<column name="STANDARD_WORKFLOWID" value="79e351b1-2367-4dad-a5cf-ed114e84900b"/>
<column name="PROCESSKEY" value="approveOffer"/>
<column name="NAME" value="AngebotFreigeben"/>
<column name="DESCRIPTION" value="Approve Offers"/>
<column name="PROCESSXML" valueBlobFile="blob/approveOffer.xml"/>
<column name="DIAGRAM" valueBlobFile="blob/approveOffer.png"/>
</insert>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment