workflow_list.yml.dist 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. framework:
  2. workflows:
  3. olt_workflow:
  4. type: state_machine
  5. marking_store:
  6. type: single_state
  7. arguments:
  8. - currentState
  9. supports:
  10. - FTTHBundle\Entity\OLT
  11. initial_place: disabled
  12. places:
  13. - enabled
  14. - disabled
  15. transitions:
  16. disable:
  17. from: enabled
  18. to: disabled
  19. enable:
  20. from: disabled
  21. to: enabled
  22. onu_workflow:
  23. type: state_machine
  24. marking_store:
  25. type: single_state
  26. arguments:
  27. - currentState
  28. supports:
  29. - FTTHBundle\Entity\ONU
  30. initial_place: active
  31. places:
  32. - active
  33. - disable
  34. - deleted
  35. transitions:
  36. disable_active:
  37. from: disable
  38. to: active
  39. disable_deleted:
  40. from: disable
  41. to: deleted
  42. config:
  43. from: active
  44. to: active
  45. active_disable:
  46. from: active
  47. to: disable
  48. active_deleted:
  49. from: active
  50. to: deleted
  51. deleted_active:
  52. from: deleted
  53. to: active