Commit ab8f1455 authored by rbhogale's avatar rbhogale

Changed by Rohan 06-05-13 for multiple line item validation


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93009 ce508802-f39f-4f6c-b175-0d175dae99d5
parent eba5bbff
...@@ -2329,6 +2329,13 @@ public class ReplIssIC extends ValidatorEJB implements ReplIssICLocal, ReplIssIC ...@@ -2329,6 +2329,13 @@ public class ReplIssIC extends ValidatorEJB implements ReplIssICLocal, ReplIssIC
//Added By Mahesh Patidar on 31/07/12 //Added By Mahesh Patidar on 31/07/12
case 4: case 4:
{ {
//Changed by Rohan on 26-04-13 for define variable.start
String currentLoction = "";
int noOfLocCode = 0;
NodeList locCodeNodeList = null;
HashMap<String, String> locCodeList = new HashMap<String, String>();
//Changed by Rohan on 26-04-13 for define variable.end
childList = parentList.item(0).getChildNodes(); childList = parentList.item(0).getChildNodes();
noOfChilds = childList.getLength(); noOfChilds = childList.getLength();
for ( int ctr = 0; ctr < noOfChilds; ctr++ ) for ( int ctr = 0; ctr < noOfChilds; ctr++ )
...@@ -2586,6 +2593,8 @@ public class ReplIssIC extends ValidatorEJB implements ReplIssICLocal, ReplIssIC ...@@ -2586,6 +2593,8 @@ public class ReplIssIC extends ValidatorEJB implements ReplIssICLocal, ReplIssIC
errList.add( "VTLOCCODE1" ); errList.add( "VTLOCCODE1" );
errFields.add( childNodeName.toLowerCase() ); errFields.add( childNodeName.toLowerCase() );
} }
//Changed by Rohan on 26-03-13 for define validation out of singleLotSl validation.start
/*
String locCodeExist = ""; String locCodeExist = "";
NodeList locCodeNodeList = null; NodeList locCodeNodeList = null;
ArrayList dupLocCodeList = new ArrayList(); ArrayList dupLocCodeList = new ArrayList();
...@@ -2632,6 +2641,8 @@ public class ReplIssIC extends ValidatorEJB implements ReplIssICLocal, ReplIssIC ...@@ -2632,6 +2641,8 @@ public class ReplIssIC extends ValidatorEJB implements ReplIssICLocal, ReplIssIC
errList.add( "DUPLOCCODE" ); errList.add( "DUPLOCCODE" );
errFields.add( childNodeName.toLowerCase() ); errFields.add( childNodeName.toLowerCase() );
} }
*/
//Changed by Rohan on 26-03-13 for define validation out of singleLotSl validation.end
} }
else else
{ {
......
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