Ignore:
Timestamp:
1 Nov 2019, 16:19:17 (5 years ago)
Author:
Henrik Bettermann
Message:

See previous revision.

File:
1 edited

Legend:

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

    r15703 r15737  
    158158    pharmlab_fee = schema.Float(
    159159        title = _(u'Pharmacy Lab Support Fee'),
     160        default = 0.0,
     161        required = False,
     162        )
     163
     164    lo_ident_fee = schema.Float(
     165        title = _(u'Letter of Identification Fee'),
     166        default = 0.0,
     167        required = False,
     168        )
     169
     170    change_course_fee = schema.Float(
     171        title = _(u'Change of Course Fee'),
     172        default = 0.0,
     173        required = False,
     174        )
     175
     176    make_up_fee = schema.Float(
     177        title = _(u'Make-up Fee'),
     178        default = 0.0,
     179        required = False,
     180        )
     181
     182    iuits_fee = schema.Float(
     183        title = _(u'IUITS Fee'),
     184        default = 0.0,
     185        required = False,
     186        )
     187
     188    fine_fee = schema.Float(
     189        title = _(u'Fine'),
    160190        default = 0.0,
    161191        required = False,
Note: See TracChangeset for help on using the changeset viewer.