Rev 4754 |
Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 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 |
Warehouse Management::Purchase Orders
|
|
|
6 |
</title>
|
|
|
7 |
</head>
|
|
|
8 |
<body>
|
|
|
9 |
<a href="/inventory">Go to Home page</a>
|
|
|
10 |
<br />
|
|
|
11 |
<h2>Start or Continue a Purchase</h2>
|
|
|
12 |
<p>Open Purchase Orders</p>
|
|
|
13 |
#set($purchaseOrders = $action.getPurchaseOrders())
|
|
|
14 |
<ul>
|
|
|
15 |
#foreach($purchaseOrder in $purchaseOrders)
|
|
|
16 |
<li><a href="/inventory/purchase-order/$purchaseOrder.getId()">$purchaseOrder.getPoNumber()</a></li>
|
|
|
17 |
#end
|
|
|
18 |
</ul>
|
|
|
19 |
</body>
|
|
|
20 |
</html>
|