| Line 192... |
Line 192... |
| 192 |
<table id="emi-options">
|
192 |
<table id="emi-options">
|
| 193 |
<thead>
|
193 |
<thead>
|
| 194 |
<tr>
|
194 |
<tr>
|
| 195 |
<th> </th>
|
195 |
<th> </th>
|
| 196 |
<th>Tenure</th>
|
196 |
<th>Tenure</th>
|
| 197 |
<th style="width:90px;text-align:center">Interest Rate*</th>
|
197 |
<th style="width:50px;text-align:center">Interest Rate</th>
|
| 198 |
<th style="width:90px;text-align:center">Total Interest</th>
|
198 |
<th style="width:90px;text-align:center">Total Interest</th>
|
| 199 |
<th style="width:90px;text-align:center">Total Amount</th>
|
199 |
<th style="width:90px;text-align:center">Total Amount</th>
|
| 200 |
<th style="width:90px;text-align:center">Monthly Installment</th>
|
200 |
<th style="width:90px;text-align:center">Monthly Installment</th>
|
| 201 |
</tr>
|
201 |
</tr>
|
| 202 |
</thead>
|
202 |
</thead>
|
| 203 |
<tbody>
|
203 |
<tbody>
|
| 204 |
</tbody>
|
204 |
</tbody>
|
| 205 |
</table>
|
205 |
</table>
|
| 206 |
<span style="padding-left:10px">*Inclusive of service tax.</span>
|
- |
|
| 207 |
</div>
|
206 |
</div>
|
| 208 |
|
207 |
|
| 209 |
</div>
|
208 |
</div>
|
| 210 |
<div style="text-align:center;clear:left">
|
209 |
<div style="text-align:center;clear:left">
|
| 211 |
<div style="font-size:15px;font-weight:bold;padding:5px">Total Amount : <span class="mk_total_amount">$orderAmount</span></div>
|
210 |
<div style="font-size:15px;font-weight:bold;padding:5px">Amount to pay : <span class="mk_total_amount">$orderAmount</span></div>
|
| 212 |
<input type="submit" value="MAKE PAYMENT" class="make-payment-button"/>
|
211 |
<input type="submit" value="MAKE PAYMENT" class="make-payment-button"/>
|
| 213 |
<br/><br/>
|
212 |
<br/><br/>
|
| 214 |
<b>You will be taken to our Bank's payment gateway for making this payment.</b>
|
213 |
<b>You will be taken to our Bank's payment gateway for making this payment.</b>
|
| - |
|
214 |
<div style="font-size: 10px; line-height: 1.8em; width: 500px; margin: auto; text-align: left; padding: 12px 0px;"><ul><li>Interest shown will be charged by the bank in your statement.
|
| - |
|
215 |
</li><li>EMIs shown above may vary slightly due to round offs.</li>
|
| - |
|
216 |
<li>When you opt for EMI, it is considered as a request from you to your bank. The bank reserves the right to reject your EMI request.</li>
|
| - |
|
217 |
<li>It is hereby clarified that we are not charging any Processing Fee/Commission etc. and only facilitating the communication of your request
|
| - |
|
218 |
to your bank.</li>
|
| - |
|
219 |
<li>Any clarification/complaint maybe sought directly through your bank.</li></ul></div>
|
| 215 |
</div>
|
220 |
</div>
|
| 216 |
</form>
|
221 |
</form>
|
| 217 |
</div>
|
222 |
</div>
|
| 218 |
<div>
|
223 |
<div>
|
| 219 |
<div class="center-text-bold12">Select Your Debit/ATM Card:</div><br/>
|
224 |
<div class="center-text-bold12">Select Your Debit/ATM Card:</div><br/>
|
| Line 688... |
Line 693... |
| 688 |
var r = opt.interestRate/12/100;
|
693 |
var r = opt.interestRate/12/100;
|
| 689 |
var installment = $action.getTotalAmountL()*r*Math.pow(1+r,opt.tenure)/(Math.pow(1+r,opt.tenure) - 1);
|
694 |
var installment = $action.getTotalAmountL()*r*Math.pow(1+r,opt.tenure)/(Math.pow(1+r,opt.tenure) - 1);
|
| 690 |
bankTenure.interestRate = opt.interestRate;
|
695 |
bankTenure.interestRate = opt.interestRate;
|
| 691 |
bankTenure.installment = (Math.round(installment*100)/100).toFixed(2);
|
696 |
bankTenure.installment = (Math.round(installment*100)/100).toFixed(2);
|
| 692 |
bankTenure.totalAmount = Math.ceil(installment*opt.tenure);
|
697 |
bankTenure.totalAmount = Math.ceil(installment*opt.tenure);
|
| 693 |
bankTenure.totalInterest = totalAmount - $action.getTotalAmountL();
|
698 |
bankTenure.totalInterest = bankTenure.totalAmount - $action.getTotalAmountL();
|
| 694 |
|
699 |
|
| 695 |
bank.emis[opt.id] = bankTenure;
|
700 |
bank.emis[opt.id] = bankTenure;
|
| 696 |
});
|
701 |
});
|
| 697 |
|
- |
|
| 698 |
|
- |
|
| 699 |
|
702 |
|
| 700 |
</script>
|
703 |
</script>
|
| 701 |
</body>
|
704 |
</body>
|
| 702 |
</html>
|
705 |
</html>
|
| 703 |
|
706 |
|