- Timestamp:
- 1 Nov 2019, 11:04:53 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/students/utils.py
r15729 r15732 123 123 amount = getattr(certificate, 'school_fee_2', 0.0) 124 124 if category == 'schoolfee40': 125 amount = (amount-GATEWAY_AMT)*0.4 +GATEWAY_AMT125 amount = 0.4*amount + 0.6*GATEWAY_AMT 126 126 elif category == 'secondinstal': 127 amount = (amount-GATEWAY_AMT)*0.6 +GATEWAY_AMT127 amount = 0.6*amount + 0.4*GATEWAY_AMT 128 128 elif category == 'clearance': 129 129 try:
Note: See TracChangeset for help on using the changeset viewer.