Changeset 17114 for main/kofacustom.unidel/trunk/src/kofacustom/unidel
- Timestamp:
- 4 Oct 2022, 11:45:22 (2 years ago)
- Location:
- main/kofacustom.unidel/trunk/src/kofacustom/unidel
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.unidel/trunk/src/kofacustom/unidel/applicants/utils.py
r17058 r17114 35 35 'jupeb': ['JUPEB Pre-Degree (Foundation) Studies', 'PRE'], 36 36 'pre': ['Pre-Degree (Foundation) Studies', 'PRE'], 37 'dp': ['Diploma Programmes', 'DP'], 38 'de_ft': ['Direct Entry Full-Time Programmes', 'DEFT'], 39 'de_pt': ['Direct Entry Part-Time Programmes', 'DEPT'], 37 40 } -
main/kofacustom.unidel/trunk/src/kofacustom/unidel/interswitch/browser.py
r17063 r17114 91 91 xmldict['institution_acct'] = '1216063205' 92 92 xmldict['institution_bank_id'] = '117' 93 if student.is_jupeb: 94 xmldict['institution_acct'] = '1011431799' 93 95 if self.context.p_category == 'schoolfee': 94 96 provider_amt = 2800.0 … … 96 98 xmldict['institution_acct'] = '1011739172' 97 99 xmldict['institution_bank_id'] = '117' 100 if self.context.student.current_mode.startswith('dp_'): 101 pass # probably different account?! 98 102 if self.context.p_category == 'hostel_maintenance': 99 103 xmldict['institution_acct'] = '1012551384' … … 184 188 xmldict['institution_acct'] = '1216063205' 185 189 xmldict['institution_bank_id'] = '117' 186 if self.context.__parent__.__parent__.prefix in ('pre', 'jupeb'): 190 if self.context.__parent__.__parent__.prefix in ( 191 'pre', 'jupeb', 'dp_ft', 'dp_pt'): 187 192 xmldict['institution_acct'] = '1011431799' 188 193 xmldict['institution_bank_id'] = '117' -
main/kofacustom.unidel/trunk/src/kofacustom/unidel/students/student.py
r16721 r17114 43 43 return False 44 44 45 @property 46 def is_jupeb(self): 47 if self.faccode.startswith('JUPEB'): 48 return True 49 return False 45 50 46 51 # Set all attributes of Student required in IStudent as field -
main/kofacustom.unidel/trunk/src/kofacustom/unidel/utils/utils.py
r17062 r17114 67 67 'pre': 'Pre-Degree Studies', 68 68 'jupeb': 'JUPEB Pre-Degree (Foundation) Studies', 69 'dp': 'Diploma Programmes', 70 'de_ft': 'Direct Entry Full-Time Programmes', 71 'de_pt': 'Direct Entry Part-Time Programmes', 69 72 } 70 73
Note: See TracChangeset for help on using the changeset viewer.