ferry/docs/document/exclusive_gateway.md
2020-09-03 13:37:28 +08:00

18 lines
753 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 排他网关
在平时的业务中,有的时候需要根据表单数据的值来判断跳转到啥位置。
例如如果申请的服务器价格低于1000元就是部门领导审批如果超过1000元那么就是CTO审批。为兼容这种情况因此加入了排他网关的概念。
此外还需注意,如果使用了排他网关,则必须有一个条件判断是正确的,否则流程将无法进行下去,报错失败。
将下面的Json格式数据修改为自己的表单数据写入到对应的流转线条中即可但是流转线条的源阶段必须要排他网关的图标。
[
{
"key":"字段名称",
"sign":"==",
"value":"需要判断的值"
}
]