Ignore:
Timestamp:
7 Aug 2013, 11:42:54 (11 years ago)
Author:
Henrik Bettermann
Message:

Adjust to base package.

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

Legend:

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

    r9435 r10469  
    6262        )
    6363
     64    transcript_fee = schema.Float(
     65        title = _(u'Transcript Fee'),
     66        default = 0.0,
     67        required = False,
     68        )
     69
    6470    # Additional fees in custom package
    6571
  • main/waeup.uniben/trunk/src/waeup/uniben/students/utils.py

    r9971 r10469  
    8888        if category == 'transfer':
    8989            amount = academic_session.transfer_fee
     90        elif category == 'transcript':
     91            amount = academic_session.transcript_fee
    9092        elif category == 'gown':
    9193            amount = academic_session.gown_fee
  • main/waeup.uniben/trunk/src/waeup/uniben/utils/utils.py

    r10441 r10469  
    5959        'transfer': 'Transfer Fee',
    6060        'gown': 'Gown Hire Fee',
    61         'application': 'Application Fee'
     61        'application': 'Application Fee',
     62        'transcript': 'Transcript Fee',
    6263        }
    6364
     
    6970        'tempmaint_3': 'Clinical Hostel Maintenance Fee',
    7071        'gown': 'Gown Hire Fee',
    71         'application': 'Application Fee'
     72        'application': 'Application Fee',
     73        'transcript': 'Transcript Fee',
    7274        }
    7375
Note: See TracChangeset for help on using the changeset viewer.