Ignore:
Timestamp:
9 Feb 2022, 16:51:06 (3 years ago)
Author:
Henrik Bettermann
Message:

Add payment category.

Location:
main/kofacustom.edocons/trunk/src/kofacustom/edocons
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/interfaces.py

    r16698 r16787  
    6767        )
    6868
     69    hostel_fee = schema.Float(
     70        title = _(u'Hostel Fee'),
     71        default = 0.0,
     72        required = False,
     73        )
     74
    6975    interswitch_enabled = schema.Bool(
    7076        title = _(u'Interswitch Collegepay integration enabled'),
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/utils/utils.py

    r16712 r16787  
    2929        'secondinstal': 'School Fee (34% - 2nd instalment)',
    3030        'clearance': 'Acceptance Fee',
     31        'hostel_fee':'Hostel Fee',
    3132        #'bed_allocation': 'Bed Allocation Fee',
    3233        #'hostel_maintenance': 'Hostel Maintenance Fee',
     
    4445        'schoolfee_1': 'School Fee (66% - 1st instalment)',
    4546        'secondinstal': 'School Fee (34% - 2nd instalment)',
     47        'hostel_fee':'Hostel Fee',
    4648        }
    4749
     
    5153    PREVIOUS_PAYMENT_CATEGORIES = {
    5254        'schoolfee': 'School Fee',
     55        'hostel_fee':'Hostel Fee',
    5356        }
    5457
     
    5962    BALANCE_PAYMENT_CATEGORIES = {
    6063        'schoolfee': 'School Fee',
     64        'hostel_fee':'Hostel Fee',
    6165        }
    6266
Note: See TracChangeset for help on using the changeset viewer.