| 23505 |
ashik.ali |
1 |
<div class="row">
|
|
|
2 |
<div class="col-lg-12">
|
|
|
3 |
<table class="table table-striped table-advance table-hover">
|
|
|
4 |
<tbody>
|
|
|
5 |
<tr>
|
|
|
6 |
<th>Request Id</th>
|
|
|
7 |
<th>Operator</th>
|
|
|
8 |
<th>Number</th>
|
|
|
9 |
<th>Amount</th>
|
| 23528 |
ashik.ali |
10 |
<th>Commission</th>
|
| 23505 |
ashik.ali |
11 |
<th>Status</th>
|
|
|
12 |
<th>Status Message</th>
|
|
|
13 |
<th>Created On</th>
|
|
|
14 |
<th>Updated On</th>
|
|
|
15 |
</tr>
|
|
|
16 |
#if(!$rechargeTransactions.isEmpty())
|
|
|
17 |
#foreach( $rechargeTransaction in $rechargeTransactions )
|
|
|
18 |
<tr class="dth-recharge-details" data="$rechargeTransaction.getId()">
|
|
|
19 |
<td>$rechargeTransaction.getRequestId()</td>
|
|
|
20 |
<td>$rechargeOperatorIdRechargeOperatorNameMap.get($rechargeTransaction.getOperatorId())</td>
|
|
|
21 |
<td>$rechargeTransaction.getReferenceNumber()</td>
|
|
|
22 |
<td>$rechargeTransaction.getAmount()</td>
|
| 23528 |
ashik.ali |
23 |
<td>$rechargeTransaction.getCommission()</td>
|
| 23577 |
ashik.ali |
24 |
#if($rechargeTransaction.getStatus() == "PENDING" || $rechargeTransaction.getStatus() == "CONNECTION_TIMEOUT")
|
|
|
25 |
<td>$rechargeTransaction.getStatus() <a class="mobile-recharge-check-status" href="javascript:void(0);" data="$rechargeTransaction.getRequestId()">Check Status</a></td>
|
|
|
26 |
#else
|
|
|
27 |
<td>$rechargeTransaction.getStatus()</td>
|
|
|
28 |
#end
|
| 23505 |
ashik.ali |
29 |
<td>$rechargeTransaction.getStatusMessage()</td>
|
|
|
30 |
<td>$rechargeTransaction.getFormattedCreateTimestamp()</td>
|
|
|
31 |
<td>$rechargeTransaction.getFormattedUpdateTimestamp()</td>
|
|
|
32 |
</tr>
|
|
|
33 |
#end
|
|
|
34 |
#else
|
|
|
35 |
<tr>
|
|
|
36 |
<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
|
|
|
37 |
</tr>
|
|
|
38 |
#end
|
|
|
39 |
</tbody>
|
|
|
40 |
</table>
|
|
|
41 |
</div>
|
|
|
42 |
</div>
|