Commit f1f2eb43 authored by smestry's avatar smestry

Changed by Sneha. Updated the Warehouse User Activity dashboard.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@98436 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 76778325
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>dashboard</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>wms</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>
[Dolphin]
Timestamp=2015,7,24,11,27,59
Version=3
ViewMode=1
......@@ -224,13 +224,21 @@
if( parseInt(stockDtl[5].childNodes[0].nodeValue) >0)
{
newTable+="<tr> <td class='alert'>Hold Quantity</td> <td class='alert rght'>"+stockDtl[5].childNodes[0].nodeValue +"</td> </tr>";
//Changed by Sneha, for display of Lock Code on 16-07-2015, Request ID: SMWMS00008
newTable+="<tr> <td class='alert'>Lock Code</td> <td class='alert rght'>"+stockDtl[6].childNodes[0].nodeValue +"</td> </tr>";
//End by Sneha, for display of Lock Code on 16-07-2015, Request ID: SMWMS00008
}
else
{
newTable+="<tr> <td class='tdleftalign'>Hold Quantity</td> <td class='tdleftalign rght'>"+stockDtl[5].childNodes[0].nodeValue +"</td> </tr>";
}
//newTable+="<tr> <td class='tdleftalign'>Allocated Qty</td> <td class='tdrghtalign'>"+stockDtl[6].childNodes[0].nodeValue +"</td> </tr> </table> </td> </tr> </tbody> </table>";
newTable+="<tr> <td class='tdleftalign'>Allocated Qty</td> <td class='tdrghtalign'>"+stockDtl[6].childNodes[0].nodeValue +"</td> </tr> </table> </td> </tr> </tbody> </table>";
//Changed by Sneha, for display of Lock Code on 16-07-2015, Request ID: SMWMS00008
newTable+="<tr> <td class='tdleftalign'>Allocated Qty</td> <td class='tdrghtalign'>"+stockDtl[7].childNodes[0].nodeValue +"</td> </tr> </table> </td> </tr> </tbody> </table>";
//End by Sneha, for display of Lock Code on 16-07-2015, Request ID: SMWMS00008
/*
......@@ -370,7 +378,6 @@ span.appendChild(document.createTextNode(location));
</head>
<%
try {
ibase.utility.UserInfoBean userInfo = (ibase.utility.UserInfoBean) session.getAttribute("USER_INFO");
String user = userInfo.getLoginCode();
siteCode = userInfo.getSiteCode();
......@@ -389,7 +396,6 @@ span.appendChild(document.createTextNode(location));
selectedArea = request.getParameter("area");
locationRange = request.getParameter("locationRange");
if(locationRange==null)
{
locationRange ="";
......@@ -397,7 +403,9 @@ span.appendChild(document.createTextNode(location));
System.out.println("expStock = "+expStock + " occupiedRack ="+occupiedRack+" retestDate ="+retestDate);
if(selectedArea!=null && selectedArea.trim().length() != 0 )
{
areaStr = scmdasBean.getLocDtl(selectedArea, siteCode,locationRange);
areaStr = scmdasBean.getLocDtl(selectedArea.trim(), siteCode,locationRange);
//areaStr = scmdasBean.getLocDtl(selectedArea, siteCode,locationRange);
}
System.out.println("areaStr is ="+areaStr);
//end code on dated 21Aug2014
......@@ -421,8 +429,12 @@ span.appendChild(document.createTextNode(location));
<td>Area <select name="area" id="area">
<%
if (xmlString != null && xmlString.trim().length() > 0)
{
System.out.println("areaStr is ="+xmlString);
dom = genericUtility.parseString(xmlString);
if (dom != null)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment