Changeset 6547 for main/waeup.sirp/trunk/src
- Timestamp:
- 23 Jul 2011, 14:25:39 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/workflow.py
r6478 r6547 36 36 37 37 def invalidate_action(wf, context): 38 """Side actions taken when an access code is invalidated. 39 """ 38 40 batch = getattr(context, '__parent__', None) 39 41 if batch is None: … … 43 45 44 46 def disable_used_action(wf, context): 47 """Side actions taken when a used access code is disabled. 48 """ 45 49 batch = getattr(context, '__parent__', None) 46 50 if batch is None: … … 50 54 51 55 def disable_unused_action(wf, context): 56 """Side actions taken when an unused access code is invalidated. 57 """ 52 58 batch = getattr(context, '__parent__', None) 53 59 if batch is None: … … 57 63 58 64 def reenable_action(wf, context): 65 """Side actions taken when an access code is reenabled. 66 """ 59 67 batch = getattr(context, '__parent__', None) 60 68 if batch is None:
Note: See TracChangeset for help on using the changeset viewer.