Changeset 6911


Ignore:
Timestamp:
19 Oct 2011, 12:32:30 (13 years ago)
Author:
Henrik Bettermann
Message:

Reduce fee for some students.

Disable also acceptance fee payment.

Location:
WAeUP_SRP/trunk/skins/waeup_futminna
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/skins/waeup_futminna/getPaymentsFolderInfo.py

    r6910 r6911  
    7575if payment_disabled:
    7676    info['payment_method'] = ""
     77    info['acceptance'] = False
    7778
    7879# end customization
  • WAeUP_SRP/trunk/skins/waeup_futminna/getSchoolFee.py

    r5795 r6911  
    1313"""
    1414
    15 late_registration_fee = 5000
     15late_registration_fee = 0
    1616
    1717d = {}
     
    2222        if brain.entry_mode == 'rmd_ft':
    2323            d['lrf'] = late_registration_fee
    24             d['all'] = 80200 
     24            d['all'] = 80200
    2525        else:
    2626            d['lrf'] = late_registration_fee
    27             d['all'] = 74200 
    28            
     27            d['all'] = 74200
     28
    2929    # fresh
    3030    elif brain.review_state == 'cleared_and_validated':
    3131        if brain.mode == 'jm_ft':
    3232            d['lrf'] = late_registration_fee
    33             d['all'] = 72700 
     33            d['all'] = 72700
    3434        elif brain.lga == 'foreigner':
    3535            d['lrf'] = late_registration_fee
    36             d['all'] = 131500 
     36            d['all'] = 131500
    3737        else:
    3838            d['lrf'] = late_registration_fee
    39             d['all'] = 41500
     39            d['all'] = 26500 # School Fee reduced by 15000
    4040    # returning
    4141    elif brain.review_state == 'returning':
    4242        if brain.mode == 'jm_ft':
    4343            d['lrf'] = late_registration_fee
    44             d['all'] = 32500 
     44            d['all'] = 32500
    4545        elif brain.lga == 'foreigner':
    4646            d['lrf'] = late_registration_fee
    47             d['all'] = 109500 
     47            d['all'] = 109500
    4848        else:
    4949            d['lrf'] = late_registration_fee
    50             d['all'] = 19500 
     50            d['all'] = 19500
    5151    else:
    5252        d['all'] = 0
     
    6161
    6262return d
    63 
Note: See TracChangeset for help on using the changeset viewer.