Skip to content
This repository was archived by the owner on Oct 30, 2023. It is now read-only.

Commit 39feded

Browse files
authored
Merge pull request #611 from FlowzPlatform/conditionAndVarNameBPMN
Condition and var name bpmn
2 parents 977872f + 64a1906 commit 39feded

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

client/src/pages/flow/New.vue

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,17 @@
190190
emailtemplate: m._emailtemplate || '',
191191
target: this.getTargetId(m, jsonXML)
192192
}
193+
} else if (m.type === 'exclusivegateway' || m.type === 'complexgateway') {
194+
console.log(m)
195+
this.flowObject.processList[m._id] = {
196+
id: m._id,
197+
name: m._name || '',
198+
type: m.type,
199+
order: inx,
200+
condition: m._condition || '',
201+
var_name: m._var_name || '',
202+
target: this.getTargetId(m, jsonXML)
203+
}
193204
} else {
194205
this.flowObject.processList[m._id] = {
195206
id: m._id,

0 commit comments

Comments
 (0)