Changeset 17952


Ignore:
Timestamp:
5 Nov 2024, 11:51:11 (13 hours ago)
Author:
Henrik Bettermann
Message:

Add TRC programmes.

Location:
main/kofacustom.unidel/trunk/src/kofacustom/unidel
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/applicants/utils.py

    r17949 r17952  
    4343        'law': ['Certificate in Law Programme', 'CL'],
    4444        'pde': ['Professional Diploma in Education Programmes', 'PDE'],
     45        'trcdeg': ['TRCN Degree Programmes', 'TRCD'],
     46        'trcnce': ['TRCN NCE Programmes', 'TRCN'],
    4547        }
    4648
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/interswitch/browser.py

    r17949 r17952  
    118118                xmldict['institution_acct'] = '2001627961'
    119119                xmldict['institution_bank_id'] = '8'
    120             elif student.current_mode == 'pde':
     120            elif student.current_mode in ('pde', 'trc'):
    121121                xmldict['institution_acct'] = '1010957205'
    122122                xmldict['institution_bank_id'] = '117'
     
    255255            xmldict['institution_acct'] = '0093658062'
    256256            xmldict['institution_bank_id'] = '121'
    257         if self.context.__parent__.__parent__.prefix in ('pde',):
     257        if self.context.__parent__.__parent__.prefix in ('pde', 'trcdeg', 'trcnce'):
    258258            xmldict['institution_acct'] = '1010957205'
    259259            xmldict['institution_bank_id'] = '117'
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/utils/utils.py

    r17949 r17952  
    8787        'nce_pt': 'NCE Part-Time',
    8888        'pde': 'Professional Diploma in Education Programmes',
     89        'trc': 'TRCN Programmes',
    8990        }
    9091
     
    102103        'law': 'Certificate in Law Programme',
    103104        'pde': 'Professional Diploma in Education Programmes',
     105        'trcdeg': 'TRCN Degree Programmes',
     106        'trcnce': 'TRCN NCE Programmes',
    104107        }
    105108
Note: See TracChangeset for help on using the changeset viewer.