Commit d9937aff authored by pbhosale's avatar pbhosale

Updated on [18-12-2019][to avoid typeCast error at sun]

AttendanceDailyIC.java


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@213700 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 5da66f05
......@@ -823,9 +823,18 @@ public class AttendanceDailyIC extends ValidatorEJB implements AttendanceDailyIC
System.out.println("userLevel:::::" +userLevel);
System.out.println("xtraParams:::::" +xtraParams);
if(userLevel != null && userLevel.trim().length() > 0)
{
//Added By Poonam B[18-12-2019][START]
if(userLevel.equalsIgnoreCase(userId))
{
userLevelInt = 0;
}
else
{
userLevelInt = Integer.parseInt(userLevel);
}
//Added By Poonam B[18-12-2019][END]
}
//Added By Poonam B[26/11/2019][END]
conn = getConnection();
if(objContext != null && objContext.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