Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
        <head>
                <title>
                        Warehouse Management::Purchase Order $action.getPurchaseOrder().getId()
                </title>
        </head>
        <body>
                <h2>Start or Continue a Purchase</h2>
                #set($purchases = $action.getPurchases())
                #if($purchases)
                <p>Open Purchases for PO $action.getPurchaseOrder().getPoNumber()</p>
                        #foreach($purchase in $purchases)
        <ul>
                        <li><a href="$action.getServletContextPath()/purchase/$purchase.getId()">Continue purchase no. $purchase.getId()</a></li>
                </ul>
                        #end
                #end
                <a href="$action.getServletContextPath()/purchase/new/?poId=$action.getPurchaseOrder().getId()">Start a new Purchase</a>
    </body>
</html>