Changeset 15283 for main/waeup.fceokene/trunk/src/waeup
- Timestamp:
- 26 Dec 2018, 12:28:55 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/students/utils.py
r14933 r15283 28 28 from waeup.kofa.browser.interfaces import IPDFCreator 29 29 from waeup.kofa.students.utils import trans 30 from waeup.fceokene.interswitch.browser import GATEWAY_AMT31 30 32 31 # Very special school fee configuration, should be moved to … … 38 37 'NCCA','NECU','NTHA','NGED','NGSE','NPES','NSPC','NENG', 39 38 'NFRE','NARB','NHAU','NIGB','NYOR','NSOS') 39 40 GATEWAY_AMT = 157.50 40 41 41 42 class CustomStudentsUtils(NigeriaStudentsUtils): … … 174 175 elif student.current_level == 100 and student.state == CLEARED: 175 176 if student.depcode in ARTS: 176 amount = 2 4215177 else: 178 amount = 2 4915177 amount = 28000 178 else: 179 amount = 28500 179 180 # SIWES Fee 180 181 if student.depcode in ('AGE', 'BED', 'FAA', 'HEC', 'CSC', 'MUS'): … … 184 185 student.state == RETURNING: 185 186 if student.depcode in ARTS: 186 amount = 15375187 else: 188 amount = 15875187 amount = 24500 188 else: 189 amount = 25000 189 190 # SIWES Fee 190 191 if student.depcode in ('AGE', 'BED', 'FAA', 'HEC', 'CSC', 'MUS'): 191 amount += 2000192 amount += 3000 192 193 # NCE III 193 194 elif student.current_level in (200, 210, 220): … … 326 327 payment.p_level = p_level 327 328 payment.p_current = p_current 328 # On June 26, 2013 FCEOkene realized that the Interswitch fee329 # is deducted from their amount. Therefore, we add this fee here.330 329 payment.amount_auth = float(amount) + GATEWAY_AMT 331 330 return None, payment
Note: See TracChangeset for help on using the changeset viewer.