Commit 94811981 authored by msharma's avatar msharma

addnorder did not set if map found zero size


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97930 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 31c34742
...@@ -8005,7 +8005,16 @@ public class RunMRPPrc extends ProcessEJB implements RunMRPPrcLocal, RunMRPPrcRe ...@@ -8005,7 +8005,16 @@ public class RunMRPPrc extends ProcessEJB implements RunMRPPrcLocal, RunMRPPrcRe
} }
else else
{ {
mpsOrder.addnOrder= soItemListMap.get(itemCode).toString(); System.out.println("8008---soItemListMap.size["+soItemListMap.size()+"]");
if( soItemListMap.size() > 0 )
{
if(soItemListMap.containsKey(itemCode))
{
mpsOrder.addnOrder= soItemListMap.get(itemCode).toString();
}
}
} }
System.out.println("@@@@@@@@@itemCode 3 ["+itemCode+"] tempSORef["+tempSORef+"]"); System.out.println("@@@@@@@@@itemCode 3 ["+itemCode+"] tempSORef["+tempSORef+"]");
......
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