- Timestamp:
- 30 Sep 2024, 16:44:34 (5 weeks ago)
- Location:
- main/kofacustom.unidel/trunk/src/kofacustom/unidel/interswitch
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.unidel/trunk/src/kofacustom/unidel/interswitch/browser.py
r17913 r17931 105 105 tech_fee = 0.0 106 106 elif self.context.p_category == 'schoolfee': 107 provider_amt = 2800.0 108 tech_fee = 1200.0 107 provider_amt = 6650.0 108 tech_fee = 2850.0 109 if student.is_fresh: 110 provider_amt = 7000.0 111 tech_fee = 3000.0 109 112 xmldict['institution_acct'] = '1011739172' 110 113 xmldict['tech_acct'] = '0213065415' … … 125 128 xmldict['institution_acct'] = '0093658062' 126 129 xmldict['institution_bank_id'] = '121' 127 elif student.faccode in ('FMED', 'FBM' ):130 elif student.faccode in ('FMED', 'FBM', 'FLW'): 128 131 xmldict['institution_acct'] = '1011274462' 129 132 elif student.certcode == 'DFFPA': -
main/kofacustom.unidel/trunk/src/kofacustom/unidel/interswitch/tests.py
r17599 r17931 78 78 self.assertEqual(self.student.current_mode, 'ug_ft') 79 79 self.assertTrue( 80 '<input type="hidden" name="amount" value=" 8425000" />' in80 '<input type="hidden" name="amount" value="9025000" />' in 81 81 self.browser.contents) 82 82 self.assertTrue(
Note: See TracChangeset for help on using the changeset viewer.