1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- framework:
- workflows:
- olt_workflow:
- type: state_machine
- marking_store:
- type: single_state
- arguments:
- - currentState
- supports:
- - FTTHBundle\Entity\OLT
- initial_place: disabled
- places:
- - enabled
- - disabled
- transitions:
- disable:
- from: enabled
- to: disabled
- enable:
- from: disabled
- to: enabled
- onu_workflow:
- type: state_machine
- marking_store:
- type: single_state
- arguments:
- - currentState
- supports:
- - FTTHBundle\Entity\ONU
- initial_place: active
- places:
- - active
- - disable
- - deleted
- transitions:
- disable_active:
- from: disable
- to: active
- disable_deleted:
- from: disable
- to: deleted
- config:
- from: active
- to: active
- active_disable:
- from: active
- to: disable
- active_deleted:
- from: active
- to: deleted
- deleted_active:
- from: deleted
- to: active
|