Ignore:
Timestamp:
17 Aug 2024, 12:43:09 (3 months ago)
Author:
Henrik Bettermann
Message:

Add transcript payment categories.

File:
1 edited

Legend:

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

    r17841 r17894  
    5757    transcript_fee = schema.Float(
    5858        title = _(u'Transcript Fee'),
     59        default = 0.0,
     60        required = False,
     61        )
     62
     63    transcript_student_fee = schema.Float(
     64        title = _(u'Transcript Fee Students Copy'),
     65        default = 0.0,
     66        required = False,
     67        )
     68
     69    transcript_local_fee = schema.Float(
     70        title = _(u'Transcript Fee Local Copy'),
     71        default = 0.0,
     72        required = False,
     73        )
     74
     75    transcript_inter_fee = schema.Float(
     76        title = _(u'Transcript Fee International Copy'),
    5977        default = 0.0,
    6078        required = False,
Note: See TracChangeset for help on using the changeset viewer.