| 5110 |
mandeep.dh |
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
3 |
<head>
|
|
|
4 |
<link rel="stylesheet" href="/inventory/css/demo_table.css" type="text/css" />
|
|
|
5 |
<link rel="stylesheet" href="/inventory/css/demo_table_jui.css" type="text/css" />
|
|
|
6 |
<link rel="stylesheet" href="/inventory/css/demo_page.css" type="text/css" />
|
|
|
7 |
<title>
|
|
|
8 |
Ignored Item mappings
|
|
|
9 |
</title>
|
|
|
10 |
<script type="text/javascript" src="/inventory/js/jquery-1.4.2.js"></script>
|
|
|
11 |
<script type="text/javascript" src="/inventory/js/jquery.dataTables.min.js"></script>
|
|
|
12 |
<script type="text/javascript" src="/inventory/js/current-inventory.js"></script>
|
|
|
13 |
</head>
|
|
|
14 |
<body>
|
|
|
15 |
<div >
|
|
|
16 |
<a href="/inventory">Go to Home page</a>
|
|
|
17 |
<br />
|
|
|
18 |
<label >Ignored Item Mappings</label>
|
|
|
19 |
<br />
|
| 5126 |
mandeep.dh |
20 |
<table id="current-inventory" border="1">
|
| 5110 |
mandeep.dh |
21 |
<thead >
|
|
|
22 |
<tr >
|
|
|
23 |
<th >Warehouse</th>
|
|
|
24 |
<th >Mapping</th>
|
|
|
25 |
<th >Timestamp</th>
|
|
|
26 |
</tr>
|
|
|
27 |
</thead>
|
|
|
28 |
<tbody >
|
|
|
29 |
#foreach($key in $action.getIgnoredItemKeys().keySet())
|
|
|
30 |
<tr >
|
|
|
31 |
#set($map = $action.getIgnoredItemKeys().get($key))
|
|
|
32 |
#foreach($warehouse in $map.keySet())
|
|
|
33 |
<td >$warehouse</td>
|
|
|
34 |
<td >$key</td>
|
|
|
35 |
<td >$action.convertDate($map.get($warehouse))</td>
|
|
|
36 |
#end
|
|
|
37 |
</tr>
|
|
|
38 |
#end
|
|
|
39 |
</tbody>
|
|
|
40 |
</table>
|
|
|
41 |
</div>
|
|
|
42 |
</body>
|
|
|
43 |
</html>
|