public ActionResult SignOut()
        {
            try
            {
                Attendance attendance = AttendancesLogic.GetLastSignByUserId(SessionData.UserId);
                AttendancesLogic.UpdateAttendance(attendance);
                ActionRate actionRate = ActionRatesLogic.GetActionRateByName("Sign Out");
                EmployeePointsLogic.InsertNewEmployeePoint(new EmployeePoint()
                {
                    ActionRateId = actionRate.Id,
                    Date         = DateTimeHelper.Today(),
                    UserId       = attendance.EmpUserId,
                    Rate         = actionRate.MaxRate
                });

                return(RedirectToAction("UserSign"));
            }
            catch (Exception e)
            {
                LogsLogic.InsertLog(new Log()
                {
                    Message    = e.Message,
                    StackTrace = e.StackTrace,
                    StoryName  = "ManagementProject/Attendances/SignOut"
                });
                return(RedirectToAction("GeneralError", "Error", new { ErrorMessage = Error.ServerNotRespond }));
            }
        }
Ejemplo n.º 2
0
        public ActionResult BestOfMonth()
        {
            List <EmployeePointDetails> employeePoints = EmployeePointsLogic.MonthBestEmployees();

            employeePoints.FirstOrDefault().TitleName = "Best Employees Of " + DateTimeHelper.Today().ToString("MMMM");
            return(View("BestEmployeesPerPeriod", employeePoints));
        }
Ejemplo n.º 3
0
        public ActionResult BestOfQuarter()
        {
            string quarterName = "";
            List <EmployeePointDetails> employeePoints = EmployeePointsLogic.QuarterBestEmployees(out quarterName);

            employeePoints.FirstOrDefault().TitleName = "Best Employees Of " + quarterName + " Quarter";
            return(View("BestEmployeesPerPeriod", employeePoints));
        }
        public ActionResult SignIn(string latitude = "", string longitude = "")
        {
            try
            {
                Attendance attendancee = new Attendance();

                DateTime signInDate = DateTimeHelper.Today();
                if (signInDate != null)
                {
                    signInDate = DateTimeHelper.Today();
                }
                else
                {
                    return(RedirectToAction("UserSign", "Attendances", new { ErrorMessage = "Error in Time Server Connection", parameter = "" }));
                }

                if (!string.IsNullOrEmpty(latitude) && !string.IsNullOrEmpty(longitude) && signInDate.Hour < 12)
                {
                    Attendance attendance = new Attendance()
                    {
                        EmpUserId  = SessionData.UserId,
                        SignInDate = signInDate,
                        Latitude   = latitude,
                        Longitude  = longitude
                    };
                    AttendancesLogic.InsertNewAttendance(attendance);
                    ActionRate actionRate = ActionRatesLogic.GetActionRateByName("Sign In");
                    EmployeePointsLogic.InsertNewEmployeePoint(new EmployeePoint()
                    {
                        ActionRateId = actionRate.Id,
                        Date         = DateTime.Now,
                        UserId       = attendance.EmpUserId,
                        Rate         = actionRate.MaxRate
                    });
                }
                else if (signInDate.Hour >= 12)
                {
                    LogsLogic.InsertLog(new Log()
                    {
                        Message    = "this User breake the client side validation and try to signin within not correct time or maybe change his system time by mistck",
                        StackTrace = "",
                        Parameters = "user id = " + SessionData.UserId + " and username = "******"ManagementProject/Attendances/SignIn"
                    });
                    return(RedirectToAction("UserSign", "Attendances", new { errorMessage = "Your Time System is not Correct!" }));
                }
                else if (string.IsNullOrEmpty(latitude) || string.IsNullOrEmpty(longitude))
                {
                    LogsLogic.InsertLog(new Log()
                    {
                        Message    = "this User breake the client side validation and try to signin within not correct geoLocation or maybe something was wrong happened!",
                        StackTrace = "",
                        Parameters = "user id = " + SessionData.UserId + " and username = "******"SignIn"
                    });
                    return(RedirectToAction("UserSign", "Attendances", new { errorMessage = "Please check Location Permissions to allow to Signin!" }));
                }
                List <StandUpMeetingDetails> model = StandUpMeetingsLogic.GetTodayStandUpMeeting(SessionData.UserId);
                if (model.Count == 0)
                {
                    return(RedirectToAction("Create", "StandUpMeet"));
                }
                return(RedirectToAction("Index", "Home"));
            }
            catch (Exception e)
            {
                LogsLogic.InsertLog(new Log()
                {
                    Message    = e.Message,
                    StackTrace = e.StackTrace,
                    StoryName  = "ManagementProject/Attendances/SignIn"
                });
                return(RedirectToAction("GeneralError", "Error", new { ErrorMessage = Error.ServerNotRespond }));
            }
        }
Ejemplo n.º 5
0
        public ActionResult BestEmployeeOfMonthAndQuarter()
        {
            List <EmployeePointDetails> employeePoints = EmployeePointsLogic.MonthAndQuarterBestEmployees();

            return(PartialView(employeePoints));
        }