Ignore:
Timestamp:
17 May 2018, 09:01:49 (7 years ago)
Author:
Henrik Bettermann
Message:

Configure payment categories.

File:
1 edited

Legend:

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

    r10765 r15011  
    1818"""Customize general helper utilities for Kofa.
    1919"""
     20from copy import deepcopy
    2021from kofacustom.nigeria.utils.utils import NigeriaKofaUtils
    2122
     
    2425    """
    2526
     27    PAYMENT_CATEGORIES = {
     28        'schoolfee': 'School Fee',
     29        'clearance': 'Acceptance Fee',
     30        'bed_allocation': 'Accommodation Booking Fee',
     31        'hostel_maintenance': 'Hostel Maintenance Fee',
     32        'application': 'Application Fee',
     33        'ict_entre': 'ICT & Entrepreneur Fee',
     34        'logbook': 'Logbook Fee',
     35        }
     36
     37    SELECTABLE_PAYMENT_CATEGORIES = deepcopy(PAYMENT_CATEGORIES)
Note: See TracChangeset for help on using the changeset viewer.