-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issue with incorrect stage getting activated on case instance mig…
…ration
- Loading branch information
1 parent
55cdec3
commit 4b2999a
Showing
3 changed files
with
102 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...c/test/resources/org/flowable/cmmn/test/migration/activate-planitem-ended-stages.cmmn.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<definitions xmlns="http://www.omg.org/spec/CMMN/20151109/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:flowable="http://flowable.org/cmmn" xmlns:cmmndi="http://www.omg.org/spec/CMMN/20151109/CMMNDI" xmlns:dc="http://www.omg.org/spec/CMMN/20151109/DC" xmlns:di="http://www.omg.org/spec/CMMN/20151109/DI" xmlns:design="http://flowable.org/design" targetNamespace="http://flowable.org/cmmn"> | ||
<case id="caseWithEndedStage" name="caseWithEndedStage"> | ||
<casePlanModel id="onecaseplanmodel1" name="Case plan model" flowable:formFieldValidation="false"> | ||
<planItem id="planItemexpandedStage1" definitionRef="expandedStage1" name="Expanded stage"></planItem> | ||
<planItem id="planItemhumanTask2" name="Human task 2" definitionRef="humanTask2"></planItem> | ||
<planItem id="planItemserviceTask1" name="Service task" definitionRef="serviceTask1"></planItem> | ||
<stage id="expandedStage1" name="Expanded stage"> | ||
<planItem id="planItemhumanTask1" name="Human task" definitionRef="humanTask1"></planItem> | ||
<humanTask id="humanTask1" name="Human task" /> | ||
</stage> | ||
<humanTask id="humanTask2" name="Human task 2" /> | ||
<task id="serviceTask1" name="Service task" flowable:type="java" flowable:expression="${true}" /> | ||
</casePlanModel> | ||
</case> | ||
</definitions> |