Ignore:
Timestamp:
10 Nov 2015, 05:06:58 (9 years ago)
Author:
Henrik Bettermann
Message:

Change notre on payment slip.

File:
1 edited

Legend:

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

    r13414 r13425  
    142142        except KeyError:
    143143            academic_session = None
    144         text =  '\n\n The amounts include: '
    145         text += '250.0 Naira Transaction Charge'
     144        text =  '\n\n The Amount Authorized is inclusive of: '
    146145        if self.context.p_category == 'schoolfee_incl' and academic_session:
    147146            welfare_fee = gateway_net_amt(academic_session.welfare_fee)
    148147            union_fee = gateway_net_amt(academic_session.union_fee)
    149             text += (', %s Naira Student Welfare Assurance Fee and %s Naira Students\' Union Dues'
    150                      % (welfare_fee, union_fee))
     148            text += ('School Fee'
     149                     ', %s Naira Students\' Union Dues'
     150                     ', %s Naira Student Welfare Assurance Fee'
     151                     % (union_fee, welfare_fee))
    151152        elif self.context.p_category in (
    152153            'clearance_incl', 'clearance_medical_incl') and academic_session:
    153154            matric_gown_fee = gateway_net_amt(academic_session.matric_gown_fee)
    154155            lapel_fee = gateway_net_amt(academic_session.lapel_fee)
    155             text += (', %s Naira Matriculation Gown Fee and %s Naira Lapel/File Fee'
     156            text += ('Acceptance Fee'
     157                     ', %s Naira Matriculation Gown Fee'
     158                     ', %s Naira Lapel/File Fee'
    156159                     % (matric_gown_fee, lapel_fee))
    157         return text + '.'
     160        return text + ' and 250.0 Naira Transaction Charge.'
    158161
    159162class CustomStudyLevelDisplayFormPage(StudyLevelDisplayFormPage):
Note: See TracChangeset for help on using the changeset viewer.