Changeset 8430 for main/waeup.uniben/trunk/src/waeup/uniben/applicants
- Timestamp:
- 12 May 2012, 08:43:51 (13 years ago)
- Location:
- main/waeup.uniben/trunk/src/waeup/uniben/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/applicants/interfaces.py
r8378 r8430 269 269 270 270 """ 271 272 def doAfterApplicantPayment(): 273 """Process applicant after payment was made. 274 275 """ 276 277 def approveApplicantPayment(): 278 """Approve payment and process applicant. 279 280 """ -
main/waeup.uniben/trunk/src/waeup/uniben/applicants/utils.py
r8247 r8430 25 25 from waeup.uniben.interfaces import MessageFactory as _ 26 26 27 28 def actions_after_applicant_payment(applicant, view):29 wf_info = IWorkflowInfo(applicant)30 try:31 wf_info.fireTransition('pay')32 except InvalidTransitionError:33 view.flash('Error: %s' % sys.exc_info()[1])34 return35 27 36 28 class ApplicantsUtils(ApplicantsUtils):
Note: See TracChangeset for help on using the changeset viewer.