source: WAeUP_SRP/branches/srpp_on_branch/skins/waeup_epayment/online_payment.pt @ 1736

Last change on this file since 1736 was 1146, checked in by joachim, 18 years ago

added import for registered and results,
the csv-files must contain a modified heading
results can be viewed with session_results_anon_view
modified Courses import to use courses catalog

  • Property svn:keywords set to Id
File size: 5.0 KB
Line 
1<metal:html>
2  <metal:body use-macro="here/main_template/macros/master">
3    <metal:main fill-slot="main">
4      <form name="Form1" method="post"
5            action="http://www.wemaonlinepayments.biz/payment.aspx"
6            id="Form1">
7          <table>
8            <tr>
9            <td >Site ID</td>
10            <td >Code that represents the portal within the payment gateway.&nbsp; This is assigned to the portal by Wema Bank</td>
11            <td><input name="x_SiteID"
12                       type="text"
13                       id="x_SiteID"
14                       size="33"
15                       value="8000" />
16            </td>
17          </tr>
18          <tr>
19            <td >Payment Item Code</td>
20            <td >
21              e.g&nbsp;Code that represents what the student is paying for: eg. 001, 078
22            </td>
23            <td>
24              <input name="x_PaymentCode"
25                     type="text"
26                     id="x_PaymentCode"
27                     value="001" />
28            </td>
29          </tr>
30          <tr>
31            <td >Payment Desc</td>
32            <td >A description of what the student is paying for.&nbsp; Eg
33            School Fees</td>
34            <td>
35              <input name="x_PayDesc"
36                     type="text"
37                     id="x_PayDesc"
38                     value="School Fees for 2006/2007 Session"
39                     />
40            </td>
41          </tr>
42          <tr>
43            <td>Bill To</td>
44            <td>
45              &nbsp;Address of the payer.&nbsp; Required for e-commerce application.
46              Student name can be here for school payment
47            purposes
48            </td>
49            <td>
50              <input name="x_Billto"
51                     type="text"
52                     id="x_Billto"
53                     value="John Pedro" />
54            </td>
55          </tr>
56          <tr>
57            <td >Ship To</td>
58            <td >Address where goods will be shipped to.&nbsp; Required for
59              e-commerce application. School Name&nbsp;can be here for school payment
60            purposes</td>
61            <td>
62              <input name="x_Shipto" type="text"
63                     id="x_Shipto"
64                     value="Recipient Address"
65                     />
66            </td>
67          </tr>
68          <tr>
69            <td >Payers ID</td>
70            <td >&nbsp;eg. Matric number of the student</td>
71            <td>
72              <input name="x_PayerID"
73                     type="text"
74                     id="x_PayerID"
75                     value="CS960307087 "
76                     />
77            </td>
78          </tr>
79          <tr>
80            <td >Payers Name</td>
81            <td >&nbsp;name of the student</td>
82            <td><input name="x_PayerNames"
83                       type="text"
84                       id="x_PayerNames"
85                       value="John Pedro"
86                       />
87            </td>
88          </tr>
89          <tr>
90            <td >Payer e-mail</td>
91            <td >&nbsp;email address of the student</td>
92            <td>
93              <input name="x_PayerEmail"
94                     type="text" id="x_PayerEmail"
95                     value="abc@yahoo.co.uk" /></td>
96          </tr>
97          <tr>
98            <td >Order ID</td>
99            <td >&nbsp;this is a unique number for the transaction.&nbsp;
100            Typically, this can be INVOICE NUMBER, and must be unique per payment</td>
101            <td><input name="x_OrderID"
102                       type="text"
103                       id="x_OrderID"
104                       value="85741253" />
105            </td>
106          </tr>
107          <tr>
108            <td >Amount
109            </td>
110            <td >&nbsp;Amount to be paid.&nbsp; Must NOT be formatted with
111            comma</td>
112            <td><input name="x_amt"
113                       type="text"
114                       id="x_amt"
115                       value="7500"
116                       />
117            </td>
118          </tr>
119          <tr>
120            <td >Currency Code</td>
121            <td >&nbsp;only Nigeria Naira is supported now.&nbsp; use 566
122            as the currency code</td>
123            <td>
124              <input name="x_CurrencyID"
125                     type="text"
126                     id="x_CurrencyID"
127                     value="566"
128                     />
129            </td>
130          </tr>
131          <tr>
132            <td >Site Redirect Url</td>
133            <td >&nbsp;URL within your portal where response will be
134            directed to</td>
135            <td>
136              <input name="x_Redirect_url"
137                     type="text"
138                     id="x_Redirect_url"
139                     value="http://uniben.waeup.org/callback"
140                     />
141            </td>
142          </tr>
143          <tr>
144            <td ></td>
145            <td ></td>
146            <td>
147              <input type="submit" name="btnPostPopup"
148                     value="Submit"
149                     />
150            </td>
151          </tr>
152        </table>
153      </form>
154    </metal:main>
155  </metal:body>
156</metal:html>
Note: See TracBrowser for help on using the repository browser.