- Timestamp:
- 12 Dec 2012, 10:49:16 (12 years ago)
- Location:
- main/waeup.uniben/trunk/src/waeup/uniben
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/interswitch/browser.py
r9783 r9796 122 122 self.pay_item_id = '5702' 123 123 provider_amt = 1500.0 124 if student.current_mode == 'pg_ft': 124 if student.faccode == 'FCETA': 125 xmldict['institution_acct'] = '5210007943' 126 xmldict['institution_bank_id'] = '51' 127 elif student.current_mode == 'pg_ft': 125 128 xmldict['institution_acct'] = '5330832799' 126 129 xmldict['institution_bank_id'] = '51' -
main/waeup.uniben/trunk/src/waeup/uniben/interswitch/tests.py
r9775 r9796 28 28 # If you enable this, please make sure the external services 29 29 # do exist really and are not bothered by being spammed by a test programme. 30 EXTERNAL_TESTS = False30 EXTERNAL_TESTS = True 31 31 32 32 def external_test(func): -
main/waeup.uniben/trunk/src/waeup/uniben/students/utils.py
r9728 r9796 107 107 amount = 9650.0 108 108 elif category == 'clearance': 109 try: 110 p_item = student['studycourse'].certificate.code 111 except (AttributeError, TypeError): 109 p_item = student.certcode 110 if p_item is None: 112 111 return _('Study course data are incomplete.'), None 113 if p_item in ('BSCANA', 'BSCMBC', 'BMLS', 'BSCNUR', 'BSCPHS', 'BDS', 112 if student.faccode == 'FCETA': 113 amount = 22500.0 114 elif p_item in ('BSCANA', 'BSCMBC', 'BMLS', 'BSCNUR', 'BSCPHS', 'BDS', 114 115 'MBBSMED', 'MBBSNDU'): 115 116 amount = 65000.0
Note: See TracChangeset for help on using the changeset viewer.