| Line 38... |
Line 38... |
| 38 |
</span>
|
38 |
</span>
|
| 39 |
<span style="color:blue">
|
39 |
<span style="color:blue">
|
| 40 |
$action.getSuccessMsg()
|
40 |
$action.getSuccessMsg()
|
| 41 |
</span>
|
41 |
</span>
|
| 42 |
<form id = 'bulkScanUploadForm' action="/inventory/bulk-purchase/$action.getId()" enctype="multipart/form-data" method="post" onsubmit="return setFileName()">
|
42 |
<form id = 'bulkScanUploadForm' action="/inventory/bulk-purchase/$action.getId()" enctype="multipart/form-data" method="post" onsubmit="return setFileName()">
|
| - |
|
43 |
<span>Select Item Type:</span>
|
| - |
|
44 |
<select name ="selectItemType" id ="selectItemType">
|
| - |
|
45 |
<option value="SERIALIZED" >SERIALIZED</option>
|
| - |
|
46 |
<option value="NON_SERIALIZED" >NON_SERIALIZED</option>
|
| - |
|
47 |
</select>
|
| - |
|
48 |
<div id="selectItem">
|
| 43 |
<span>Select Item :</span>
|
49 |
<span>Select Item :</span>
|
| 44 |
<select name ="bulkScanUploadItem" id ="bulkScanUploadItem">
|
50 |
<select name ="bulkScanUploadItem" id ="bulkScanUploadItem">
|
| 45 |
<option selected="selected" value="-1">Select Item</option>
|
51 |
<option selected="selected" value="-1">Select Item</option>
|
| 46 |
#foreach ($item in $action.getItems())
|
52 |
#foreach ($item in $action.getItems())
|
| - |
|
53 |
#if($item.getType().toString()=="SERIALIZED")
|
| 47 |
#if($action.isItemScannedIn($item.getId()))
|
54 |
#if($action.isItemScannedIn($item.getId()))
|
| 48 |
<option value="$item.getId()" >$action.getName($item)</option>
|
55 |
<option value="$item.getId()" >$action.getName($item)</option>
|
| 49 |
#else
|
56 |
#else
|
| 50 |
<option value="$item.getId()" disabled="disabled" >$action.getName($item)</option>
|
57 |
<option value="$item.getId()" disabled="disabled" >$action.getName($item)</option>
|
| - |
|
58 |
#end
|
| 51 |
#end
|
59 |
#end
|
| 52 |
#end
|
60 |
#end
|
| 53 |
</select>
|
61 |
</select>
|
| - |
|
62 |
</div>
|
| 54 |
<br>
|
63 |
<br>
|
| 55 |
<span>Transfer on Scan-in to Warehouse </span>
|
64 |
<span>Transfer on Scan-in to Warehouse </span>
|
| 56 |
<select name = "transferWarehouseId">
|
65 |
<select name = "transferWarehouseId">
|
| 57 |
#if($action.getTransferWarehouseId())
|
66 |
#if($action.getTransferWarehouseId())
|
| 58 |
#foreach($warehouse in $action.getAllowedDestinationWarehousesForTransfer($action.getWarehouseId()))
|
67 |
#foreach($warehouse in $action.getAllowedDestinationWarehousesForTransfer($action.getWarehouseId()))
|