| Line 1... |
Line 1... |
| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
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">
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
| 3 |
<head>
|
3 |
<head>
|
| 4 |
<link rel="stylesheet" href="/inventory/css/demo_table.css" type="text/css" />
|
4 |
<link rel="stylesheet" href="/inventory/css/demo.css" type="text/css" />
|
| 5 |
<link rel="stylesheet" href="/inventory/css/demo_table_jui.css" type="text/css" />
|
5 |
<link rel="stylesheet" href="/inventory/css/jquery.dataTables.css" type="text/css" />
|
| 6 |
<link rel="stylesheet" href="/inventory/css/demo_page.css" type="text/css" />
|
6 |
<link rel="stylesheet" href="/inventory/css/jquery.dataTables.min.css" type="text/css" />
|
| - |
|
7 |
<link rel="stylesheet" href="/inventory/css/jquery.dataTables_themeroller.css" type="text/css" />
|
| 7 |
<title>
|
8 |
<title>
|
| 8 |
DOA OUT Items awaiting replacement
|
9 |
DOA OUT Items awaiting replacement
|
| 9 |
</title>
|
10 |
</title>
|
| 10 |
<script type="text/javascript" src="/inventory/js/jquery-1.4.2.js"></script>
|
11 |
<script type="text/javascript" src="/inventory/js/jquery1.11.js"></script>
|
| 11 |
<script type="text/javascript" src="/inventory/js/jquery.dataTables.min.js"></script>
|
12 |
<script type="text/javascript" src="/inventory/js/jquery.dataTables.js"></script>
|
| - |
|
13 |
<script type="text/javascript" src="/inventory/js/jquery.dataTables.1.10.3.min.js"></script>
|
| 12 |
<script type="text/javascript" src="/inventory/js/doa.js"></script>
|
14 |
<script type="text/javascript" src="/inventory/js/doa.js"></script>
|
| 13 |
<link rel="stylesheet" href="/inventory/css/common.css" type="text/css" />
|
15 |
<link rel="stylesheet" href="/inventory/css/common.css" type="text/css" />
|
| 14 |
</head>
|
16 |
</head>
|
| 15 |
<body>
|
17 |
<body>
|
| 16 |
<div >
|
18 |
<div >
|
| Line 24... |
Line 26... |
| 24 |
<th >WarehouseId</th>
|
26 |
<th >WarehouseId</th>
|
| 25 |
<th >Warehouse</th>
|
27 |
<th >Warehouse</th>
|
| 26 |
<th >ItemId</th>
|
28 |
<th >ItemId</th>
|
| 27 |
<th >Product</th>
|
29 |
<th >Product</th>
|
| 28 |
<th >Serial Number</th>
|
30 |
<th >Serial Number</th>
|
| - |
|
31 |
<th >Item Number</th>
|
| 29 |
<th >Purchase Order</th>
|
32 |
<th >Purchase Order</th>
|
| 30 |
<th ></th>
|
33 |
<th ></th>
|
| 31 |
<th ></th>
|
34 |
<th ></th>
|
| 32 |
<th ></th>
|
35 |
<th ></th>
|
| 33 |
</tr>
|
36 |
</tr>
|
| 34 |
</thead>
|
37 |
</thead>
|
| 35 |
<tbody >
|
38 |
<tbody >
|
| 36 |
#foreach($inventoryItem in $action.getInventoryItems())
|
39 |
#foreach($inventoryItem in $action.getInventoryItems())
|
| 37 |
<tr >
|
40 |
<tr >
|
| 38 |
<td >$inventoryItem.getCurrentWarehouseId()</td>
|
41 |
<td >$inventoryItem.getWarehouseId()</td>
|
| 39 |
<td >$action.getWarehouseDisplayName($inventoryItem.getCurrentWarehouseId())</td>
|
42 |
<td >$inventoryItem.getWarehouseName()</td>
|
| 40 |
<td >$inventoryItem.getItemId()</td>
|
43 |
<td >$inventoryItem.getItemId()</td>
|
| 41 |
<td >$action.getModelName($inventoryItem.getItemId())</td>
|
44 |
<td >$inventoryItem.getProduct()</td>
|
| 42 |
<td >$inventoryItem.getSerialNumber()</td>
|
45 |
<td >$inventoryItem.getSerialNumber()</td>
|
| - |
|
46 |
<td >$inventoryItem.getItemNumber()</td>
|
| 43 |
<td >$action.getPONumber($inventoryItem.getPurchaseId())</td>
|
47 |
<td >$inventoryItem.getPurchaseOrder()</td>
|
| 44 |
<td >
|
48 |
<td >
|
| 45 |
<form id="doa-out" inventoryItemId="$inventoryItem.getId()">
|
49 |
<form id="doa-out" inventoryItemId="$inventoryItem.getId()">
|
| 46 |
<div >
|
50 |
<div >
|
| 47 |
<input type="hidden" name="id" value="$inventoryItem.getId()"/>
|
51 |
<input type="hidden" name="id" value="$inventoryItem.getId()"/>
|
| 48 |
<input type="submit" value="Open PO for retrieval"/>
|
52 |
<input type="submit" value="Open PO for retrieval"/>
|