Rev 23783 |
Details |
Compare with Previous |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 23783 |
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 Name</th>
|
|
|
7 |
<th>Availability</th>
|
|
|
8 |
</tr>
|
|
|
9 |
#if(!$adminCurrentInventorySnapshots.isEmpty())
|
|
|
10 |
#foreach( $adminCurrentInventorySnapshot in $adminCurrentInventorySnapshots )
|
|
|
11 |
<tr class="scan-in-item-details" data="$adminCurrentInventorySnapshot.getItemId()">
|
|
|
12 |
<td>$itemIdDescriptionMap.get($adminCurrentInventorySnapshot.getItemId())</td>
|
|
|
13 |
<td>$adminCurrentInventorySnapshot.getAvailability()</td>
|
|
|
14 |
</tr>
|
|
|
15 |
#end
|
|
|
16 |
#else
|
|
|
17 |
<tr>
|
|
|
18 |
<td colspan="6" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
|
|
|
19 |
</tr>
|
|
|
20 |
#end
|
|
|
21 |
</tbody>
|
|
|
22 |
</table>
|
|
|
23 |
</div>
|
|
|
24 |
</div>
|