- Timestamp:
- 5 Feb 2016, 08:48:02 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/workflow.py
r13108 r13651 33 33 NOT_ADMITTED = 'not admitted' 34 34 CREATED = 'created' 35 PROCESSED = 'processed' 36 35 37 36 38 IMPORTABLE_STATES = (INITIALIZED, STARTED, PAID, SUBMITTED, ADMITTED, NOT_ADMITTED) … … 44 46 NOT_ADMITTED: _('not admitted'), 45 47 CREATED: _('created'), 48 PROCESSED: _('processed'), 46 49 } 47 50 … … 96 99 source = SUBMITTED, 97 100 destination = NOT_ADMITTED), 101 102 Transition( 103 transition_id = 'process', 104 title = _('Process application'), 105 msg = _('Application processed'), 106 source = SUBMITTED, 107 destination = PROCESSED), 98 108 99 109 Transition(
Note: See TracChangeset for help on using the changeset viewer.