| 4687 |
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 |
<title>
|
|
|
5 |
Inventory at $action.getWarehouse().getDisplayName()
|
|
|
6 |
</title>
|
|
|
7 |
<script type="text/javascript" src="/inventory/js/jquery-1.4.2.js"></script>
|
|
|
8 |
<script type="text/javascript" src="/inventory/js/current-inventory.js"></script>
|
|
|
9 |
<link rel="stylesheet" href="/inventory/css/common.css" type="text/css" />
|
|
|
10 |
</head>
|
|
|
11 |
<body>
|
|
|
12 |
<div >
|
|
|
13 |
<a href="/inventory/current-inventory">Go to all warehouses</a>
|
|
|
14 |
<br />
|
|
|
15 |
<table border="1">
|
|
|
16 |
<thead >
|
|
|
17 |
<tr >
|
|
|
18 |
<th>Item ID</th>
|
|
|
19 |
<th>Product</th>
|
|
|
20 |
<th>Availability</th>
|
|
|
21 |
<th>Reserved</th>
|
|
|
22 |
## <th ></th>
|
|
|
23 |
</tr>
|
|
|
24 |
</thead>
|
|
|
25 |
<tbody >
|
|
|
26 |
#foreach($item in $action.getInventory())
|
|
|
27 |
<tr >
|
|
|
28 |
<td >$item.getId()</td>
|
|
|
29 |
<td >$action.getName($item)</td>
|
|
|
30 |
<td >$action.getAvailibility($item)</td>
|
|
|
31 |
<td >$action.getReserved($item)</td>
|
|
|
32 |
## <td ><input class="increaseAvailabilityButton" type="button" value="Increase availability"/>
|
|
|
33 |
## <form class="increaseAvailabilityForm" method="post" action="/inventory/current-inventory!increaseAvailability">
|
|
|
34 |
## <div >
|
|
|
35 |
## <label >Quantity: </label>
|
|
|
36 |
## <input type="text" name="quantity"/> <br />
|
|
|
37 |
## <input type="submit" value="Increase availability"/>
|
|
|
38 |
## <input type="button" value="Cancel" class="cancelButton"/>
|
|
|
39 |
## <input type="hidden" name="itemId" value="$item.getId()"/>
|
|
|
40 |
## <input type="hidden" name="id" value="$action.getId()"/>
|
|
|
41 |
## </div>
|
|
|
42 |
## </form>
|
|
|
43 |
## </td>
|
|
|
44 |
</tr>
|
|
|
45 |
#end
|
|
|
46 |
</tbody>
|
|
|
47 |
</table>
|
|
|
48 |
</div>
|
|
|
49 |
</body>
|
|
|
50 |
</html>
|