| 8620 |
kshitij.so |
1 |
<span class="totalValue" style="display:none;">$action.getSearchCount()</span>
|
|
|
2 |
<table id="amazon-listed" style="width: 100%">
|
|
|
3 |
<thead>
|
|
|
4 |
<tr>
|
|
|
5 |
<th>Item Id</th>
|
|
|
6 |
<th>Category</th>
|
|
|
7 |
<th>Asin</th>
|
|
|
8 |
<th>Saholic / Amazon Item Description</th>
|
|
|
9 |
<th>Price Difference</th>
|
|
|
10 |
<th>Risky</th>
|
|
|
11 |
<th>Status</th>
|
|
|
12 |
<th>Shipping</th>
|
|
|
13 |
<th>Inventory Override</th>
|
| 10937 |
kshitij.so |
14 |
<th>MFN Listing</th>
|
|
|
15 |
<th>FBA Listing</th>
|
|
|
16 |
<th>FBB Listing</th>
|
| 8620 |
kshitij.so |
17 |
<th>Action</th>
|
|
|
18 |
</tr>
|
|
|
19 |
</thead>
|
|
|
20 |
<tbody>
|
|
|
21 |
#set($items = $action.getAmazonItems())
|
|
|
22 |
#foreach ( $item in $items )
|
|
|
23 |
<tr style="border: 1px">
|
|
|
24 |
<td>$item.getItemid()</td>
|
|
|
25 |
<td>$item.getCategory()</td>
|
|
|
26 |
<td>$item.getAsin()</td>
|
|
|
27 |
#set ($saholicItem = $action.getSaholicItem("$item.getItemid()"))
|
|
|
28 |
<td style="text-align:left;">SAHOLIC: $saholicItem.getBrand() $saholicItem.getModelName() $saholicItem.getModelNumber() $saholicItem.getColor()<br /> AMAZON: $item.getName()</td>
|
|
|
29 |
#if($saholicItem.getSellingPrice() != $item.getFbaPrice() || $saholicItem.getSellingPrice() != $item.getSellingPrice())
|
|
|
30 |
<td>$saholicItem.getSellingPrice() / FBA: $item.getFbaPrice() / MFN: $item.getSellingPrice()</td>
|
|
|
31 |
#else
|
|
|
32 |
<td>-</td>
|
|
|
33 |
#end
|
|
|
34 |
#if($saholicItem.isRisky())
|
|
|
35 |
<td><a style="visibility: hidden;">A</a><img alt="active" src="/Support/images/active.ico" style="width: 18px;"></td>
|
|
|
36 |
#else
|
|
|
37 |
<td><a style="visibility: hidden;">I</a><img alt="Inactive" src="/Support/images/inactive.ico" style="width: 18px;"></td>
|
|
|
38 |
#end
|
|
|
39 |
<td>$saholicItem.getItemStatus()</td>
|
|
|
40 |
#if($item.isIsCustomTime())
|
|
|
41 |
<td>Set To Custom</td>
|
|
|
42 |
#else
|
|
|
43 |
<td>Set To Default</td>
|
|
|
44 |
#end
|
|
|
45 |
#if($item.isIsInventoryOverride())
|
|
|
46 |
<td><a style="visibility: hidden;">A</a><img alt="active" src="/Support/images/active.ico" style="width: 18px;"></td>
|
|
|
47 |
#else
|
|
|
48 |
<td><a style="visibility: hidden;">I</a><img alt="Inactive" src="/Support/images/inactive.ico" style="width: 18px;"></td>
|
|
|
49 |
#end
|
|
|
50 |
#if($item.isIsNonFba())
|
|
|
51 |
<td><a style="visibility: hidden;">A</a><img alt="active" src="/Support/images/active.ico" style="width: 18px;"></td>
|
|
|
52 |
#else
|
|
|
53 |
<td><a style="visibility: hidden;">I</a><img alt="inactive" src="/Support/images/inactive.ico" style="width: 18px;"></td>
|
|
|
54 |
#end
|
|
|
55 |
#if($item.isIsFba())
|
|
|
56 |
<td><a style="visibility: hidden;">A</a><img alt="active" src="/Support/images/active.ico" style="width: 18px;"></td>
|
|
|
57 |
#else
|
|
|
58 |
<td><a style="visibility: hidden;">I</a><img alt="inactive" src="/Support/images/inactive.ico" style="width: 18px;"></td>
|
|
|
59 |
#end
|
| 10937 |
kshitij.so |
60 |
#if($item.isIsFbb())
|
|
|
61 |
<td><a style="visibility: hidden;">A</a><img alt="active" src="/Support/images/active.ico" style="width: 18px;"></td>
|
|
|
62 |
#else
|
|
|
63 |
<td><a style="visibility: hidden;">I</a><img alt="inactive" src="/Support/images/inactive.ico" style="width: 18px;"></td>
|
|
|
64 |
#end
|
| 8620 |
kshitij.so |
65 |
<td><a href="#" class="editItem" itemId="$item.getItemid()">View/Edit</a></td>
|
|
|
66 |
</td>
|
|
|
67 |
</tr>
|
|
|
68 |
#end
|
|
|
69 |
</tbody>
|
|
|
70 |
</table>
|
|
|
71 |
|