Commit 7088ea05 authored by smanohar's avatar smanohar

Bug fixing, various site codes, if specified only validate otherwise skip the validation

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@188979 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 23fcb2aa
......@@ -409,6 +409,8 @@ public class ItemIC extends ValidatorEJB implements ItemICLocal, ItemICRemote {
}*/
childNodeValue = checkNullAndTrim(genericUtility.getColumnValue(childNodeName, dom));
if (childNodeValue != null && childNodeValue.trim().length() > 0 )
{
errCode = this.isSiteCode(childNodeValue, transer);
System.out.println("SiteCode Error code is"+errCode);
if (errCode != null && errCode.trim().length() > 0)
......@@ -416,6 +418,7 @@ public class ItemIC extends ValidatorEJB implements ItemICLocal, ItemICRemote {
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
// Changed By Nasruddin [19-SEP-16] END
}
//loc_code/loc_type__parent/loc_zone__pref/loc_code__recv
......
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