Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Now transitions contain not only routing information but also rules as well. For instance, the transition between the supervisor and the HOD is contingent on the supervisor approving the leave application. In order to do this, we'll need to specify the necessary rules to make sure that the transition is traveled only when the conditions are right. To insert conditions into your transitions, simply double click on the transition, set the type to condition and then enter the condition expression into the expression text box. The expressions in Joget supports a full javascript interpreter. In this case, we want to ensure that the supervisor has approved the leave application before it heads to the HOD. In the expression box, key in:

...

Essentially, we're checking for the variable name "supervisorApproval" and ensure that the value contained is "yes". For more information about workflow variables, refer to ?Workflow Variables.