Changeset 6375 for main/waeup.sirp/trunk
- Timestamp:
- 15 Jun 2011, 23:51:47 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser.py
r6367 r6375 422 422 return 423 423 pin = self.request.principal.access_code 424 state = IWorkflowState(self.context[pin]).getState() 425 if state == INITIALIZED: 426 IWorkflowInfo(self.context[pin]).fireTransition('start') 424 425 # Mark pin as used (this also fires a pin related transition) 426 invalidate_accesscode(pin) 427 427 428 if pin in self.context.keys(): 428 429 self.redirect(self.url(self.context[pin], 'edit')) 429 430 return 430 431 # Mark pin as used432 invalidate_accesscode(pin)433 431 434 432 # Create applicant record
Note: See TracChangeset for help on using the changeset viewer.