Commit dc1f70b3 authored by sanashaikh's avatar sanashaikh

Sana S: Modified on 30/12/19

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@214309 ce508802-f39f-4f6c-b175-0d175dae99d5
parent fc024d93
...@@ -413,8 +413,8 @@ public class LeavesIC extends ValidatorEJB implements LeavesRemote, LeavesLocal ...@@ -413,8 +413,8 @@ public class LeavesIC extends ValidatorEJB implements LeavesRemote, LeavesLocal
String errString = ""; String errString = "";
String encashable = ""; String encashable = "";
String adCodeEnch = ""; String adCodeEnch = "";
int minAllowed = 0; double minAllowed = 0;
int maxAllowed = 0; double maxAllowed = 0;
String lveCodeConvert = ""; String lveCodeConvert = "";
String fldnm = ""; String fldnm = "";
String lveCode = ""; String lveCode = "";
...@@ -575,8 +575,8 @@ public class LeavesIC extends ValidatorEJB implements LeavesRemote, LeavesLocal ...@@ -575,8 +575,8 @@ public class LeavesIC extends ValidatorEJB implements LeavesRemote, LeavesLocal
} }
else if (childNodeName.equalsIgnoreCase("min_allowed") || (childNodeName.equalsIgnoreCase("max_allowed"))) else if (childNodeName.equalsIgnoreCase("min_allowed") || (childNodeName.equalsIgnoreCase("max_allowed")))
{ {
minAllowed = Integer.parseInt(checkInt(genericUtility.getColumnValue("min_allowed", dom))); minAllowed = Double.parseDouble(genericUtility.getColumnValue("min_allowed", dom));
maxAllowed = Integer.parseInt(checkInt(genericUtility.getColumnValue("max_allowed", dom))); maxAllowed = Double.parseDouble(genericUtility.getColumnValue("max_allowed", dom));
System.out.println("minAllowed:::::::"+minAllowed); System.out.println("minAllowed:::::::"+minAllowed);
System.out.println("maxAllowed:::::::"+maxAllowed); System.out.println("maxAllowed:::::::"+maxAllowed);
......
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