Ignore:
Timestamp:
5 Feb 2016, 08:48:02 (9 years ago)
Author:
Henrik Bettermann
Message:

Add new application workflow state (processed) and transition (process).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/workflow.py

    r13108 r13651  
    3333NOT_ADMITTED = 'not admitted'
    3434CREATED = 'created'
     35PROCESSED = 'processed'
     36
    3537
    3638IMPORTABLE_STATES = (INITIALIZED, STARTED, PAID, SUBMITTED, ADMITTED, NOT_ADMITTED)
     
    4446    NOT_ADMITTED: _('not admitted'),
    4547    CREATED: _('created'),
     48    PROCESSED: _('processed'),
    4649    }
    4750
     
    9699        source = SUBMITTED,
    97100        destination = NOT_ADMITTED),
     101
     102    Transition(
     103        transition_id = 'process',
     104        title = _('Process application'),
     105        msg = _('Application processed'),
     106        source = SUBMITTED,
     107        destination = PROCESSED),
    98108
    99109    Transition(
Note: See TracChangeset for help on using the changeset viewer.