Changeset 17953 for main/waeup.uniben/trunk/src
- Timestamp:
- 11 Nov 2024, 11:57:58 (3 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/remita/browser.py
r17753 r17953 140 140 141 141 def dynamic_provider_amt(self, student): 142 if student.entry_session >= 20 16:143 return 2500.0144 return 1500.0142 if student.entry_session >= 2024: 143 return 5000.0 144 return 2000.0 145 145 146 146 @property … … 159 159 student_union = 2500.0 160 160 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 162 164 163 165 inst_amt = self.context.amount_auth - provider_amt - student_union … … 346 348 provider_amt = 2000.0 347 349 if applicant.__parent__.prefix.startswith('tsc'): 348 provider_amt = 1200.0350 provider_amt = 2500.0 349 351 if applicant.order == 'c': 350 provider_amt = 1000.0352 provider_amt = 2500.0 351 353 if applicant.__parent__.prefix.startswith('ase'): 352 provider_amt = 500.0354 provider_amt = 1000.0 353 355 if applicant.__parent__.prefix == 'pude': 354 provider_amt = 500.0356 provider_amt = 2000.0 355 357 if applicant.__parent__.prefix == 'cdl': 356 358 provider_amt = 0.0
Note: See TracChangeset for help on using the changeset viewer.