| 23936 |
tejbeer |
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>Retailer Id</th>
|
|
|
7 |
<th>Retailer Name</th>
|
|
|
8 |
<th>Email</th>
|
|
|
9 |
<th>City</th>
|
|
|
10 |
<th>State</th>
|
|
|
11 |
<th>Transaction Reference</th>
|
|
|
12 |
<th>Amount</th>
|
|
|
13 |
<th>Created On</th>
|
|
|
14 |
<th>Updated On </th>
|
|
|
15 |
#if($rStatus == "pending")
|
|
|
16 |
<th>Status</th>
|
|
|
17 |
#end
|
|
|
18 |
|
|
|
19 |
</tr>
|
|
|
20 |
#if(!$walletRequest.isEmpty())
|
|
|
21 |
#foreach( $request in $walletRequest )
|
|
|
22 |
<tr class="add-wallet" data="$request.getId()">
|
|
|
23 |
<td>$request.getRetailerId()</td>
|
|
|
24 |
<td>$fofoIdsAndRetailerName.get($request.getRetailerId()).getBusinessName()</td>
|
|
|
25 |
<td>$fofoIdsAndRetailerName.get($request.getRetailerId()).getEmail()</td>
|
|
|
26 |
<td>$fofoIdsAndRetailerName.get($request.getRetailerId()).getAddress().city</td>
|
|
|
27 |
<td>$fofoIdsAndRetailerName.get($request.getRetailerId()).getAddress().state</td>
|
|
|
28 |
<td>$request.getTransaction_reference()</td>
|
|
|
29 |
<td>$request.getAmount()</td>
|
|
|
30 |
<td>$request.getFormattedCreateTimestamp()</td>
|
|
|
31 |
<td>$request.getFormattedUpdateTimestamp()</td>
|
|
|
32 |
#if($request.getStatus()=="pending")
|
|
|
33 |
<td><button class="btn btn-primary approve" data-requestid="$request.getId()" type="button" style="width:100%;border-radius:0px;">Approve</button>
|
|
|
34 |
</td>
|
|
|
35 |
#end
|
|
|
36 |
</tr>
|
|
|
37 |
#end
|
|
|
38 |
#else
|
|
|
39 |
<tr>
|
|
|
40 |
<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
|
|
|
41 |
</tr>
|
|
|
42 |
#end
|
|
|
43 |
</tbody>
|
|
|
44 |
</table>
|
|
|
45 |
</div>
|
|
|
46 |
</div>
|