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>
        <script type="text/javascript" src="/inventory/js/jquery-1.4.2.js"></script>
                <script src="/inventory/js/jquery.dataTables.min.js" type="text/javascript"></script>
                <script type="text/javascript" src="/inventory/js/TableTools.min.js"></script>
                <script src = "/inventory/js/fba-sheet.js" type = "text/javascript"></script>
        <link rel = "stylesheet" type = "text/css" href = "/inventory/css/common.css"></link>
        <title>
                        FBA Sheet Generation Dashboard
        </title>
    </head>
        <body>
        <a href="/inventory">Go to Home page</a>
        <br />
                
        <h2>FBA Sheet Generator</h2><br/>
                
                <span> Select Source Warehouse For Transfer:</span>
                <select id = "warehouseSelector" name="warehouseId">
                        <option value = "0">Select...</option>
                        <option value = "12">Goregaon</option>
                        <option value = "13">Bhiwandi</option>  
                </select>
                <br/><br/>
                <table id = "fbaSheetTable">
                        <tr>
                                <th>ItemId</th>
                                <th>Quantity</th>
                <th ></th>
            </tr>
                        <tr id = "new-item-detail" class = "hidden">
                <td><input type="text" class="required digits itemId" name="itemId" style="width:100px" /></td>
                                <td><input type="text" class="required digits quantity" name="quantity" style="width:100px"/></td>
                                <td ><a id="remove-lineitem" href="#">remove</a></td>
            </tr>
                        
                        <tr id = "item-detail">
                <td><input type="text" class="required digits itemId" name="itemId" style="width:100px" /></td>
                                <td><input type="text" class="required digits quantity" name="quantity" style="width:100px"/></td>
                                <td ><a id="remove-lineitem" href="#">remove</a></td>
            </tr>
        </table>
                
                <input type = "button" id = "addrow" value="Add Row"/>
                <br/><br/>

                <input type="button" id="generateSheet" value="Generate Sheet" />
    </body>
</html>