생성 된 작업 양식에 true/false 로직을 독점 게이트웨이에 적용하려고합니다. true이면 프로세스를 종료합니다. false 인 경우 데이터 수정 작업으로 리디렉션합니다. >승인가 특정되는 부울 형태의 id이지만, 그것은 작동하지 않습니다 - 여기 $독점 게이트웨이의 참/거짓 로직
<bpmn:sequenceFlow id="SequenceFlow_180tuqy" name="Yes" sourceRef="ExclusiveGateway_1gplnrv" targetRef="EndEvent_16krmz0">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${approved}</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:sequenceFlow id="SequenceFlow_1" name="No" sourceRef="ExclusiveGateway_1gplnrv" targetRef="stock_management">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${!approved}</bpmn:conditionExpression>
</bpmn:sequenceFlow>
{승인}.
내가 언급해야 할 내용 bpmn : conditionExpression?
감사합니다. 어제 그 자체가 고정!. 나는 똑같이했다. –