Ignore:
Timestamp:
14 Dec 2016, 16:57:13 (8 years ago)
Author:
Henrik Bettermann
Message:

Implement payment by instalments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/utils/utils.py

    r14336 r14344  
    1818"""Customize general helper utilities for Kofa.
    1919"""
     20from copy import deepcopy
    2021from kofacustom.nigeria.utils.utils import NigeriaKofaUtils
    2122
     
    4344        'no': 'no application',
    4445        }
     46
     47    PAYMENT_CATEGORIES = {
     48        'schoolfee': 'School Fee (total)',
     49        'schoolfee_1': 'School Fee (1st instalment)',
     50        'schoolfee_2': 'School Fee (2nd instalment)',
     51        'clearance': 'Acceptance Fee',
     52        #'bed_allocation': 'Bed Allocation Fee',
     53        #'hostel_maintenance': 'Hostel Maintenance Fee',
     54        #'transfer': 'Transfer Fee',
     55        #'gown': 'Gown Hire Fee',
     56        'application': 'Application Fee',
     57        #'transcript': 'Transcript Fee',
     58        #'late_registration': 'Late Course Registration Fee'
     59        }
     60
     61    SELECTABLE_PAYMENT_CATEGORIES = deepcopy(PAYMENT_CATEGORIES)
Note: See TracChangeset for help on using the changeset viewer.