Ignore:
Timestamp:
23 Jul 2011, 14:25:39 (13 years ago)
Author:
uli
Message:

Add docs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/workflow.py

    r6478 r6547  
    3636
    3737def invalidate_action(wf, context):
     38    """Side actions taken when an access code is invalidated.
     39    """
    3840    batch = getattr(context, '__parent__', None)
    3941    if batch is None:
     
    4345
    4446def disable_used_action(wf, context):
     47    """Side actions taken when a used access code is disabled.
     48    """
    4549    batch = getattr(context, '__parent__', None)
    4650    if batch is None:
     
    5054
    5155def disable_unused_action(wf, context):
     56    """Side actions taken when an unused access code is invalidated.
     57    """
    5258    batch = getattr(context, '__parent__', None)
    5359    if batch is None:
     
    5763
    5864def reenable_action(wf, context):
     65    """Side actions taken when an access code is reenabled.
     66    """
    5967    batch = getattr(context, '__parent__', None)
    6068    if batch is None:
Note: See TracChangeset for help on using the changeset viewer.