Changeset 13413 for main/waeup.aaue


Ignore:
Timestamp:
8 Nov 2015, 07:20:29 (9 years ago)
Author:
Henrik Bettermann
Message:

Remove duplicate gown fee payment category.

Location:
main/waeup.aaue/trunk/src/waeup/aaue
Files:
3 edited

Legend:

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

    r13410 r13413  
    7777    maint_fee = schema.Float(
    7878        title = _(u'Maintenance Fee'),
    79         default = 0.0,
    80         required = True,
    81         )
    82 
    83     gown_fee = schema.Float(
    84         title = _(u'Gown Fee'),
    8579        default = 0.0,
    8680        required = True,
  • main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py

    r13410 r13413  
    116116        elif category == 'transcript':
    117117            amount = academic_session.transcript_fee
    118         elif category == 'gown':
    119             amount = academic_session.gown_fee
    120118        elif category == 'bed_allocation':
    121119            amount = academic_session.booking_fee
  • main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py

    r13412 r13413  
    3636        'hostel_maintenance': 'Hostel Maintenance Fee',
    3737        'application': 'Application Fee',
    38         'gown': 'Gown Hire Fee',
    3938        'bed_allocation': 'Bed Allocation Fee',
    4039        'transfer': 'Transfer Fee',
     
    5756        'hostel_maintenance': 'Hostel Maintenance Fee',
    5857        'application': 'Application Fee',
    59         #'gown': 'Gown Hire Fee',
    6058        #'bed_allocation': 'Bed Allocation Fee',
    6159        #'transfer': 'Transfer Fee',
Note: See TracChangeset for help on using the changeset viewer.