Commit 50e6e72f authored by ssurve's avatar ssurve

code for drop pallet issue fixed. detail2 and detail3 tag changed as per obj name condition


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96520 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 0a7ffe5b
......@@ -315,7 +315,18 @@ public class DistIssuePrs extends ValidatorEJB implements DistIssuePrsLocal, Dis
String currDomId = "";
int detailListLength = 0;
//---- Added by Sandesh 2-Oct-2014 -------
if("distisswiz".equalsIgnoreCase(objName))
{
detailList = dom.getElementsByTagName("Detail3");
}
else
{
detailList = dom.getElementsByTagName("Detail2");
}
//----------------------------
//detailList = dom.getElementsByTagName("Detail2"); // commented by Sandesh 2-Oct-2014
detailListLength = detailList.getLength();
for (int ctr = 0;ctr < detailListLength;ctr++)
{
......
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