Changeset 17140


Ignore:
Timestamp:
24 Oct 2022, 08:01:20 (2 years ago)
Author:
Henrik Bettermann
Message:

Reimita configuration for CDL.

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  
    6666        'tscs': ['Transcript (with student record)', 'TRS'],
    6767        'flc': ['French Language Centre', 'FR'],
     68        'cdl': ['Centre For Distance Learning Programmes', 'CDL'],
    6869        }
    6970
  • main/waeup.uniben/trunk/src/waeup/uniben/remita/browser.py

    r17037 r17140  
    9393            if student.is_jupeb:
    9494                return '1946888188'
     95            if student.current_mode == 'cdl':
     96                return '9541632464'
    9597        if self.context.p_category == 'bed_allocation':
    9698            if student.is_postgrad:
     
    110112            if student.current_mode == 'ug_pt':
    111113                return '2072765946'
     114            if student.current_mode == 'cdl':
     115                return '8242101527'
    112116            return '2067089446'
    113117        if self.context.p_category == 'jupeb':
     
    286290            return '2067086388'   
    287291        if applicant.__parent__.prefix in ('sandwich'):
    288             return '2072760654'                 
     292            return '2072760654'
     293        if applicant.__parent__.prefix == 'cdl':
     294            return '8197875656'
    289295        return ''
    290296
  • main/waeup.uniben/trunk/src/waeup/uniben/utils/utils.py

    r17052 r17140  
    200200        'found': 'Foundation',
    201201        '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.