Changeset 15468
- Timestamp:
- 20 Jun 2019, 16:17:46 (6 years ago)
- Location:
- main/kofacustom.nigeria/trunk/src/kofacustom/nigeria
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/remita/tests.py
r15351 r15468 36 36 # If you enable this, please make sure the external services 37 37 # do exist really and are not bothered by being spammed by a test programme. 38 EXTERNAL_TESTS = True 38 39 EXTERNAL_TESTS = False # URLs do no longer work 39 40 40 41 MERCHANTID = '2547916' -
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/students/interfaces.py
r14274 r15468 540 540 ) 541 541 542 p_split_data = schema.TextLine( 543 title = _(u'Split Payment Data'), 544 required = False, 545 readonly = False, 546 ) 547 542 548 INigeriaStudentOnlinePayment['p_level'].order = INigeriaStudentOnlinePayment[ 543 549 'p_session'].order -
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/students/tests/test_export.py
r15351 r15468 123 123 self.assertMatches( 124 124 'ac,amount_auth,creation_date,gateway_amt,p_category,p_current,' 125 'p_id,p_item,p_level,p_session,p_s tate,payment_date,provider_amt,'125 'p_id,p_item,p_level,p_session,p_split_data,p_state,payment_date,provider_amt,' 126 126 'r_amount_approved,r_card_num,r_code,r_company,r_desc,' 127 127 'r_pay_reference,thirdparty_amt,student_id,state,' 128 128 'current_session\r\n' 129 129 '666,12.12,2012-04-01 13:12:01#,,schoolfee,1,my-id,p-item,' 130 '100,%s, paid,2012-04-01 14:12:01#,,12.12,'130 '100,%s,,paid,2012-04-01 14:12:01#,,12.12,' 131 131 '789,r-code,interswitch,,,,A111111,created,2012\r\n' % (curr_year-6), 132 132 result … … 188 188 result, 189 189 'ac,amount_auth,creation_date,formatted_p_date,gateway_amt,' 190 'p_category,p_current,p_id,p_item,p_level,p_session,p_s tate,'190 'p_category,p_current,p_id,p_item,p_level,p_session,p_split_data,p_state,' 191 191 'payment_date,provider_amt,r_amount_approved,r_card_num,r_code,' 192 192 'r_company,r_desc,r_pay_reference,thirdparty_amt,student_id,' … … 195 195 196 196 '666,12.12,%s-04-01 13:12:01#,,,schoolfee,1,my-id,p-item,' 197 '100,%s, paid,%s-04-01 14:12:01#,,12.12,,r-code,,,,,A111111,'197 '100,%s,,paid,%s-04-01 14:12:01#,,12.12,,r-code,,,,,A111111,' 198 198 '234,123,Anna,M.,Tester,created,2012,2010,ug_ft,NA,NA,CERT1,\r\n' 199 199 % (curr_year-6, curr_year-6, curr_year-6)
Note: See TracChangeset for help on using the changeset viewer.