- Timestamp:
- 7 Mar 2025, 02:32:15 (3 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/remita/browser.py
r18011 r18032 154 154 reduced_inst_amt = 0.0 155 155 lab_amt = 0.0 156 if self.context.p_category in ('schoolfee', 'schoolfee_1') and \ 157 not self.context.p_item == 'Balance': 156 if self.context.p_category in ('schoolfee', 'schoolfee_1'): 158 157 provider_amt = self.dynamic_provider_amt(self.context.student) 159 158 if self.context.student.current_mode == 'ug_ft': … … 163 162 elif self.context.p_category == 'bed_allocation': 164 163 provider_amt = 1000.0 164 if self.context.p_item == 'Balance': 165 provider_amt = 0.0 165 166 166 167 inst_amt = self.context.amount_auth - provider_amt - student_union … … 205 206 reduced_inst_amt = 0.4 * inst_amt 206 207 jupeb_amt = 0.6 * inst_amt 207 elif self.context.p_category in ('schoolfee', 'schoolfee_1') and \ 208 not self.context.p_item == 'Balance': 208 elif self.context.p_category in ('schoolfee', 'schoolfee_1'): 209 209 provider_amt = self.dynamic_provider_amt(self.context.student) 210 210 #if self.context.student.depcode in ('AGR_JUP','EDU_JUP','ENG_JUP', … … 213 213 reduced_inst_amt = 0.4 * (inst_amt - lab_amt) 214 214 jupeb_amt = 0.6 * (inst_amt - lab_amt) + lab_amt 215 if self.context.p_item == 'Balance': 216 provider_amt = 0.0 215 217 lineitems = ( 216 218 {"lineItemsId":"itemid1","beneficiaryName":"Uniben",
Note: See TracChangeset for help on using the changeset viewer.