Changeset 17952 for main/kofacustom.unidel
- Timestamp:
- 5 Nov 2024, 11:51:11 (16 hours ago)
- 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 43 43 'law': ['Certificate in Law Programme', 'CL'], 44 44 'pde': ['Professional Diploma in Education Programmes', 'PDE'], 45 'trcdeg': ['TRCN Degree Programmes', 'TRCD'], 46 'trcnce': ['TRCN NCE Programmes', 'TRCN'], 45 47 } 46 48 -
main/kofacustom.unidel/trunk/src/kofacustom/unidel/interswitch/browser.py
r17949 r17952 118 118 xmldict['institution_acct'] = '2001627961' 119 119 xmldict['institution_bank_id'] = '8' 120 elif student.current_mode == 'pde':120 elif student.current_mode in ('pde', 'trc'): 121 121 xmldict['institution_acct'] = '1010957205' 122 122 xmldict['institution_bank_id'] = '117' … … 255 255 xmldict['institution_acct'] = '0093658062' 256 256 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'): 258 258 xmldict['institution_acct'] = '1010957205' 259 259 xmldict['institution_bank_id'] = '117' -
main/kofacustom.unidel/trunk/src/kofacustom/unidel/utils/utils.py
r17949 r17952 87 87 'nce_pt': 'NCE Part-Time', 88 88 'pde': 'Professional Diploma in Education Programmes', 89 'trc': 'TRCN Programmes', 89 90 } 90 91 … … 102 103 'law': 'Certificate in Law Programme', 103 104 'pde': 'Professional Diploma in Education Programmes', 105 'trcdeg': 'TRCN Degree Programmes', 106 'trcnce': 'TRCN NCE Programmes', 104 107 } 105 108
Note: See TracChangeset for help on using the changeset viewer.