Ignore:
Timestamp:
21 Jun 2015, 15:10:30 (9 years ago)
Author:
Henrik Bettermann
Message:
 
File:
1 edited

Legend:

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

    r11794 r13087  
    115115        title = _('Reset application to started'),
    116116        msg = _('Application reset'),
     117        source = PAID,
     118        destination = STARTED),
     119
     120    Transition(
     121        transition_id = 'reset2',
     122        title = _('Reset application to paid'),
     123        msg = _('Application reset to paid'),
     124        source = SUBMITTED,
     125        destination = PAID),
     126
     127    Transition(
     128        transition_id = 'reset3',
     129        title = _('Reset application to started'),
     130        msg = _('Application reset'),
    117131        source = SUBMITTED,
    118132        destination = STARTED),
    119133
    120134    Transition(
    121         transition_id = 'reset2',
     135        transition_id = 'reset4',
    122136        title = _('Reset application to started'),
    123137        msg = _('Application reset'),
     
    126140
    127141    Transition(
    128         transition_id = 'reset3',
     142        transition_id = 'reset5',
    129143        title = _('Reset application to started'),
    130144        msg = _('Application reset'),
     
    132146        destination = STARTED),
    133147
    134     Transition(
    135         transition_id = 'reset4',
    136         title = _('Reset application to started'),
    137         msg = _('Application reset'),
    138         source = CREATED,
    139         destination = STARTED),
    140 
    141     Transition(
    142         transition_id = 'reset5',
    143         title = _('Reset application to paid'),
    144         msg = _('Application reset to paid'),
    145         source = SUBMITTED,
    146         destination = PAID),
    147 
    148     Transition(
    149         transition_id = 'reset6',
    150         title = _('Reset application to started'),
    151         msg = _('Application reset'),
    152         source = PAID,
    153         destination = STARTED),
    154 
    155     Transition(
    156         transition_id = 'reset7',
    157         title = _('Reset application to admitted'),
    158         msg = _('Application reset to admitted'),
    159         source = CREATED,
    160         destination = ADMITTED),
    161148    )
    162149
Note: See TracChangeset for help on using the changeset viewer.