Last change
on this file since 1570 was
1568,
checked in by Henrik Bettermann, 18 years ago
|
new logging format Part 3
|
-
Property svn:keywords set to
Id
|
File size:
618 bytes
|
Rev | Line | |
---|
[1235] | 1 | ##parameters=REQUEST,matric_no=None |
---|
| 2 | # $Id: simulate_callback.py 1568 2007-03-17 08:37:51Z henrik $ |
---|
| 3 | """ |
---|
| 4 | process the Application Form |
---|
| 5 | return html renderer + psm |
---|
| 6 | """ |
---|
[1568] | 7 | import DateTime |
---|
[1235] | 8 | current = DateTime.DateTime() |
---|
| 9 | pr = context.portal_registration |
---|
| 10 | validate = REQUEST.has_key("cpsdocument_edit_button") |
---|
| 11 | |
---|
| 12 | args = {} |
---|
[1367] | 13 | args['x_RespDesc'] = 'Simulated Callback' |
---|
| 14 | args['x_RespPayRef'] = 'GTB|WEB|ISW|1-01-2000|000234' |
---|
| 15 | args['x_RespCode'] = 'XX' |
---|
| 16 | args['x_CardNum'] = '0000' |
---|
[1243] | 17 | args['x_ApprAmt'] = REQUEST.get('x_amt') |
---|
[1235] | 18 | |
---|
| 19 | from urllib import urlencode |
---|
[1425] | 20 | #url = "%s/epayment_cb/?%s" % (context.absolute_url(),urlencode(args)) |
---|
| 21 | url = "%s" % (context.absolute_url()) |
---|
[1235] | 22 | return REQUEST.RESPONSE.redirect(url) |
---|
Note: See
TracBrowser for help on using the repository browser.