Ignore:
Timestamp:
11 Nov 2015, 13:40:53 (9 years ago)
Author:
Henrik Bettermann
Message:

Determine gateway amount for amounts <= 2000 Naira.

Fix note on payment slip.

File:
1 edited

Legend:

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

    r13425 r13437  
    146146            welfare_fee = gateway_net_amt(academic_session.welfare_fee)
    147147            union_fee = gateway_net_amt(academic_session.union_fee)
    148             text += ('School Fee'
    149                      ', %s Naira Students\' Union Dues'
    150                      ', %s Naira Student Welfare Assurance Fee'
     148            text += ('School Fee, '
     149                     '%s Naira Students\' Union Dues, '
     150                     '%s Naira Student Welfare Assurance Fee and '
    151151                     % (union_fee, welfare_fee))
    152152        elif self.context.p_category in (
     
    154154            matric_gown_fee = gateway_net_amt(academic_session.matric_gown_fee)
    155155            lapel_fee = gateway_net_amt(academic_session.lapel_fee)
    156             text += ('Acceptance Fee'
    157                      ', %s Naira Matriculation Gown Fee'
    158                      ', %s Naira Lapel/File Fee'
     156            text += ('Acceptance Fee, '
     157                     '%s Naira Matriculation Gown Fee, '
     158                     '%s Naira Lapel/File Fee and '
    159159                     % (matric_gown_fee, lapel_fee))
    160         return text + ' and 250.0 Naira Transaction Charge.'
     160        return text + '250.0 Naira Transaction Charge.'
    161161
    162162class CustomStudyLevelDisplayFormPage(StudyLevelDisplayFormPage):
Note: See TracChangeset for help on using the changeset viewer.