| Line 48... |
Line 48... |
| 48 |
</thead>
|
48 |
</thead>
|
| 49 |
<tbody>
|
49 |
<tbody>
|
| 50 |
#foreach($item in $liquidations)
|
50 |
#foreach($item in $liquidations)
|
| 51 |
<tr>
|
51 |
<tr>
|
| 52 |
<td>$item.getId()</td>
|
52 |
<td>$item.getId()</td>
|
| 53 |
<td>$saholicStockMap.get($item.catalogId).getBrand() $saholicStockMap.get($item.catalogId).getModelNumber()</td>
|
53 |
<td>$saholicStockMap.get($item.catalogId).get(0).getBrand() $saholicStockMap.get($item.catalogId).get(0).getModelNumber()</td>
|
| 54 |
<td>$item.price</td>
|
54 |
<td>$item.price</td>
|
| 55 |
<td>#if($bidsMap.get($item.getId()).size() > 0)
|
55 |
<td>#if($bidsMap.get($item.getId()).size() > 0)
|
| 56 |
<a role="button" onclick="viewBids($item.getId(), `$saholicStockMap.get($item.catalogId).getBrand() $saholicStockMap.get($item.catalogId).getModelNumber()`)">
|
56 |
<a role="button" onclick="viewBids($item.getId(), `$saholicStockMap.get($item.catalogId).get(0).getBrand() $saholicStockMap.get($item.catalogId).get(0).getModelNumber()`)">
|
| 57 |
$bidsMap.get($item.getId()).size()
|
57 |
$bidsMap.get($item.getId()).size()
|
| 58 |
</a>
|
58 |
</a>
|
| 59 |
#else 0 #end
|
59 |
#else 0 #end
|
| 60 |
</td>
|
60 |
</td>
|
| 61 |
<td>$item.startDate.format($dateTimeFormatter) - $item.endDate.format($dateTimeFormatter)</td>
|
61 |
<td>$item.startDate.format($dateTimeFormatter) - $item.endDate.format($dateTimeFormatter)</td>
|
| Line 186... |
Line 186... |
| 186 |
<tbody>
|
186 |
<tbody>
|
| 187 |
#foreach($item in $liquidations)
|
187 |
#foreach($item in $liquidations)
|
| 188 |
#if($item.status == "ACTIVE")
|
188 |
#if($item.status == "ACTIVE")
|
| 189 |
<tr>
|
189 |
<tr>
|
| 190 |
<td><input type="checkbox" class="selectLiquidations" value="$item.getId()"></td>
|
190 |
<td><input type="checkbox" class="selectLiquidations" value="$item.getId()"></td>
|
| 191 |
<td>$saholicStockMap.get($item.catalogId).getBrand() $saholicStockMap.get($item.catalogId).getModelNumber()</td>
|
191 |
<td>$saholicStockMap.get($item.catalogId).get(0).getBrand() $saholicStockMap.get($item.catalogId).get(0).getModelNumber()</td>
|
| 192 |
<td>$item.price</td>
|
192 |
<td>$item.price</td>
|
| 193 |
<td>$item.startDate.format($dateTimeFormatter) - $item.endDate.format($dateTimeFormatter)</td>
|
193 |
<td>$item.startDate.format($dateTimeFormatter) - $item.endDate.format($dateTimeFormatter)</td>
|
| 194 |
<td>$item.status</td>
|
194 |
<td>$item.status</td>
|
| 195 |
</tr>
|
195 |
</tr>
|
| 196 |
#end
|
196 |
#end
|