Changeset 17946 for main/kofacustom.unidel/trunk/src/kofacustom
- Timestamp:
- 19 Oct 2024, 13:44:19 (3 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
r17945 r17946 113 113 xmldict['union_acct'] = '1011438901' 114 114 xmldict['union_bank_id'] = '117' 115 if student.current_mode == 'ug_ft':116 union_due = 1500.0115 #if student.current_mode == 'ug_ft': 116 # union_due = 1500.0 117 117 if student.current_mode.startswith('dp'): 118 118 xmldict['institution_acct'] = '2001627961' -
main/kofacustom.unidel/trunk/src/kofacustom/unidel/interswitch/tests.py
r17937 r17946 77 77 self.browser.contents) 78 78 self.assertEqual(self.student.current_mode, 'ug_ft') 79 self.assert True(79 self.assertFalse( 80 80 '<input type="hidden" name="amount" value="9175000" />' in 81 81 self.browser.contents) 82 82 self.assertTrue( 83 '<input type="hidden" name="amount" value="9025000" />' in 84 self.browser.contents) 85 self.assertTrue( 83 86 'item_name="School Fee" item_amt="8000000" bank_id="117" acct_num="1011739172"' in 84 87 self.browser.contents) 85 self.assert True(88 self.assertFalse( 86 89 '<item_detail item_id="4" item_name="Student Union Due" item_amt="150000" bank_id="117" acct_num="1011438901" />' in 87 90 self.browser.contents)
Note: See TracChangeset for help on using the changeset viewer.