- Timestamp:
- 10 Jun 2011, 12:26:34 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/workflow.py
r6323 r6335 25 25 source = None, 26 26 condition = NullCondition, 27 msg = 'app plication process initialized',27 msg = 'application process initialized', 28 28 destination = INITIALIZED) 29 29 … … 31 31 transition_id = 'start', 32 32 title = 'Start application', 33 msg = 'app plication process started',33 msg = 'application process started', 34 34 source = INITIALIZED, 35 35 destination = STARTED) … … 38 38 transition_id = 'submit', 39 39 title = 'Submit application', 40 msg = 'app plication record submitted',40 msg = 'application record submitted', 41 41 source = STARTED, 42 42 destination = SUBMITTED) … … 45 45 transition_id = 'admit', 46 46 title = 'Admit applicant', 47 msg = 'app plicant admitted',47 msg = 'applicant admitted', 48 48 source = SUBMITTED, 49 49 destination = ADMITTED) … … 52 52 transition_id = 'refuse1', 53 53 title = 'Refuse application', 54 msg = 'app plication refused',54 msg = 'application refused', 55 55 source = SUBMITTED, 56 56 destination = NOT_ADMITTED) … … 59 59 transition_id = 'refuse2', 60 60 title = 'Refuse application', 61 msg = 'app plication refused',61 msg = 'application refused', 62 62 source = ADMITTED, 63 63 destination = NOT_ADMITTED) … … 73 73 transition_id = 'reset1', 74 74 title = 'Reset application', 75 msg = 'app plication record reset',75 msg = 'application record reset', 76 76 source = SUBMITTED, 77 77 destination = STARTED) … … 80 80 transition_id = 'reset2', 81 81 title = 'Reset application', 82 msg = 'app plication record reset',82 msg = 'application record reset', 83 83 source = ADMITTED, 84 84 destination = STARTED) … … 87 87 transition_id = 'reset3', 88 88 title = 'Reset application', 89 msg = 'app plication record reset',89 msg = 'application record reset', 90 90 source = NOT_ADMITTED, 91 91 destination = STARTED) … … 94 94 transition_id = 'reset4', 95 95 title = 'Reset application', 96 msg = 'app plication record reset',96 msg = 'application record reset', 97 97 source = CREATED, 98 98 destination = STARTED)
Note: See TracChangeset for help on using the changeset viewer.