Skip to content

Workflow

Workflow transition component

Use the WorkflowTransitionComponent to display the available transitions of an entity.

WorkflowTransitionComponent usage

  1. Import the WorkflowTransitionsModule in your module, This module registers all the dependencies and exports the WorkflowTransitionComponent component.

  2. Add the component selector into your template, remember to set the entityType and the correlationId.

HTML
1
2
3
4
5
<its-workflow-transitions
    [correlationId]="entity.correlationId"
    entityType="serviceOrder"
>
</its-workflow-transitions>