Changeset 15732 for main/kofacustom.iuokada
- Timestamp:
- 1 Nov 2019, 11:04:53 (5 years ago)
- Location:
- main/kofacustom.iuokada/trunk/src/kofacustom/iuokada
- Files:
-
- 2 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: -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/utils/utils.py
r15728 r15732 80 80 'parentsconsult': 'Parents Consultative Forum (PCF) Fee', 81 81 'pharmlab': 'Pharmacy Lab Support Fee', 82 'combi': 'Combi Payment',82 #'combi': 'Combi Payment', 83 83 } 84 84
Note: See TracChangeset for help on using the changeset viewer.