forked from flowable/flowable-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not create historic task log entries when history level is NONE (f…
- Loading branch information
1 parent
c572788
commit 270753a
Showing
5 changed files
with
62 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
21 changes: 21 additions & 0 deletions
21
.../resources/org/flowable/cmmn/test/history/testOneSimpleHumanTaskWithHistoryLevelNone.cmmn
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,21 @@ | ||
<?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" design:palette="flowable-work-case-palette"> | ||
<case id="myCase" name="Test" flowable:initiatorVariableName="initiator" flowable:candidateStarterGroups="flowableUser"> | ||
<casePlanModel id="onecaseplanmodel1" name="Case plan model" flowable:formFieldValidation="false"> | ||
<extensionElements> | ||
<flowable:default-menu-navigation-size><![CDATA[expanded]]></flowable:default-menu-navigation-size> | ||
<flowable:historyLevel><![CDATA[none]]></flowable:historyLevel> | ||
<flowable:work-form-field-validation><![CDATA[false]]></flowable:work-form-field-validation> | ||
<design:stencilid><![CDATA[CasePlanModel]]></design:stencilid> | ||
</extensionElements> | ||
<planItem id="planItemcmmnTask_1" name="Human task" definitionRef="cmmnTask_1"></planItem> | ||
<humanTask id="cmmnTask_1" name="Human task" flowable:assignee="${initiator}" flowable:formFieldValidation="false"> | ||
<extensionElements> | ||
<flowable:task-candidates-type><![CDATA[all]]></flowable:task-candidates-type> | ||
<design:stencilid><![CDATA[HumanTask]]></design:stencilid> | ||
<design:stencilsuperid><![CDATA[Task]]></design:stencilsuperid> | ||
</extensionElements> | ||
</humanTask> | ||
</casePlanModel> | ||
</case> | ||
</definitions> |
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