Subversion Repositories SmartDukaan

Rev

Rev 7441 | Rev 7648 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7441 Rev 7447
Line 46... Line 46...
46
			
46
			
47
			##if ($action.isTransferAllowedFromWarehouse($action.getWarehouseId()))
47
			##if ($action.isTransferAllowedFromWarehouse($action.getWarehouseId()))
48
			<div id = "item-transfer-warehouse-selector">
48
			<div id = "item-transfer-warehouse-selector">
49
				<span>Transfer on Scan-in to Warehouse </span>
49
				<span>Transfer on Scan-in to Warehouse </span>
50
				<select name = "transferWarehouseId">
50
				<select name = "transferWarehouseId">
51
					<option value = "0" >Select...</option>
-
 
52
					#if($action.getTransferWarehouseId())
51
					#if($action.getTransferWarehouseId())
53
						#foreach($warehouse in $action.getAllowedDestinationWarehousesForTransfer($action.getWarehouseId()))
52
						#foreach($warehouse in $action.getAllowedDestinationWarehousesForTransfer($action.getWarehouseId()))
54
    						#if($warehouse.getId()==$action.getTransferWarehouseId())
53
    						#if($warehouse.getId()==$action.getTransferWarehouseId())
55
    							<option value = "$warehouse.getId()" selected>$warehouse.getDisplayName()</option>
54
    							<option value = "$warehouse.getId()" selected>$warehouse.getDisplayName()</option>
56
							#end
55
							#end
57
						#end
56
						#end
58
					#else
57
					#else
-
 
58
						<option value = "0" >Select...</option>
59
    					#foreach($warehouse in $action.getAllowedDestinationWarehousesForTransfer($action.getWarehouseId()))
59
    					#foreach($warehouse in $action.getAllowedDestinationWarehousesForTransfer($action.getWarehouseId()))
60
    						<option value = "$warehouse.getId()">$warehouse.getDisplayName()</option>
60
    						<option value = "$warehouse.getId()">$warehouse.getDisplayName()</option>
61
						#end
61
						#end
62
					#end
62
					#end
63
                </select>
63
                </select>