Ignore:
Timestamp:
12 May 2012, 16:27:14 (13 years ago)
Author:
Henrik Bettermann
Message:

Managers do not 'pay' fees for applicants and students, they approve payments made.

Add respective transitions.

File:
1 edited

Legend:

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

    r8428 r8434  
    730730        transition.
    731731        """
    732         allowed_transitions = self.wf_info.getManualTransitions()
     732        allowed_transitions = [t for t in self.wf_info.getManualTransitions()
     733            if not t[0] == 'pay']
    733734        return [dict(name='', title=_('No transition'))] +[
    734735            dict(name=x, title=y) for x, y in allowed_transitions]
Note: See TracChangeset for help on using the changeset viewer.