Unverified Commit 7979a3d0 authored by mmudrakola-nisum-com's avatar mmudrakola-nisum-com Committed by GitHub

Merge branch 'master' into FEATURE/CodeRefactorForLoginReportBasedOnDateTime

parents 6e6f159f 9cb1a524
......@@ -114,7 +114,6 @@ public class EmployeeDataService implements IEmployeeDataService {
int hours = (int) (totalseconds / 3600);
int minutes = (int) ((totalseconds % 3600) / 60);
int seconds = (int) ((totalseconds % 3600) % 60);
empLoginData.setTotalLoginTime(CommomUtil.appendZero(hours) + ":" + CommomUtil.appendZero(minutes) + ":"
+ CommomUtil.appendZero(seconds));
listOfEmpLoginData.add(empLoginData);
......
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