Ignore:
Timestamp:
11 Nov 2024, 11:57:58 (3 days ago)
Author:
Henrik Bettermann
Message:

Change provider surcharges.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.uniben/trunk/src/waeup/uniben/remita/browser.py

    r17753 r17953  
    140140
    141141    def dynamic_provider_amt(self, student):
    142         if student.entry_session >= 2016:
    143             return 2500.0
    144         return 1500.0
     142        if student.entry_session >= 2024:
     143            return 5000.0
     144        return 2000.0
    145145
    146146    @property
     
    159159                student_union = 2500.0
    160160        elif self.context.p_category == 'clearance':
    161             provider_amt = self.dynamic_provider_amt(self.context.student)
     161            provider_amt = 5000.0
     162        elif self.context.p_category == 'bed_allocation':
     163            provider_amt = 1000.0
    162164
    163165        inst_amt = self.context.amount_auth - provider_amt - student_union
     
    346348            provider_amt = 2000.0
    347349        if applicant.__parent__.prefix.startswith('tsc'):
    348             provider_amt = 1200.0
     350            provider_amt = 2500.0
    349351            if applicant.order == 'c':
    350                 provider_amt = 1000.0
     352                provider_amt = 2500.0
    351353        if applicant.__parent__.prefix.startswith('ase'):
    352             provider_amt = 500.0
     354            provider_amt = 1000.0
    353355        if applicant.__parent__.prefix == 'pude':
    354             provider_amt = 500.0
     356            provider_amt = 2000.0
    355357        if applicant.__parent__.prefix == 'cdl':
    356358            provider_amt = 0.0
Note: See TracChangeset for help on using the changeset viewer.