Ignore:
Timestamp:
27 Oct 2016, 15:34:12 (8 years ago)
Author:
Henrik Bettermann
Message:

Add student id card fee to acceptance fee plus.

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

Legend:

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

    r14206 r14236  
    237237            matric_gown_fee = gateway_net_amt(academic_session.matric_gown_fee)
    238238            lapel_fee = gateway_net_amt(academic_session.lapel_fee)
     239            id_card_fee = gateway_net_amt(academic_session.id_card_fee)
    239240            text += ('Acceptance Fee, '
    240241                     '%s Naira Matriculation Gown Fee, '
     242                     '%s Naira Student ID Card Fee, '
    241243                     '%s Naira Lapel/File Fee and '
    242                      % (matric_gown_fee, lapel_fee))
     244                     % (matric_gown_fee, id_card_fee, lapel_fee))
    243245        return text + '250.0 Naira Transaction Charge.'
    244246
  • main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py

    r14234 r14236  
    234234            if amount in (0.0, None):
    235235                return _(u'Amount could not be determined.'), None
    236             # Add Matric Gown Fee and Lapel Fee
     236            # Add Matric Gown, Student Id Card and Lapel Fee
    237237            if category == 'clearance_incl':
    238238                amount += gateway_net_amt(academic_session.matric_gown_fee) + \
     239                    gateway_net_amt(academic_session.id_card_fee) + \
    239240                    gateway_net_amt(academic_session.lapel_fee)
    240241        elif category == 'late_registration':
  • main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py

    r14234 r14236  
    5656        'schoolfee_incl': 'School Fee + Student Union Dues + Welfare Assurance Fee',
    5757        'clearance': 'Acceptance Fee without additional fees',
    58         'clearance_incl': 'Acceptance Fee + Matric Gown Fee + Lapel/File Fee',
     58        'clearance_incl': 'Acceptance Fee + Matric Gown Fee + Lapel/File Fee + Student ID Card Fee',
    5959        'hostel_maintenance': 'Hostel Accommodation Fee',
    6060        'application': 'Application Fee',
Note: See TracChangeset for help on using the changeset viewer.