Ignore:
Timestamp:
27 Mar 2023, 13:22:52 (20 months ago)
Author:
Henrik Bettermann
Message:

Hostel fee is paid by instalments too.

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

Legend:

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

    r17332 r17364  
    3838
    3939    booking_fee = schema.Float(
    40         title = _(u'Bed Booking Fee'),
     40        title = _(u'Bed Booking Fee (n/a)'),
    4141        default = 0.0,
    4242        required = False,
     
    4444
    4545    maint_fee = schema.Float(
    46         title = _(u'Rent (fallback)'),
     46        title = _(u'Rent (n/a)'),
     47        default = 0.0,
     48        required = False,
     49        )
     50
     51    hostel_fee = schema.Float(
     52        title = _(u'Hostel Fee (Total)'),
     53        default = 0.0,
     54        required = False,
     55        )
     56
     57    hostel_fee_1 = schema.Float(
     58        title = _(u'Hostel Fee (1st Instalment)'),
     59        default = 0.0,
     60        required = False,
     61        )
     62
     63    hostel_fee_2 = schema.Float(
     64        title = _(u'Hostel Fee (2nd Instalment)'),
    4765        default = 0.0,
    4866        required = False,
     
    6381    transfer_fee = schema.Float(
    6482        title = _(u'Transfer Fee'),
    65         default = 0.0,
    66         required = False,
    67         )
    68 
    69     hostel_fee = schema.Float(
    70         title = _(u'Hostel Fee'),
    7183        default = 0.0,
    7284        required = False,
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/utils/utils.py

    r17332 r17364  
    6060        'secondinstal': 'School Fee (34% - 2nd instalment)',
    6161        'clearance': 'Acceptance Fee',
    62         'hostel':'Hostel Fee',
     62        'hostel':'Hostel Fee (Total)',
     63        'hostel_1':'Hostel Fee (1st instalment)',
     64        'hostel_2':'Hostel Fee (2nd instalment)',
    6365        #'bed_allocation': 'Bed Allocation Fee',
    6466        #'hostel_maintenance': 'Hostel Maintenance Fee',
     
    7779        'schoolfee_1': 'School Fee (66% - 1st instalment)',
    7880        'secondinstal': 'School Fee (34% - 2nd instalment)',
    79         'hostel':'Hostel Fee',
     81        'hostel':'Hostel Fee (Total)',
     82        'hostel_1':'Hostel Fee (1st instalment)',
     83        'hostel_2':'Hostel Fee (2nd instalment)',
    8084        'resit': 'Resit Fee',
    8185        }
Note: See TracChangeset for help on using the changeset viewer.