Subversion Repositories SmartDukaan

Rev

Rev 7410 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
7410 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>
20623 amit.gupta 4
        <script type="text/javascript" src="/inventory/js/jquery-1.4.2.js"></script>
5
        <script type="text/javascript" src="/inventory/js/jquery.validate.js"></script>        
7410 amar.kumar 6
		<title>
7
			Warehouse Management::New Transfer-Lot
8
		</title>
9
	</head>
10
	<body>
11
        <script>
12
            $(document).ready(function() {
13
                $("form#newPurchase").validate();
14
            });
15
        </script>
16
        <a href="/inventory">Go to Home page</a>
17
        <br />                
18
		<h2>New Transfer</h2>
19
		<span style="color:red">
20
			$action.getErrorMessage()
21
		</span>
22
		<form id = "newTransfer" name="newTransfer" action="/inventory/transfer-lot" method="post">
23
			<table>
24
				<tr id = "origin-warehouse-for-transfer">
25
					<td>Origin Warehouse:</td>
26
					<td>
27
                        <select name="originWarehouseId" class="required"> 
28
                            #foreach($warehouseId in $action.getAuthorizedWarehousesForCurrentUser())
29
                                <option value="$warehouseId" >$warehouseId</option>
30
                            #end
31
                        </select>
32
    					</td>
33
				</tr>
34
 
35
				<tr id = "destination warehouse-for-transfer" class="required">
36
					<td>Destination Warehouse:</td>
37
					<td><input type = "text" name = "destinationWarehouseId" class="required"/>
38
						##Update this list based on selection of origin Warehouse
39
						<!--select name = "destinationWarehouseId" class="required">
40
							#foreach($warehouse in $action.getAuthorizedWarehousesForCurrentUser())
41
                                <option value="$warehouse.getId()" >$warehouse.getId()</option>
42
                            #end
43
                        </select-->
44
					</td>
45
				</tr>
46
				<tr>
47
					<td colspan="2" align="right">
48
						<input name="submit" type="submit" value="Start Transfer Lot Scans"/>
49
					</td>
50
				</tr>
51
		</form>
52
    </body>
53
</html>