Changeset 1776
- Timestamp:
- 12 May 2007, 15:30:02 (18 years ago)
- Location:
- WAeUP_SRP/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/WAeUPTables.py
r1749 r1776 179 179 records = self.searchResults(student = student_id) 180 180 #import pdb;pdb.set_trace() 181 if len(records) > 0 :181 if len(records) > 0 and prefix in ('CLR','APP'): 182 182 for r in records: 183 183 if r.pin != uid and r.prefix_batch.startswith(prefix): -
WAeUP_SRP/trunk/skins/waeup_custom/logged_in.py
r1568 r1776 120 120 res = context.students_catalog(id = str(member)) 121 121 matric_no = res[0].matric_no 122 verdict = res[0].verdict 123 if s_review_state == "returning" and not verdict: 124 results = context.results_import(matric_no = matric_no) 125 if results: 126 study_course_doc = getattr(student,'study_course').getContent() 127 study_course_doc.edit(mapping={'verdict':results[0].Verdict}) 122 128 is_imported = context.returning_import(matric_no = matric_no) 123 129 if s_review_state == "application_pin_entered":
Note: See TracChangeset for help on using the changeset viewer.