Changeset 15382 for main/waeup.aaue/trunk/src/waeup
- Timestamp:
- 3 Apr 2019, 10:55:16 (6 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interswitch/browser.py
r15380 r15382 64 64 65 65 def contr_agreement_student(student): 66 if student.current_mode in ('found', 'bridge') or student.current_mode.endswith('_pt'): 66 if student.current_mode in ( 67 'found', 'bridge', 'ug_dsh', 'de_dsh') or student.current_mode.endswith('_pt'): 67 68 return 'first' 68 69 return 'second' -
main/waeup.aaue/trunk/src/waeup/aaue/students/tests/test_utils.py
r15376 r15382 216 216 # and same counter as PTP. 217 217 self.student.matric_number = None 218 self.student['studycourse'].certificate.study_mode = ' dsh'218 self.student['studycourse'].certificate.study_mode = 'ug_dsh' 219 219 msg, mnumber = utils.setMatricNumber(self.student) 220 220 self.assertEqual(self.student.matric_number, 'DSH/fac1/dep1/04/00002') -
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r15376 r15382 154 154 is as an attribute of the site configuration container. 155 155 """ 156 if student.current_mode in ('ug_pt', 'de_pt', ' dsh'):156 if student.current_mode in ('ug_pt', 'de_pt', 'ug_dsh', 'de_dsh'): 157 157 grok.getSite()['configuration'].next_matric_integer += 1 158 158 return … … 197 197 return None, "AAU/SPS/%s/%s/%s/%s/%05d" % ( 198 198 faccode, depcode, year, degree, next_integer) 199 if student.current_mode in (' dsh',):199 if student.current_mode in ('ug_dsh', 'de_dsh'): 200 200 next_integer = grok.getSite()['configuration'].next_matric_integer 201 201 if next_integer == 0: -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r15377 r15382 163 163 'ijmbe': 'IJMBE Preparation', 164 164 'bridge': 'Bridge', 165 'dsh': 'Science and Humanities', 165 'ug_dsh': 'Undergraduate Science and Humanities', 166 'de_dsh': 'Direct Entry Science and Humanities', 166 167 } 167 168
Note: See TracChangeset for help on using the changeset viewer.