Commit 9dd13fff authored by msingh's avatar msingh

Changed by Manish on 28/02/2016 in case of DDUK,validation is not required for...

Changed by Manish on 28/02/2016 in case of DDUK,validation is not required for location code to and sys.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@100286 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 075808f9
...@@ -3608,16 +3608,22 @@ public class ReplIssIC extends ValidatorEJB implements ReplIssICLocal, ReplIssIC ...@@ -3608,16 +3608,22 @@ public class ReplIssIC extends ValidatorEJB implements ReplIssICLocal, ReplIssIC
errFields.add( childNodeName.toLowerCase() ); errFields.add( childNodeName.toLowerCase() );
} }
} }
//changed by sankara on 08/05/14 for check loc code to and suggestion loc code start. //changed by sankara on 08/05/14 for check loc code to and suggestion loc code start.
locCodeTo = checkNull(genericUtility.getColumnValue("loc_code__to", allFormDataDom, "4" )); locCodeTo = checkNull(genericUtility.getColumnValue("loc_code__to", allFormDataDom, "4" ));
locCodeSys = checkNull(genericUtility.getColumnValue("loc_code__sys", allFormDataDom, "4" )); locCodeSys = checkNull(genericUtility.getColumnValue("loc_code__sys", allFormDataDom, "4" ));
System.out.println("dom4locCodeTo::::::"+locCodeTo); System.out.println("dom4locCodeTo::::::"+locCodeTo);
System.out.println("dom4locCodeSys::::::"+locCodeSys); System.out.println("dom4locCodeSys::::::"+locCodeSys);
if( !locCodeSys.trim().equalsIgnoreCase(locCodeTo.trim()))
{ // Changed by Manish on 28/02/2016 in case of DDUK,validation is not required [start]
errList.add( "VTSYSLOCCD" ); if(!"DDUK".equalsIgnoreCase(projectName))
errFields.add( childNodeName.toLowerCase() ); {
} if( !locCodeSys.trim().equalsIgnoreCase(locCodeTo.trim()))
{
errList.add( "VTSYSLOCCD" );
errFields.add( childNodeName.toLowerCase() );
}
}
// Changed by Manish on 28/02/2016 in case of DDUK,validation is not required [end]
//changed by sankara on 08/05/14 check loc code to and suggestion loc code end. //changed by sankara on 08/05/14 check loc code to and suggestion loc code end.
} }
} }
......
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