Ignore:
Timestamp:
28 Oct 2016, 15:11:47 (8 years ago)
Author:
Henrik Bettermann
Message:

Revert changes from r14236
.

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

    r14236 r14239  
    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)
    240239            text += ('Acceptance Fee, '
    241240                     '%s Naira Matriculation Gown Fee, '
    242                      '%s Naira Student ID Card Fee, '
    243241                     '%s Naira Lapel/File Fee and '
    244                      % (matric_gown_fee, id_card_fee, lapel_fee))
     242                     % (matric_gown_fee, lapel_fee))
    245243        return text + '250.0 Naira Transaction Charge.'
    246244
  • main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py

    r14238 r14239  
    234234            if amount in (0.0, None):
    235235                return _(u'Amount could not be determined.'), None
    236             # Add Matric Gown, Student Id Card and Lapel Fee
     236            # Add Matric Gown Fee 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) + \
    240239                    gateway_net_amt(academic_session.lapel_fee)
    241240        elif category == 'late_registration':
  • main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py

    r14236 r14239  
    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 + Student ID Card Fee',
     58        'clearance_incl': 'Acceptance Fee + Matric Gown Fee + Lapel/File Fee',
    5959        'hostel_maintenance': 'Hostel Accommodation Fee',
    6060        'application': 'Application Fee',
Note: See TracChangeset for help on using the changeset viewer.