Commit 02e6b897 authored by dpingle's avatar dpingle

* Changes done in leave master on [30/08/19]

LeavesIC.java


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@206587 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d5adfb4c
...@@ -97,6 +97,17 @@ public class LeavesIC extends ValidatorEJB implements LeavesRemote, LeavesLocal ...@@ -97,6 +97,17 @@ public class LeavesIC extends ValidatorEJB implements LeavesRemote, LeavesLocal
valueXmlString.append("<ad_code__ench protect=\"1\"><![CDATA[").append("").append("]]></ad_code__ench>\r\n"); valueXmlString.append("<ad_code__ench protect=\"1\"><![CDATA[").append("").append("]]></ad_code__ench>\r\n");
} }
accumulate = checkNull(genericUtility.getColumnValue("accumulate", dom));
String accumulateMonth = checkNull(genericUtility.getColumnValue("accumulate_months", dom));
if (accumulate.trim().equalsIgnoreCase("N"))
{
valueXmlString.append("<accumulate_months protect=\"1\"><![CDATA[").append(0).append("]]></accumulate_months>\r\n");
}
else
{
valueXmlString.append("<accumulate_months protect=\"0\"><![CDATA[").append(accumulateMonth).append("]]></accumulate_months>\r\n");
}
} }
else if (currentColumn.equalsIgnoreCase("itm_defaultedit")) else if (currentColumn.equalsIgnoreCase("itm_defaultedit"))
{ {
......
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