Changeset 17140 for main/waeup.uniben/trunk/src
- Timestamp:
- 24 Oct 2022, 08:01:20 (2 years ago)
- Location:
- main/waeup.uniben/trunk/src/waeup/uniben
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/applicants/utils.py
r17048 r17140 66 66 'tscs': ['Transcript (with student record)', 'TRS'], 67 67 'flc': ['French Language Centre', 'FR'], 68 'cdl': ['Centre For Distance Learning Programmes', 'CDL'], 68 69 } 69 70 -
main/waeup.uniben/trunk/src/waeup/uniben/remita/browser.py
r17037 r17140 93 93 if student.is_jupeb: 94 94 return '1946888188' 95 if student.current_mode == 'cdl': 96 return '9541632464' 95 97 if self.context.p_category == 'bed_allocation': 96 98 if student.is_postgrad: … … 110 112 if student.current_mode == 'ug_pt': 111 113 return '2072765946' 114 if student.current_mode == 'cdl': 115 return '8242101527' 112 116 return '2067089446' 113 117 if self.context.p_category == 'jupeb': … … 286 290 return '2067086388' 287 291 if applicant.__parent__.prefix in ('sandwich'): 288 return '2072760654' 292 return '2072760654' 293 if applicant.__parent__.prefix == 'cdl': 294 return '8197875656' 289 295 return '' 290 296 -
main/waeup.uniben/trunk/src/waeup/uniben/utils/utils.py
r17052 r17140 200 200 'found': 'Foundation', 201 201 'no': 'no application', 202 'special_ft': 'Special Full-Time' 203 } 202 'special_ft': 'Special Full-Time', 203 'cdl': 'Distance Learning', 204 }
Note: See TracChangeset for help on using the changeset viewer.