Ignore:
Timestamp:
25 Aug 2020, 08:14:59 (4 years ago)
Author:
Henrik Bettermann
Message:

Add clearance fee payment category for graduating students.

Location:
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada
Files:
2 edited

Legend:

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

    r16111 r16212  
    8989
    9090    # Additional fees in custom package add here
     91
     92    grad_clearance_fee = schema.Float(
     93        title = _(u'Clearance Fee'),
     94        default = 0.0,
     95        required = False,
     96        )
    9197
    9298    registration_fee = schema.Float(
  • main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/utils/utils.py

    r16208 r16212  
    3131        'secondinstal': 'Tuition Plus (60% - 2nd instalment)',
    3232        'clearance': 'Acceptance Fee',
     33        'grad_clearance': 'Clearance Fee',
    3334        'registration': 'Registration Fee',
    3435        #'bed_allocation': 'Bed Allocation Fee',
     
    7980        'registration': 'Registration Fee',
    8081        'clearance': 'Acceptance Fee',
     82        'grad_clearance': 'Clearance Fee',
    8183        #'bed_allocation': 'Bed Allocation Fee',
    8284        #'hostel_maintenance': 'Accommodation',
     
    123125        'registration': 'Registration Fee',
    124126        'clearance': 'Acceptance Fee',
     127        'grad_clearance': 'Clearance Fee',
    125128        'application': 'Application Fee',
    126129        'late_registration': 'Late Registration Fee',
     
    147150
    148151    COMBI_PAYMENT_CATEGORIES = {
     152        'grad_clearance': 'Clearance Fee',
    149153        'late_registration': 'Late Registration Fee',
    150154        'science': 'Science Bench Fee',
Note: See TracChangeset for help on using the changeset viewer.