Ignore:
Timestamp:
6 Jun 2016, 11:51:58 (8 years ago)
Author:
Henrik Bettermann
Message:

Add penalty fees for late school fee payment.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.fceokene/trunk/src/waeup/fceokene/interfaces.py

    r11919 r13881  
    6363        )
    6464
     65    penalty_ug_ft = schema.Float(
     66        title = _(u'UG Full-Time Penalty Fee'),
     67        default = 0.0,
     68        required = False,
     69        )
     70
     71    penalty_nce_ft = schema.Float(
     72        title = _(u'NCE Full-Time Penalty Fee'),
     73        default = 0.0,
     74        required = False,
     75        )
     76
     77    penalty_nce_pt = schema.Float(
     78        title = _(u'NCE Sandwich and Part-Time Penalty Fee'),
     79        default = 0.0,
     80        required = False,
     81        )
     82
     83    penalty_prence = schema.Float(
     84        title = _(u'Pre-NCE Penalty Fee'),
     85        default = 0.0,
     86        required = False,
     87        )
     88
    6589    def getSessionString():
    6690        """Returns the session string from the vocabulary.
Note: See TracChangeset for help on using the changeset viewer.