- Timestamp:
- 13 Jan 2023, 08:31:28 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.unidel/trunk/src/kofacustom/unidel/interswitch/browser.py
r17203 r17278 91 91 xmldict['institution_acct'] = '1216063205' 92 92 xmldict['institution_bank_id'] = '117' 93 if student.is_jupeb: 94 xmldict['institution_acct'] = '1011431799' 95 elif student.faccode == 'PRE': 93 if student.faccode in ('PRE', 'JUPEB'): 96 94 xmldict['institution_acct'] = '1011431799' 97 95 if self.context.p_category == 'schoolfee': … … 100 98 xmldict['institution_acct'] = '1011739172' 101 99 xmldict['institution_bank_id'] = '117' 102 if student. is_jupeb or student.faccode == 'PRE':100 if student.faccode in ('PRE', 'JUPEB'): 103 101 xmldict['institution_acct'] = '2001627961' 104 102 xmldict['institution_bank_id'] = '8' … … 192 190 xmldict['institution_bank_id'] = '117' 193 191 if self.context.__parent__.__parent__.prefix in ( 194 'pre', 'jupeb', 'dpft', 'dppt', 'ugpt'): 192 'pre', 'jupeb', 'dpft', 'dppt', 193 'ugpt', 'ijmb'): 195 194 xmldict['institution_acct'] = '1011431799' 196 195 xmldict['institution_bank_id'] = '117'
Note: See TracChangeset for help on using the changeset viewer.