Subversion Repositories SmartDukaan

Rev

Rev 756 | Rev 3062 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<head>
        <title>Saholic Logistics Support</title>
        <script language="javascript" src="js/jquery-1.4.2.js" type="text/javascript"></script>
</head>
<body>
        <div id="login" align="center">
        <p>
                Welcome to Saholic Logistics Support Center.<br/>
                Please select the location you want the details for.
        </p>
        <label>Warehouse:</label>
        <select name="warehouseId" id="warehouseId">
                #set( $warehouses = $action.getWarehouses())
                #foreach($warehouseId in $warehouses.keySet())
                <option value="$warehouseId">$warehouses.get($warehouseId)</option>
                #end
        </select>
        <br/>
        <a href="#">Download Report</a>
        </div>
        <script>
                $('a').click(function(e){
                        e.preventDefault();
                        window.location.href = "courier-details/" + $("#warehouseId option:selected").val();
                });
        </script>
</body>