- Timestamp:
- 2 Feb 2023, 08:39:21 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.unidel/trunk/src/kofacustom/unidel/students/utils.py
r17312 r17328 197 197 # Determine bed type 198 198 bt = 'all' 199 if student.current_level >= 300:200 bt = 'na'199 #if student.current_level >= 300: 200 # bt = 'na' 201 201 if student.sex == 'f': 202 202 sex = 'female' … … 204 204 sex = 'male' 205 205 special_handling = 'regular' 206 if student.faccode in ('FLW', 'FMS'):207 special_handling = 'oyibu'208 if student.faccode in ('FET', 'FES'):209 special_handling = 'alero'206 #if student.faccode in ('FLW', 'FMS'): 207 # special_handling = 'oyibu' 208 #if student.faccode in ('FET', 'FES'): 209 # special_handling = 'alero' 210 210 d['bt'] = u'%s_%s_%s' % (special_handling,sex,bt) 211 211 return d
Note: See TracChangeset for help on using the changeset viewer.