Changeset 13382
- Timestamp:
- 2 Nov 2015, 15:44:52 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interswitch/browser.py
r13381 r13382 134 134 student = self.student 135 135 136 if school(student) == 'PT': 137 self.product_id = PRODUCT_ID_PT 138 else: 139 self.product_id = PRODUCT_ID_REGULAR 140 136 141 # To guarantee that cleared students pay both acceptance fee 137 142 # and school fees, the page can only be accessed … … 168 173 # PT 169 174 if school(student) == 'pt': 170 product_id = PRODUCT_ID_PT171 175 if self.context.p_category == 'schoolfee': 172 176 xmldict['institution_bank_id'] = '7' … … 234 238 # REGULAR 235 239 else: 236 product_id = PRODUCT_ID_REGULAR237 240 if self.context.p_category == 'schoolfee': 238 241 self.pay_item_id = '101' … … 337 340 hashargs = ( 338 341 self.context.p_id + 339 product_id +342 self.product_id + 340 343 self.pay_item_id + 341 344 str(int(self.amount_auth)) +
Note: See TracChangeset for help on using the changeset viewer.