Changeset 14097 for main/kofacustom.coewarri/trunk/src/kofacustom
- Timestamp:
- 19 Aug 2016, 16:02:00 (8 years ago)
- Location:
- main/kofacustom.coewarri/trunk/src/kofacustom/coewarri
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/applicants/utils.py
r14091 r14097 31 31 32 32 APP_TYPES_DICT = { 33 'app': ['General Studies', 'APP'], 34 'nce': ['NCE Programmes', 'NCE'], 35 'pre': ['Pre-Degree Programmes', 'PRE'], 36 } 33 'app': ['General Studies', 'APP'], 34 'nce': ['NCE Programmes', 'NCE'], 35 'ncept': ['NCE Part-Time Programmes', 'NCE'], 36 'degree': ['Degree Programmes', 'DEG'], 37 } -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/interswitch/browser.py
r14092 r14097 30 30 from kofacustom.coewarri.interfaces import MessageFactory as _ 31 31 32 PRODUCT_ID = ' 57'32 PRODUCT_ID = '6207' 33 33 SITE_NAME = 'coewarri-kofa.waeup.org' 34 34 PROVIDER_ACCT = '0137712635' … … 37 37 INSTITUTION_NAME = 'COE Warri' 38 38 CURRENCY = '566' 39 GATEWAY_AMT = 250.0 40 #QUERY_URL = 'https://webpay.interswitchng.com/paydirect/services/TransactionQueryURL.aspx' 41 #QUERY_URL = 'https://testwebpay.interswitchng.com/test_paydirect/services/TransactionQueryURL.aspx' 42 POST_ACTION = 'https://webpay.interswitchng.com/paydirect/webpay/pay.aspx' 43 #POST_ACTION = 'https://testwebpay.interswitchng.com/test_paydirect/webpay/pay.aspx' 44 45 HOST = 'webpay.interswitchng.com' 46 #HOST = 'testwebpay.interswitchng.com' 47 URL = '/paydirect/services/TransactionQueryWs.asmx' 48 #URL = '/test_paydirect/services/TransactionQueryWs.asmx' 39 GATEWAY_AMT = 300.0 40 POST_ACTION = 'https://stageserv.interswitchng.com/test_paydirect/pay' 41 #POST_ACTION = 'https://webpay.interswitchng.com/paydirect/pay' 42 43 #HOST = 'webpay.interswitchng.com' 44 HOST = 'stageserv.interswitchng.com' 45 HTTPS = True 46 47 #URL = '/paydirect/api/v1/gettransaction.json' 48 URL = '/test_paydirect/api/v1/gettransaction.json' 49 49 50 httplib.HTTPSConnection.debuglevel = 0 50 51 HTTPS = True … … 121 122 site_name = SITE_NAME 122 123 currency = CURRENCY 123 pay_item_id = ' 0000'124 product_id = PRODUCT_ID 125 mac = ' '124 pay_item_id = '101' 125 product_id = PRODUCT_ID 126 mac = 'CEF793CBBE838AA0CBB29B74D571113B4EA6586D3BA77E7CFA0B95E278364EFC4526ED7BD255A366CDDE11F1F607F0F844B09D93B16F7CFE87563B2272007AB3' 126 127 127 128 def update(self): -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/utils/utils.py
r14091 r14097 25 25 26 26 APP_CATS_DICT = { 27 'basic': 'UTME, DE, PCE, PRENCE',28 'no': 'No Application',29 'pre': 'Pre-DegreeProgramme',30 'nce': 'NCEProgramme',31 }27 'basic': 'UTME, DE, PCE, PRENCE', 28 'no': 'No Application', 29 'nce': 'NCE Programme', 30 'ncept': 'NCE Part-Time Programme', 31 }
Note: See TracChangeset for help on using the changeset viewer.