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

Hostel fee is paid by instalments too.

File:
1 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,
Note: See TracChangeset for help on using the changeset viewer.