-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
356e070
commit 9e89bda
Showing
6 changed files
with
32 additions
and
12 deletions.
There are no files selected for viewing
22 changes: 16 additions & 6 deletions
22
...ckage/DashboardProcessWithLoopExecutionTest.class/instance/formInstance_withValues.in..st
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 |
---|---|---|
@@ -1,10 +1,20 @@ | ||
create random process | ||
formInstance_withValues: anArray in: aBpmProcessInstance | ||
| formInstance | | ||
|
||
formInstance := self newInstanceTemplate | ||
formInstance_ue_dashboard_form: (anArray at: 1) | ||
cost: (anArray at: 2) | ||
deductible: (anArray at: 3) | ||
confirmed: (anArray at: 4) | ||
directClient: (anArray at: 5) | ||
country: (anArray at: 6) | ||
city: (anArray at: 7) | ||
industry: (anArray at: 8). | ||
|
||
^self formCreatorClass | ||
createFormInstance: #form_dashboard_form:cost:deductible:confirmed:directClient:country:city:industry: | ||
withValues: anArray | ||
definitionNamed: 'dashboard-form' | ||
app: 'ue' | ||
definitionMethod: #formDefinition_dashboard_form | ||
in: procInstance | ||
buildFormInstanceFrom: formInstance | ||
definitionNamed: 'all-field-types' | ||
app: 'ue' | ||
definitionMethod: self newDefinitionTemplate formDefinition_ue_all_field_types | ||
in: procInstance |
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
7 changes: 6 additions & 1 deletion
7
...ckage/DataEntryMultiRoleProcessExecutionTest.class/instance/formInstance_data_approved.st
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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
form instance | ||
formInstance_data_approved | ||
|
||
^self formCreatorClass createFormInstance: #form_data_approved_1 definitionNamed: 'data-approved' app: 'ue' definitionMethod: #formDefinition_data_approval in: procInstance | ||
^self formCreatorClass | ||
buildFormInstanceFrom: self newInstanceTemplate formInstance_ue_data_approved | ||
definitionNamed: 'all-field-types' | ||
app: 'ue' | ||
definitionMethod: self newDefinitionTemplate formDefinition_ue_data_approved | ||
in: procInstance |
7 changes: 6 additions & 1 deletion
7
....package/DataEntryMultiRoleProcessExecutionTest.class/instance/formInstance_data_entry.st
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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
form instance | ||
formInstance_data_entry | ||
|
||
^self formCreatorClass createFormInstance: #form_data_entry_1 definitionNamed: 'data-entry' app: 'ue' definitionMethod: #formDefinition_data_entry in: procInstance | ||
^self formCreatorClass | ||
buildFormInstanceFrom: self newInstanceTemplate formInstance_ue_data_entry_1 | ||
definitionNamed: 'all-field-types' | ||
app: 'ue' | ||
definitionMethod: self newDefinitionTemplate formDefinition_ue_data_entry | ||
in: procInstance |
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
Large diffs are not rendered by default.
Oops, something went wrong.