| 30465 |
amit.gupta |
1 |
<section class="wrapper">
|
|
|
2 |
<div class="row">
|
|
|
3 |
<div class="col-lg-12">
|
|
|
4 |
<h3 class="page-header"><i class="icon_genius"></i>Pending Grn</h3>
|
|
|
5 |
<ol class="breadcrumb">
|
|
|
6 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
7 |
<li><i class="icon_genius"></i>Activated Imeis, awaiting GRN to complete</li>
|
|
|
8 |
</ol>
|
|
|
9 |
</div>
|
|
|
10 |
</div>
|
|
|
11 |
|
|
|
12 |
<div id="catalog-table">
|
|
|
13 |
<div class="row">
|
|
|
14 |
<div class="col-lg-12">
|
|
|
15 |
<table class="table table-striped table-advance table-hover">
|
|
|
16 |
<thead>
|
|
|
17 |
<tr>
|
|
|
18 |
<th>Item Code</th>
|
|
|
19 |
<th>Brand</th>
|
|
|
20 |
<th>Model Name</th>
|
|
|
21 |
<th>Model Number</th>
|
|
|
22 |
<th>Color</th>
|
|
|
23 |
<th>IMEI</th>
|
|
|
24 |
<th>Invoice Number</th>
|
|
|
25 |
<th>Delivered On</th>
|
|
|
26 |
<th>Activated On</th>
|
|
|
27 |
<th>Action</th>
|
|
|
28 |
</tr>
|
|
|
29 |
</thead>
|
|
|
30 |
<tbody>
|
|
|
31 |
#if(!$imeiActivationTimestampModels.isEmpty())
|
|
|
32 |
#foreach( $imeiActivationTimestampModel in $imeiActivationTimestampModels )
|
|
|
33 |
#set ($orderId=$imeiActivationTimestampModel.getOrderId())
|
|
|
34 |
#set($order=$ordersMap.get($orderId))
|
|
|
35 |
<tr data-invoicenumber="$ordersMap.get($orderId).getInvoiceNumber">
|
|
|
36 |
<td>$order.getLineItem().getItemId()</td>
|
|
|
37 |
<td>$order.getLineItem().getBrand()</td>
|
|
|
38 |
<td>$order.getLineItem().getModelName()</td>
|
|
|
39 |
<td>$order.getLineItem().getModelNumber()</td>
|
|
|
40 |
<td>$order.getLineItem().getItem().getColor()</td>
|
|
|
41 |
<td>$imeiActivationTimestampModel.getSerialNumber()</td>
|
|
|
42 |
<td>$order.getInvoiceNumber()</td>
|
| 30940 |
amit.gupta |
43 |
#if($order.getDeliveryTimestamp())
|
|
|
44 |
<td>$dateTimeFormatter.format($order.getDeliveryTimestamp())</td>
|
|
|
45 |
#else
|
|
|
46 |
<td>-</td>
|
|
|
47 |
#end
|
| 30465 |
amit.gupta |
48 |
<td>$dateTimeFormatter.format($imeiActivationTimestampModel.getActivationTimestamp())</td>
|
|
|
49 |
<td><a href="javascript:void(0)" class="activated_imeis_grn_complete"
|
|
|
50 |
data-invoice="$order.getInvoiceNumber()">Complete Grn</a>
|
|
|
51 |
</td>
|
|
|
52 |
</tr>
|
|
|
53 |
#end
|
|
|
54 |
#else
|
|
|
55 |
<tr>
|
|
|
56 |
<td colspan="10" style="text-align:center;">Great, you have no Activated IMEIs in Stock :)
|
|
|
57 |
</td>
|
|
|
58 |
</tr>
|
|
|
59 |
#end
|
|
|
60 |
</tbody>
|
|
|
61 |
</table>
|
|
|
62 |
</div>
|
|
|
63 |
</div>
|
|
|
64 |
</div>
|
|
|
65 |
</section>
|