Subversion Repositories SmartDukaan

Rev

Rev 6442 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6432 rajveer 1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html>
3
<head>
4
	<title>${domain.name}: Redirecting to Innoviti Payment Page</title>
5
	<script language="javascript" type="text/javascript" src="/js/ga-invoker.js"></script>
6
</head>
7
<body>
8
    <div style="text-align:center; margin-top:200px;">Please wait while we redirect you to the Payment Gateway.</div>
9
	<div align="center" class="img">
10
		<img title="loading" alt="loading" src="/images/loading.gif">
11
	</div>
12
	<div style="display:none">
6806 rajveer 13
		<form  method="post" action="$action.getGatewayUrl()" name="frmTransaction" id="frmTransaction" onSubmit="return validate()">	 
6432 rajveer 14
           <!-- Account Id -->
15
           <input name="merchantId" type="hidden" value="$action.getAccountId()" />
16
 
6806 rajveer 17
		   <input name="subMerchantId" type="hidden" value="$action.getSubAccountId()" />
6432 rajveer 18
 
19
		   #set($billingAddress=$action.getBillingDetails())
20
 
21
           <!-- Transaction Details -->
22
           <input name="orderId" type="hidden" value="$action.getId()" />
23
 
24
		   <input name="amt" type="hidden" value="$action.getAmount()" />
25
 
26
		   <input name="cur" type="hidden" value="INR" />
27
 
28
		   <input name="processingCode" type="hidden" value="$action.getProcessingCode()" />
29
 
30
		   <input name="proSku" type="hidden" value="$action.getDescription()" />
31
 
32
           <input name="Cname" type="hidden" value="$billingAddress.getName()" /></td>
33
 
34
		   <input name="mobile" type="hidden" value="$billingAddress.getPhone()" />
35
 
36
		   <input name="emailId" type="hidden" value="$billingAddress.getEmail()" />
37
 
6442 rajveer 38
			<input name="redirUrl" type="hidden" value="$action.getReturnUrl()" />
6432 rajveer 39
 
40
		   <input name="chksum" type="hidden" value="$action.getSecureHash()" />
41
 
6442 rajveer 42
		   <input name="isCtx" type="hidden" value="$action.isCtx()" />
43
 
44
		   <input name="CtxInterest" type="hidden" value="$action.getCtxInterest()" />
45
 
46
		   <input name="CtxProcesingFee" type="hidden" value="$action.getCtxProcessingFee()" />
47
 
48
	       <input name="submitted" value="Submit" type="submit" />&nbsp; 
6432 rajveer 49
           <input value="Reset" type="reset" />
50
      </form>
51
    </div>
52
 
53
    #include ( "templates/commonjsfiles.vm" )
54
    <script type="text/javascript">
55
      $(function() {
56
	      $('form[name="frmTransaction"]').submit();
57
      });
58
    </script>
59
  </body>
60
</html>