Commit 6b20f3fb authored by dpingle's avatar dpingle

* updated leave balance component on [13/11/19]

leaveBalIC.java


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@211918 ce508802-f39f-4f6c-b175-0d175dae99d5
parent c2446dad
......@@ -322,6 +322,11 @@ public class leaveBalIC extends ValidatorEJB implements leaveBalRemote,leaveBalL
effDateStr = checkNull(genericUtility.getColumnValue("eff_date", dom));
System.out.println("upto_date :: ["+uptoDateStr+"] \t eff_date :: ["+effDateStr+"]");
if(effDateStr == null || effDateStr.trim().length() == 0)
{
errList.add("VTDATE11");
errFields.add(childNodeName.toLowerCase());
}
if(uptoDateStr != null && effDateStr != null)
{
if(uptoDateStr.trim().length() > 0 && effDateStr.trim().length() > 0)
......
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