| 20110 |
kshitij.so |
1 |
<div id="top-infopane">
|
|
|
2 |
<h2>Select Return Order For PickUp</h4>
|
|
|
3 |
<table id="user-orders-pickup" class="display">
|
|
|
4 |
<thead>
|
|
|
5 |
<tr>
|
|
|
6 |
<th>Return Transaction Id</th>
|
|
|
7 |
<th>Return Order Id</th>
|
|
|
8 |
<th>Order Id</th>
|
|
|
9 |
<th>Item</th>
|
|
|
10 |
<th>Return Qty</th>
|
|
|
11 |
<th>Action</th>
|
|
|
12 |
<th>Select</th>
|
|
|
13 |
</tr>
|
|
|
14 |
</thead>
|
|
|
15 |
<tbody>
|
|
|
16 |
#foreach($returnOrder in $action.getReturnOrderInfoList())
|
|
|
17 |
<tr>
|
|
|
18 |
<td><a class="show-return-transaction-details" returnTransactionId="$returnOrder.getReturnTransactionId()" href="#">$returnOrder.getReturnTransactionId()</a></td>
|
|
|
19 |
<td>$returnOrder.getId()</td>
|
|
|
20 |
<td><a href="/crm/?email=&orderId=$returnOrder.getOrderId()" target="_blank">$returnOrder.getOrderId()</a></td>
|
|
|
21 |
<td class="truncated-text" truncatedTextWidth="400">$action.getProductName($returnOrder.getLineitem())</td>
|
|
|
22 |
<td>$returnOrder.getReturnQuantity()</td>
|
|
|
23 |
<td>$returnOrder.getReturnAction()</td>
|
|
|
24 |
<td><input type="checkbox" class="select-return-order-for-pick-up" value="$returnOrder.getId()"></td>
|
|
|
25 |
</tr>
|
|
|
26 |
#end
|
|
|
27 |
</tbody>
|
|
|
28 |
</table>
|
|
|
29 |
</div>
|
|
|
30 |
<div class="confirm"><a class="confirm-return-pickup" userId="$action.getUserId()" style="font-size:14px;" href="#">Click to continue</a></div>
|
|
|
31 |
<div id="bottom-infopane">
|
|
|
32 |
</div>
|