Changeset 11797
- Timestamp:
- 19 Sep 2014, 16:00:43 (10 years ago)
- Location:
- main/waeup.kwarapoly/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kwarapoly/trunk/CHANGES.txt
r11793 r11797 6 6 7 7 * Until 14/9/2014 we have not sent split amount data for pre applications. 8 To compenstate the loss in 2014 we temporarily double the split amounts9 See ticket 75.8 To compenstate the loss in 2014 we temporarily doubled the split amounts 9 until 20/9/2014, see ticket 75. 10 10 11 11 * Add jamb_age to ICustomUGApplicant. -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/interswitch/browser.py
r11795 r11797 249 249 self.pay_item_id = '104' 250 250 # Until 14/9/2014 we have not sent split amount data for pre applications. 251 # To compenstate the loss we temporarily double the split amounts.252 # See ticket 75.253 provider_amt = 600.0254 dalash_amt = 400.0251 # To compenstate the loss we temporarily doubled the split amounts 252 # until 20/9/2014, see ticket 75. 253 #provider_amt = 600.0 254 #dalash_amt = 400.0 255 255 elif self.applicant.applicant_id.startswith('pre'): 256 256 # changed for prejambites from FBN '2013910271' to GTBank '0106259811' … … 258 258 xmldict['institution_bank_id'] = '10' 259 259 # Until 14/9/2014 we have not sent split amount data for pre applications. 260 # To compenstate the loss we temporarily double the split amounts.261 # See ticket 75.262 provider_amt = 600.0263 dalash_amt = 400.0260 # To compenstate the loss we temporarily doubled the split amounts 261 # until 20/9/2014, see ticket 75. 262 #provider_amt = 600.0 263 #dalash_amt = 400.0 264 264 elif self.applicant.applicant_id.startswith('special'): 265 265 if self.context.p_category in SPECIAL_PAYMENT_PARAMS.keys(): -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/interswitch/tests.py
r11796 r11797 563 563 self.assertTrue( 564 564 '<item_detail item_id="1" item_name="Application Fee" ' 565 'item_amt="2 03300" bank_id="10" acct_num="0106259811" />'565 'item_amt="253300" bank_id="10" acct_num="0106259811" />' 566 566 in self.browser.contents) 567 567 # No 'commission', no provider fee in 2013 … … 570 570 # Comission is charged from 14/09/2014 571 571 self.assertTrue( 572 '<item_detail item_id="2" item_name="Dalash" item_amt=" 40000" '572 '<item_detail item_id="2" item_name="Dalash" item_amt="20000" ' 573 573 'bank_id="117" acct_num="1013196791" />' 574 574 in self.browser.contents) 575 575 self.assertTrue( 576 576 '<item_detail item_id="3" item_name="BT Education" ' 577 'item_amt=" 60000" bank_id="117" acct_num="1010764827" />'577 'item_amt="30000" bank_id="117" acct_num="1010764827" />' 578 578 in self.browser.contents) 579 579 … … 587 587 self.assertTrue( 588 588 '<item_detail item_id="1" item_name="Application Fee" ' 589 'item_amt="2 03300" bank_id="8" acct_num="2013910271" />'589 'item_amt="253300" bank_id="8" acct_num="2013910271" />' 590 590 in self.browser.contents) 591 591 # No 'commission', no provider fee in 2013 … … 594 594 # Comission is charged from 14/09/2014 595 595 self.assertTrue( 596 '<item_detail item_id="2" item_name="Dalash" item_amt=" 40000" '596 '<item_detail item_id="2" item_name="Dalash" item_amt="20000" ' 597 597 'bank_id="117" acct_num="1013196791" />' 598 598 in self.browser.contents) 599 599 self.assertTrue( 600 600 '<item_detail item_id="3" item_name="BT Education" ' 601 'item_amt=" 60000" bank_id="117" acct_num="1010764827" />'601 'item_amt="30000" bank_id="117" acct_num="1010764827" />' 602 602 in self.browser.contents) 603 603 self.assertTrue(
Note: See TracChangeset for help on using the changeset viewer.