Subversion Repositories SmartDukaan

Rev

Rev 6806 | 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
 
6816 rajveer 42
		   <input name="isCtx" type="hidden" value="NO" />
43
 
44
		   <!--
6442 rajveer 45
		   <input name="isCtx" type="hidden" value="$action.isCtx()" />
46
 
47
		   <input name="CtxInterest" type="hidden" value="$action.getCtxInterest()" />
48
 
49
		   <input name="CtxProcesingFee" type="hidden" value="$action.getCtxProcessingFee()" />
6816 rajveer 50
		   -->
6442 rajveer 51
 
52
	       <input name="submitted" value="Submit" type="submit" />&nbsp; 
6432 rajveer 53
           <input value="Reset" type="reset" />
54
      </form>
55
    </div>
56
 
57
    #include ( "templates/commonjsfiles.vm" )
58
    <script type="text/javascript">
59
      $(function() {
60
	      $('form[name="frmTransaction"]').submit();
61
      });
62
    </script>
63
  </body>
64
</html>