Changeset 8335 for main/waeup.kofa/trunk/src/waeup
- Timestamp:
- 3 May 2012, 20:53:09 (13 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/applicant.py
r8311 r8335 45 45 super(Applicant, self).__init__() 46 46 self.password = None 47 IWorkflowInfo(self).fireTransition('init')48 47 self.application_date = None 49 48 self.applicant_id = None … … 307 306 role_manager.assignRoleToPrincipal( 308 307 'waeup.Applicant', applicant.applicant_id) 308 IWorkflowInfo(applicant).fireTransition('init') 309 309 310 310 # Assign global applicant role for new applicant (alternative way) -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests/test_batching.py
r8334 r8335 307 307 'date_of_birth=1990-01-04, email=xx@yy.zz' in 308 308 logcontent) 309 # Logging message from handle_applicant_transition_event 310 self.assertTrue( 311 'dp2011_1234 - Application initialized' in 312 logcontent) 309 313 shutil.rmtree(os.path.dirname(fin_file)) 310 314 -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/workflow.py
r8334 r8335 170 170 history.addMessage(msg) 171 171 # In some tests we don't have a an applicants root or a user 172 if event.transition.transition_id != 'init': 173 try: 174 applicants_root = grok.getSite()['applicants'] 175 applicants_root.logger.info('%s - %s' % (obj.applicant_id,msg)) 176 except (TypeError, AttributeError): 177 pass 172 try: 173 applicants_root = grok.getSite()['applicants'] 174 applicants_root.logger.info('%s - %s' % (obj.applicant_id,msg)) 175 except (TypeError, AttributeError): 176 pass 178 177 return -
main/waeup.kofa/trunk/src/waeup/kofa/utils/converters.py
r8334 r8335 302 302 obj = context 303 303 if isinstance(context, basestring): 304 # If we log initialization transitions this 305 # will create another (misleading) log entry 304 # If we log initialization transitions in the __init__ 305 # method of objects, a second (misleading) log entry 306 # will be created here. 306 307 obj = createObject(context) 307 308
Note: See TracChangeset for help on using the changeset viewer.