| 7648 |
amar.kumar |
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 |
<script type="text/javascript" src="/inventory/js/jquery-1.4.2.js"></script>
|
|
|
5 |
<script src="/inventory/js/jquery.dataTables.min.js" type="text/javascript"></script>
|
|
|
6 |
<script type="text/javascript" src="/inventory/js/TableTools.min.js"></script>
|
|
|
7 |
<script src = "/inventory/js/fba-sheet.js" type = "text/javascript"></script>
|
|
|
8 |
<link rel = "stylesheet" type = "text/css" href = "/inventory/css/common.css"></link>
|
|
|
9 |
<title>
|
|
|
10 |
FBA Sheet Generation Dashboard
|
|
|
11 |
</title>
|
|
|
12 |
</head>
|
|
|
13 |
<body>
|
|
|
14 |
<a href="/inventory">Go to Home page</a>
|
|
|
15 |
<br />
|
|
|
16 |
|
|
|
17 |
<h2>FBA Sheet Generator</h2><br/>
|
|
|
18 |
|
|
|
19 |
<span> Select Source Warehouse For Transfer:</span>
|
|
|
20 |
<select id = "warehouseSelector" name="warehouseId">
|
|
|
21 |
<option value = "0">Select...</option>
|
|
|
22 |
<option value = "12">Goregaon</option>
|
|
|
23 |
<option value = "13">Bhiwandi</option>
|
|
|
24 |
</select>
|
|
|
25 |
<br/><br/>
|
|
|
26 |
<table id = "fbaSheetTable">
|
|
|
27 |
<tr>
|
|
|
28 |
<th>ItemId</th>
|
|
|
29 |
<th>Quantity</th>
|
|
|
30 |
<th ></th>
|
|
|
31 |
</tr>
|
|
|
32 |
<tr id = "new-item-detail" class = "hidden">
|
|
|
33 |
<td><input type="text" class="required digits itemId" name="itemId" style="width:100px" /></td>
|
|
|
34 |
<td><input type="text" class="required digits quantity" name="quantity" style="width:100px"/></td>
|
|
|
35 |
<td ><a id="remove-lineitem" href="#">remove</a></td>
|
|
|
36 |
</tr>
|
|
|
37 |
|
|
|
38 |
<tr id = "item-detail">
|
|
|
39 |
<td><input type="text" class="required digits itemId" name="itemId" style="width:100px" /></td>
|
|
|
40 |
<td><input type="text" class="required digits quantity" name="quantity" style="width:100px"/></td>
|
|
|
41 |
<td ><a id="remove-lineitem" href="#">remove</a></td>
|
|
|
42 |
</tr>
|
|
|
43 |
</table>
|
|
|
44 |
|
|
|
45 |
<input type = "button" id = "addrow" value="Add Row"/>
|
|
|
46 |
<br/><br/>
|
|
|
47 |
|
|
|
48 |
<input type="button" id="generateSheet" value="Generate Sheet" />
|
|
|
49 |
</body>
|
|
|
50 |
</html>
|