Last change
on this file since 17952 was
1243,
checked in by joachim, 18 years ago
|
more fixes
|
-
Property svn:keywords set to
Id
|
File size:
628 bytes
|
Line | |
---|
1 | ##parameters=REQUEST,matric_no=None |
---|
2 | # $Id: simulate_callback.py 1243 2007-01-08 17:39:17Z joachim $ |
---|
3 | """ |
---|
4 | process the Application Form |
---|
5 | return html renderer + psm |
---|
6 | """ |
---|
7 | import DateTime,logging |
---|
8 | current = DateTime.DateTime() |
---|
9 | pr = context.portal_registration |
---|
10 | logger = logging.getLogger('Returning') |
---|
11 | validate = REQUEST.has_key("cpsdocument_edit_button") |
---|
12 | |
---|
13 | args = {} |
---|
14 | args['x_RespDesc'] = 'Approved Successful' |
---|
15 | args['x_RespPayRef'] = 'GTB|WEB|ISW|7-01-2007|000579' |
---|
16 | args['x_RespCode'] = '00' |
---|
17 | args['x_CardNum'] = '0114' |
---|
18 | args['x_ApprAmt'] = REQUEST.get('x_amt') |
---|
19 | |
---|
20 | from urllib import urlencode |
---|
21 | url = "%s/epayment_cb/?%s" % (context.absolute_url(),urlencode(args)) |
---|
22 | return REQUEST.RESPONSE.redirect(url) |
---|
Note: See
TracBrowser for help on using the repository browser.