Changeset 17949 for main/kofacustom.unidel/trunk/src
- Timestamp:
- 29 Oct 2024, 18:49:32 (8 days 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
r17652 r17949 42 42 'df': ['Digital Forensic for Professionals and Academia', 'DF'], 43 43 'law': ['Certificate in Law Programme', 'CL'], 44 'pde': ['Professional Diploma in Education Programmes', 'PDE'], 44 45 } 45 46 -
main/kofacustom.unidel/trunk/src/kofacustom/unidel/interswitch/browser.py
r17946 r17949 118 118 xmldict['institution_acct'] = '2001627961' 119 119 xmldict['institution_bank_id'] = '8' 120 if student.faccode in ('PRE', 'JUPEB'): 120 elif student.current_mode == 'pde': 121 xmldict['institution_acct'] = '1010957205' 122 xmldict['institution_bank_id'] = '117' 123 elif student.faccode in ('PRE', 'JUPEB'): 121 124 xmldict['institution_acct'] = '2001627961' 122 125 xmldict['institution_bank_id'] = '8' … … 252 255 xmldict['institution_acct'] = '0093658062' 253 256 xmldict['institution_bank_id'] = '121' 257 if self.context.__parent__.__parent__.prefix in ('pde',): 258 xmldict['institution_acct'] = '1010957205' 259 xmldict['institution_bank_id'] = '117' 260 provider_amt = 500.0 254 261 xmldict['detail_ref'] = self.context.p_id 255 262 xmldict['provider_amt'] = 100 * provider_amt -
main/kofacustom.unidel/trunk/src/kofacustom/unidel/utils/utils.py
r17935 r17949 86 86 'nce_ft': 'NCE Full-Time', 87 87 'nce_pt': 'NCE Part-Time', 88 'pde': 'Professional Diploma in Education Programmes', 88 89 } 89 90 … … 100 101 'df': 'Digital Forensic for Professionals and Academia', 101 102 'law': 'Certificate in Law Programme', 103 'pde': 'Professional Diploma in Education Programmes', 102 104 } 103 105
Note: See TracChangeset for help on using the changeset viewer.