Ignore:
Timestamp:
10 Dec 2021, 13:54:16 (3 years ago)
Author:
Henrik Bettermann
Message:

Change acceptance fee computation algorithm.

File:
1 edited

Legend:

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

    r16725 r16738  
    3232
    3333    clearance_fee = schema.Float(
    34         title = _(u'Acceptance Fee'),
     34        title = _(u'Acceptance Fee (default)'),
    3535        default = 0.0,
    3636        required = False,
     
    6767        )
    6868
    69 
    7069    # Additional fees in custom package
     70
     71    hnd_clearance_fee = schema.Float(
     72        title = _(u'HND Non-Local Acceptance Fee'),
     73        default = 0.0,
     74        required = False,
     75        )
     76
     77    nd_clearance_fee = schema.Float(
     78        title = _(u'ND Non-Local Acceptance Fee'),
     79        default = 0.0,
     80        required = False,
     81        )
     82
     83    hndlocal_clearance_fee = schema.Float(
     84        title = _(u'HND Local Acceptance Fee'),
     85        default = 0.0,
     86        required = False,
     87        )
     88
     89    ndlocal_clearance_fee = schema.Float(
     90        title = _(u'ND Local Acceptance Fee'),
     91        default = 0.0,
     92        required = False,
     93        )
    7194
    7295    gown_fee = schema.Float(
Note: See TracChangeset for help on using the changeset viewer.