Changeset 15376 for main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
- Timestamp:
- 1 Apr 2019, 11:57:40 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r15373 r15376 154 154 is as an attribute of the site configuration container. 155 155 """ 156 if student.current_mode in ('ug_pt', 'de_pt', ' shs'):156 if student.current_mode in ('ug_pt', 'de_pt', '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 (' shs',):199 if student.current_mode in ('dsh',): 200 200 next_integer = grok.getSite()['configuration'].next_matric_integer 201 201 if next_integer == 0: 202 202 return _('Matriculation number cannot be set.'), None 203 return None, " SHS/%s/%s/%s/%05d" % (203 return None, "DSH/%s/%s/%s/%05d" % ( 204 204 faccode, depcode, year, next_integer) 205 205 if student.current_mode in ('ug_pt', 'de_pt'):
Note: See TracChangeset for help on using the changeset viewer.