Commit 1d7b1c36 authored by ppatro's avatar ppatro

bug found in consolidated to dock


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92493 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 67ab703b
...@@ -1260,7 +1260,9 @@ public class ConsolidatToDoc { ...@@ -1260,7 +1260,9 @@ public class ConsolidatToDoc {
refSer = rs.getString("REF_SER"); refSer = rs.getString("REF_SER");
refId = rs.getString("REF_ID"); refId = rs.getString("REF_ID");
if(hasMap.containsKey(refSer)) //Changed By Pragyan 08/01/13 as bug found in Stock To dock
//if(hasMap.containsKey(refSer))
if(hasMap.containsKey(refSer.trim()))
{ {
tempList = (ArrayList)hasMap.get(refSer.trim()); tempList = (ArrayList)hasMap.get(refSer.trim());
tempList.add(refId); tempList.add(refId);
......
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