| 6111 |
anupam.sin |
1 |
<div id="top-infopane">
|
|
|
2 |
<table id="recharge-orders" class="display">
|
|
|
3 |
<thead>
|
|
|
4 |
<tr>
|
|
|
5 |
<th>Recharge Id</th>
|
|
|
6 |
<th>Description</th>
|
|
|
7 |
<th>Created</th>
|
|
|
8 |
<th>Amount</th>
|
|
|
9 |
<th>Status</th>
|
|
|
10 |
<th>Device No</th>
|
|
|
11 |
</tr>
|
|
|
12 |
</thead>
|
|
|
13 |
<tbody>
|
|
|
14 |
#foreach($rechargeOrder in $action.getRechargeOrders())
|
|
|
15 |
<tr id="order-row-$rechargeOrder.getId()">
|
|
|
16 |
<td>
|
|
|
17 |
<a alt="Show Order Details" title="Show Order Details" href="#" userId="$action.getUserId()" orderId="$rechargeOrder.getId()" class="show-recharge-details">
|
|
|
18 |
$rechargeOrder.getId()
|
|
|
19 |
</a>
|
|
|
20 |
</td>
|
|
|
21 |
<td class="truncated-text" truncatedTextWidth="230">$rechargeOrder.getDescription()</td>
|
|
|
22 |
<td class="truncated-text" truncatedTextWidth="135">$action.convertDate($rechargeOrder.getCreationTimestamp())</td>
|
|
|
23 |
<td>$rechargeOrder.getTotalAmount()</td>
|
|
|
24 |
<td class="truncated-text" truncatedTextWidth="140">$rechargeOrder.getStatus().toString()</td>
|
|
|
25 |
<td>$rechargeOrder.getDeviceNumber()</td>
|
|
|
26 |
</tr>
|
|
|
27 |
#end
|
|
|
28 |
</tbody>
|
|
|
29 |
</table>
|
|
|
30 |
</div>
|
|
|
31 |
<div id="bottom-infopane">
|
|
|
32 |
</div>
|