| 23419 |
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>Item Id</th>
|
|
|
7 |
<th>Description</th>
|
|
|
8 |
<th>Advance Amount</th>
|
|
|
9 |
<th>Tentative Amount</th>
|
|
|
10 |
<th>Created On</th>
|
|
|
11 |
<th>Active</th>
|
|
|
12 |
<th>Expire</th>
|
|
|
13 |
</tr>
|
|
|
14 |
#if(!$prebookingListings.isEmpty())
|
|
|
15 |
#foreach( $prebookingListing in $prebookingListings )
|
|
|
16 |
<tr class="prebooking-listing-details" data="$prebookingListing.getId()">
|
|
|
17 |
<td>$prebookingListing.getItemId()</td>
|
|
|
18 |
<td>$itemIdDescriptionMap.get($prebookingListing.getItemId())</td>
|
|
|
19 |
<td>$prebookingListing.getAdvanceAmount()</td>
|
|
|
20 |
<td>$prebookingListing.getTentativeAmount()</td>
|
|
|
21 |
<td>$prebookingListing.getFormattedCreateTimestamp()</td>
|
|
|
22 |
#if(($prebookingListing.getActiveTimestamp()) && (!$prebookingListing.getExpireTimestamp()))
|
|
|
23 |
<td><i class="fa fa-check" aria-hidden="true"></i></td>
|
|
|
24 |
#else
|
|
|
25 |
<td><i class="fa fa-times" aria-hidden="true"></i></td>
|
|
|
26 |
#end
|
|
|
27 |
#if($prebookingListing.getExpireTimestamp())
|
|
|
28 |
<td><i class="fa fa-check" aria-hidden="true"></i></td>
|
|
|
29 |
#else
|
|
|
30 |
<td><i class="fa fa-times" aria-hidden="true"></i></td>
|
|
|
31 |
#end
|
|
|
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>
|