private int ComputeWorkday(Guid asynTaskID, Guid userID, int totalProfile, int totalComputed, double timeoutMinutes, DateTime dateFrom, DateTime dateTo, out DataErrorCode dataErrorCode, params Hre_ProfileEntity[] listProfile) { List<Att_Workday> listWorkday = new List<Att_Workday>(); List<Att_Workday> listWorkdayChecked = new List<Att_Workday>(); List<Att_Workday> listWorkdayAnalyze = new List<Att_Workday>(); dateFrom = dateFrom <= DateTime.MinValue ? DateTime.Now : dateFrom; dateTo = dateTo <= DateTime.MinValue ? DateTime.Now : dateTo; DateTime dateStart = dateFrom.AddDays(-1); DateTime dateEnd = dateTo.AddDays(1); using (var context = new VnrHrmDataContext()) { var workHistoryServices = new Hre_WorkHistoryServices(); var leavedayServices = new Att_LeavedayServices(); var unitOfWork = new UnitOfWork(context); string waitStatus = ProfileStatusSyn.E_WAITING.ToString(); string rosterStatus = RosterStatus.E_APPROVED.ToString(); string leaveDayStatus = LeaveDayStatus.E_APPROVED.ToString(); String appConfigInfo = AppConfig.E_SERVER_TAM.ToString(); string E_LEAVE_EARLY = PregnancyType.E_LEAVE_EARLY.ToString(); string workdaySrcType = WorkdaySrcType.E_MANUAL.ToString(); string workdayStatus1 = WorkdayStatus.E_APPROVED.ToString(); string workdayStatus2 = WorkdayStatus.E_WAIT_APPROVED.ToString(); var listProfileID = listProfile.Select(d => d.ID).ToArray(); #region Delete Workday đã tổng hợp trước đó if (unitOfWork.CheckLock(typeof(Att_Workday), dateFrom, dateTo)) { dataErrorCode = DataErrorCode.Locked; CompleteComputingTask(asynTaskID, userID, totalComputed, totalProfile, dataErrorCode); return listWorkday.Count(); } else { Task task = Task.Run(() => DeleteWorkday(userID, dateFrom, dateTo, workdaySrcType, workdayStatus1, workdayStatus2, listProfileID)); } #endregion #region Khởi tạo dữ liệu cho lần tổng hợp var tamScanLogQueryable = unitOfWork.CreateQueryable<Att_TAMScanLog>(Guid.Empty, d => d.ProfileID.HasValue && listProfileID.Contains(d.ProfileID.Value) && d.TimeLog.HasValue && d.TimeLog >= dateStart && d.TimeLog <= dateEnd); //Danh sách quẹt thẻ theo điều kiện được chọn var listAllTamScanLog = tamScanLogQueryable.Select(d => new Att_TAMScanLogEntity { ID = d.ID, ProfileID = d.ProfileID, CardCode = d.CardCode, CodeEmp = d.CodeEmp, TimeLog = d.TimeLog, SrcType = d.SrcType, Type = d.Type }).ToList(); var listRoster = unitOfWork.CreateQueryable<Att_Roster>(Guid.Empty, d => d.Status == rosterStatus && d.DateStart <= dateEnd && d.DateEnd >= dateStart.Date && listProfileID.Contains(d.ProfileID)).Select(d => new Att_RosterEntity { ID = d.ID, ProfileID = d.ProfileID, RosterGroupName = d.RosterGroupName, Type = d.Type, Status = d.Status, DateEnd = d.DateEnd, DateStart = d.DateStart, MonShiftID = d.MonShiftID, TueShiftID = d.TueShiftID, WedShiftID = d.WedShiftID, ThuShiftID = d.ThuShiftID, FriShiftID = d.FriShiftID, SatShiftID = d.SatShiftID, SunShiftID = d.SunShiftID, MonShift2ID = d.MonShiftID, TueShift2ID = d.TueShift2ID, WedShift2ID = d.WedShift2ID, ThuShift2ID = d.ThuShift2ID, FriShift2ID = d.FriShift2ID, SatShift2ID = d.SatShift2ID, SunShift2ID = d.SunShift2ID }).ToList(); var listRosterGroup = unitOfWork.CreateQueryable<Att_RosterGroup>(Guid.Empty, m => m.DateStart != null && m.DateEnd != null && m.DateStart <= dateEnd && m.DateEnd >= dateStart.Date).Select(d => new Att_RosterGroupEntity { ID = d.ID, DateEnd = d.DateEnd, DateStart = d.DateStart, MonShiftID = d.MonShiftID, TueShiftID = d.TueShiftID, WedShiftID = d.WedShiftID, ThuShiftID = d.ThuShiftID, FriShiftID = d.FriShiftID, SatShiftID = d.SatShiftID, SunShiftID = d.SunShiftID, RosterGroupName = d.RosterGroupName }).ToList(); var listShift = unitOfWork.CreateQueryable<Cat_Shift>(Guid.Empty).ToList(); var listHoliday = unitOfWork.CreateQueryable<Cat_DayOff>(Guid.Empty, d => d.DateOff >= dateFrom.Date && d.DateOff <= dateTo).Select(d => new Cat_DayOffEntity { ID = d.ID, DateOff = d.DateOff, Type = d.Type }).ToList(); var listWorkdayExisting = unitOfWork.CreateQueryable<Att_Workday>(Guid.Empty, d => d.WorkDate >= dateStart && d.WorkDate <= dateEnd && (d.SrcType == workdaySrcType || d.Status == workdayStatus1 || d.Status == workdayStatus2) && listProfileID.Contains(d.ProfileID)).ToList(); var listLeaveDay = unitOfWork.CreateQueryable<Att_LeaveDay>(Guid.Empty, d => d.Status == leaveDayStatus && d.DateStart <= dateTo && d.DateEnd >= dateFrom.Date && listProfileID.Contains(d.ID)).Select(d => new { d.ID, d.ProfileID, d.LeaveDayTypeID, d.DateOvertimeOff, d.DateStart, d.DateEnd }).ToList(); var listLeaveDayType = unitOfWork.CreateQueryable<Cat_LeaveDayType>(Guid.Empty).Select(d => new { d.ID, d.Code, d.MissInOutReasonID }).ToList(); var listAllSetting = unitOfWork.CreateQueryable<Sys_AllSetting>(Guid.Empty, i => i.Name == AppConfig.HRM_ATT_WORKDAY_SUMMARY_MAXHOURSONESHIFT.ToString() || i.Name == AppConfig.HRM_ATT_WORKDAY_SUMMARY_MAXHOURSNEXTINOUT.ToString() || i.Name == AppConfig.HRM_ATT_WORKDAY_SUMMARY_MINMINUTESSAMEATT.ToString() || i.Name == AppConfig.HRM_ATT_WORKDAY_SUMMARY_SYMBOL.ToString() || i.Name == AppConfig.HRM_ATT_WORKDAY_SUMMARY_DETECTSHIFT.ToString() || i.Name == AppConfig.HRM_ATT_WORKDAY_SUMMARY_TYPELOADDATA.ToString()).Select(d => new { d.Name, d.Value1, d.Value2 }).ToList(); var inOutConfigMaxHoursOneShift = listAllSetting.Where(i => i.Name == AppConfig.HRM_ATT_WORKDAY_SUMMARY_MAXHOURSONESHIFT.ToString()).FirstOrDefault(); var inOutConfigMaxHoursNextInOut = listAllSetting.Where(i => i.Name == AppConfig.HRM_ATT_WORKDAY_SUMMARY_MAXHOURSNEXTINOUT.ToString()).FirstOrDefault(); var inOutConfigMinMinutesSameAtt = listAllSetting.Where(i => i.Name == AppConfig.HRM_ATT_WORKDAY_SUMMARY_MINMINUTESSAMEATT.ToString()).FirstOrDefault(); var inOutConfigSymbol = listAllSetting.Where(i => i.Name == AppConfig.HRM_ATT_WORKDAY_SUMMARY_SYMBOL.ToString()).FirstOrDefault(); var inOutConfigDetectShift = listAllSetting.Where(i => i.Name == AppConfig.HRM_ATT_WORKDAY_SUMMARY_DETECTSHIFT.ToString()).FirstOrDefault(); var inOutConfigTypeLoadData = listAllSetting.Where(i => i.Name == AppConfig.HRM_ATT_WORKDAY_SUMMARY_TYPELOADDATA.ToString()).FirstOrDefault(); var inOutConfig = new string[] { string.Empty }.Select(d => new WorkdayConfig { MaxHoursOneShift = inOutConfigMaxHoursOneShift != null ? inOutConfigMaxHoursOneShift.Value1 : string.Empty, MaxHoursNextInOut = inOutConfigMaxHoursNextInOut != null ? inOutConfigMaxHoursNextInOut.Value1 : string.Empty, MinMinutesSameAtt = inOutConfigMinMinutesSameAtt != null ? inOutConfigMinMinutesSameAtt.Value1 : string.Empty, TypeLoadData = inOutConfigTypeLoadData != null ? inOutConfigTypeLoadData.Value1 : string.Empty, SymbolIn = inOutConfigSymbol != null ? inOutConfigTypeLoadData.Value1 : string.Empty, SymbolOut = inOutConfigSymbol != null ? inOutConfigTypeLoadData.Value2 : string.Empty, DetectShift = inOutConfigDetectShift != null ? inOutConfigTypeLoadData.Value1 : string.Empty, DetectWrongShift = inOutConfigDetectShift != null ? inOutConfigTypeLoadData.Value2 : string.Empty, }).FirstOrDefault(); List<Att_Pregnancy> lstPrenancy = unitOfWork.CreateQueryable<Att_Pregnancy>(Guid.Empty, m => m.Type == E_LEAVE_EARLY && m.DateEnd >= dateFrom && m.DateStart < dateTo && listProfileID.Contains(m.ProfileID)).ToList(); List<Cat_LateEarlyRule> lstLateEarlyRule = unitOfWork.CreateQueryable<Cat_LateEarlyRule>(Guid.Empty).ToList(); List<Cat_GradeAttendance> lstGradeConfig = unitOfWork.CreateQueryable<Cat_GradeAttendance>(Guid.Empty).ToList(); List<Att_Grade> lstGrade = unitOfWork.CreateQueryable<Att_Grade>(Guid.Empty, m => m.ProfileID.HasValue && listProfileID.Contains(m.ProfileID.Value)).ToList(); List<DateTime> lstDayOff = unitOfWork.CreateQueryable<Cat_DayOff>(Guid.Empty, m => m.DateOff >= dateStart && m.DateOff <= dateEnd).Select(m => m.DateOff).ToList<DateTime>(); #endregion #region Bắt đầu xử lý tổng hợp in out string sameAttConfig = inOutConfig != null ? inOutConfig.MinMinutesSameAtt : string.Empty; var minMinutesSameAtt = VnResource.Helper.Data.DataHelper.TryGetValue<double>(sameAttConfig); //Loại bỏ những dòng quẹt thẻ liền kề nhau trong khoảng thời gian như cấu hình var listTamScanLog = RemoveSameTimeLog(listAllTamScanLog, minMinutesSameAtt); //Giữ danh sách những quẹt thẻ tạm thời được cho là trùng với những quẹt thẻ khác để xử lý sau var listTamScanLogRemove = listAllTamScanLog.Where(d => !listTamScanLog.Contains(d)).ToList(); using (var taskContext = new VnrHrmDataContext()) { var taskUnitOfWork = new UnitOfWork(taskContext); Sys_AsynTask asynTask = null; if (asynTaskID != Guid.Empty) { asynTask = taskUnitOfWork.CreateQueryable<Sys_AsynTask>(s => s.ID == asynTaskID).FirstOrDefault(); } int totalComputedProfileMustSubmitTask = 50; int totalComputedProfileMustSubmit = 200; int totalComputedProfileForSubmit = 0; int totalComputedProfileForTask = 0; totalComputedProfileMustSubmitTask = totalProfile * 5 / 100; if (totalComputedProfileMustSubmitTask > listProfile.Count()) { totalComputedProfileMustSubmitTask = listProfile.Count(); } foreach (var profile in listProfile) { #region Cập nhật thời gian tính timeout cho task if (asynTask != null) { bool mustSaveTask = false; if (asynTask.TimeEnd.HasValue) { var timeoutDate = DateTime.Now.AddMinutes(-timeoutMinutes); if (timeoutDate.AddMinutes(1) >= asynTask.TimeEnd.Value) { asynTask.TimeEnd = DateTime.Now; mustSaveTask = true; } } totalComputedProfileForTask++; double percent = totalComputedProfileForTask / (double)totalProfile; if (totalComputedProfileForTask >= totalComputedProfileMustSubmitTask) { var totalPercent = asynTask.PercentComplete + percent; asynTask.PercentComplete = totalPercent; asynTask.TimeEnd = DateTime.Now; mustSaveTask = true; } if (mustSaveTask) { taskUnitOfWork.SaveChanges(userID); totalComputedProfileForTask = 0; } } #endregion #region Những dữ liệu liên quan theo từng nhân viên var listRosterByProfile = listRoster.Where(d => d.ProfileID == profile.ID).ToList(); var listMonthShifts = Att_AttendanceLib.GetDailyShifts(dateStart, dateEnd, profile.ID, listRosterByProfile, listRosterGroup); #endregion #region Xử lý tổng hợp in out theo từng ngày for (DateTime date = dateFrom.Date; date <= dateTo; date = date.AddDays(1)) { Att_Workday workday = listWorkdayExisting.Where(d => d.ProfileID == profile.ID && d.WorkDate == date).FirstOrDefault(); var shiftByDate = listMonthShifts.Where(d => d.Key == date).Select(d => d.Value).FirstOrDefault(); Guid? shiftID1 = Guid.Empty; Guid? shiftID2 = Guid.Empty; if (shiftByDate != null) { if (shiftByDate.Count() > 0) { shiftID1 = shiftByDate[0]; } if (shiftByDate.Count() > 1) { shiftID2 = shiftByDate[1]; } } var shiftInfo1 = listShift.Where(d => d.ID == shiftID1).FirstOrDefault(); var shiftInfo2 = listShift.Where(d => d.ID == shiftID2).FirstOrDefault(); if ((profile.DateQuit.HasValue && profile.DateQuit.Value.Date <= date) || (profile.DateHire.HasValue && profile.DateHire.Value.Date > date)) { if (workday != null) { workday.IsDelete = true; } continue; } if (workday != null) { if (shiftByDate == null) { shiftByDate = new List<Guid?>(); } if ((!shiftID1.HasValue || shiftID1 == Guid.Empty)) { if (workday.ShiftActual.HasValue) { shiftByDate.Insert(0, workday.ShiftActual); } } if ((!shiftID2.HasValue || shiftID2 == Guid.Empty)) { if (workday.ShiftActual2.HasValue) { if (shiftByDate.Count() == 0) { shiftByDate.Add(Guid.Empty); } shiftByDate.Add(workday.ShiftActual2); } } if (listMonthShifts.ContainsKey(date)) { listMonthShifts[date] = shiftByDate; } else { listMonthShifts.Add(date, shiftByDate); } if ((workday.SrcType == workdaySrcType || workday.Status == workdayStatus1 || workday.Status == workdayStatus2)) { listWorkday.Add(workday); continue; } } Guid? actualShiftID1 = null; Guid? actualShiftID2 = null; bool isPreWorkday = false; var listTamScanLogByCardCode = listTamScanLog.Where(d => d.ProfileID == profile.ID).OrderBy(d => d.TimeLog).ToList(); var listTamScanLogByCardCodeUnchecked = listTamScanLogByCardCode.Where(d => !d.Checked && d.TimeLog.HasValue).ToList(); if (shiftID1.HasValue && shiftID1 != Guid.Empty) { #region Trường hợp có lịch làm việc - ca thứ nhất workday = CreateWorkday(unitOfWork, date, profile, inOutConfig, listHoliday, listWorkday, workday, false, shiftID1, shiftInfo1, listShift, listMonthShifts, out actualShiftID1, listTamScanLogByCardCode, listTamScanLogByCardCodeUnchecked); #endregion } else if (shiftID2.HasValue && shiftID2 != Guid.Empty) { #region Trường hợp có lịch làm việc - ca thứ hai workday = CreateWorkday(unitOfWork, date, profile, inOutConfig, listHoliday, listWorkday, workday, true, shiftID2, shiftInfo2, listShift, listMonthShifts, out actualShiftID2, listTamScanLogByCardCode, listTamScanLogByCardCodeUnchecked); #endregion } else if (inOutConfig != null && inOutConfig.DetectShift == Boolean.TrueString) { #region Trường hợp không có lịch làm việc var listTamScanLogByDate = listTamScanLogByCardCodeUnchecked.Where(d => d.TimeLog.Value.Date == date).ToList(); if (listTamScanLogByDate.Count() > 0) { var shiftInTime = date.Date.AddHours(12); var listTimeLog = new List<Att_TAMScanLogEntity>(); bool isWrongShiftDetected = false; foreach (var item in listTamScanLogByDate) { if (item.TimeLog < shiftInTime) { //Quẹt thẻ gần với thời gian vào của ca -> miss-out hoặc làm sai ca //Tìm ca làm việc trước gần nhất và dòng quẹt thẻ trước gần nhất của nhân viên đang xét var preShift = listMonthShifts.Where(d => d.Key >= date.AddDays(-1) && d.Key < date).OrderByDescending(d => d.Key).FirstOrDefault(); var preShiftValue = preShift.Value != null && preShift.Value.Count() > 0 ? preShift.Value.LastOrDefault() : null; //Lấy dòng quẹt thẻ hiện tại và 2 dòng quẹt thẻ phía trước gần nhất của nhân viên đang xét để kiểm tra ca trước var listPreTamScanLog = listTamScanLogByCardCode.Where(d => d.TimeLog <= item.TimeLog).OrderByDescending(d => d.TimeLog).Take(3).ToList(); var listTamScanLogByPreShift = GetTamScanLogByShift(preShift.Key, listShift, preShiftValue, listMonthShifts, listPreTamScanLog.ToArray()); //Nếu 2 dòng quẹt thẻ phía trước không thuộc một ca khác trong lịch của nhân viên if (listTamScanLogByPreShift == null || listTamScanLogByPreShift.Count() < 2) { var preTamScanLog = listPreTamScanLog.Where(d => d.TimeLog < item.TimeLog).FirstOrDefault(); var currentShiftDuration = 12;//cho ca tối đa được 12 tiếng đồng hồ if (preTamScanLog != null && listWorkday.Any(d => d.ProfileID == profile.ID && (d.InTime1 == preTamScanLog.TimeLog || d.InTime2 == preTamScanLog.TimeLog || d.InTime3 == preTamScanLog.TimeLog || d.InTime4 == preTamScanLog.TimeLog || d.OutTime1 == preTamScanLog.TimeLog || d.OutTime2 == preTamScanLog.TimeLog || d.OutTime3 == preTamScanLog.TimeLog || d.OutTime4 == preTamScanLog.TimeLog))) { //Trường hợp quẹt thẻ này đã sử dụng preTamScanLog = null; } //Nếu quẹt thẻ hiện tại kết với quẹt thẻ trước đó mà phù hợp duration thì ghép sai ca if (preTamScanLog != null && preTamScanLog.TimeLog.HasValue && item.TimeLog.Value .Subtract(preTamScanLog.TimeLog.Value).TotalHours <= currentShiftDuration) { if (preTamScanLog.TimeLog < date) { if (preShiftValue.HasValue) { workday = listWorkday.Where(d => d.ProfileID == profile.ID && d.WorkDate == date.AddDays(-1)).FirstOrDefault(); if (workday == null) { if (preTamScanLog.TimeLog.Value.Date >= dateFrom.Date && preTamScanLog.TimeLog.Value.Date <= dateTo.Date) { workday = new Att_Workday(); unitOfWork.AddObject(typeof(Att_Workday), workday); workday.WorkDate = preTamScanLog.TimeLog.Value.Date; workday.FirstInTime = workday.InTime1 = preTamScanLog.TimeLog; workday.LastOutTime = workday.OutTime1 = item.TimeLog; workday.Type = WorkdayType.E_DETECTED_SHIFT.ToString(); isPreWorkday = true; preTamScanLog.Checked = true; isWrongShiftDetected = true; break;//chỉ hỗ trợ 1 ca } } else { listTimeLog.Add(item); } } else { listTimeLog.Add(item); } } else { if (workday == null) { workday = new Att_Workday(); unitOfWork.AddObject(typeof(Att_Workday), workday); } workday.FirstInTime = workday.InTime1 = preTamScanLog.TimeLog; workday.LastOutTime = workday.OutTime1 = item.TimeLog; workday.Type = WorkdayType.E_DETECTED_SHIFT.ToString(); preTamScanLog.Checked = true; isWrongShiftDetected = true; break;//chỉ hỗ trợ 1 ca } } else { listTimeLog.Add(item); } } else { if (!listTamScanLogByPreShift.Any(d => d.TimeLog == item.TimeLog)) { listTimeLog.Add(item); } listTimeLog = listTimeLog.Where(d => !listTamScanLogByPreShift.Contains(d)).ToList(); } } else if (item.TimeLog > shiftInTime) { //Quẹt thẻ gần với thời gian ra của ca -> miss-in hoặc làm sai ca //Tìm ca làm việc tiếp theo gần nhất và dòng quẹt thẻ tiếp theo gần nhất của nhân viên đang xét var nextShift = listMonthShifts.Where(d => d.Key > date && d.Key <= date.AddDays(1)).OrderBy(d => d.Key).FirstOrDefault(); var nextShiftValue = nextShift.Value != null && nextShift.Value.Count() > 0 ? nextShift.Value.FirstOrDefault() : null; //Lấy dòng quẹt thẻ hiện tại và 2 dòng quẹt thẻ tiếp theo gần nhất của nhân viên đang xét để kiểm tra ca tiếp theo var listNextTamScanLog = listTamScanLogByCardCodeUnchecked.Where(d => d.TimeLog >= item.TimeLog).OrderBy(d => d.TimeLog).Take(3).ToList(); var listTamScanLogByNextShift = GetTamScanLogByShift(nextShift.Key, listShift, nextShiftValue, listMonthShifts, listNextTamScanLog.ToArray()); //Nếu 2 dòng quẹt thẻ tiếp theo không thuộc một ca khác trong lịch của nhân viên if (listTamScanLogByNextShift == null || listTamScanLogByNextShift.Count() < 2) { listTimeLog.Add(item); foreach (var nextTamScanLog in listNextTamScanLog.Where(d => d.TimeLog > item.TimeLog)) { var currentShiftDuration = 12;//cho ca tối đa được 12 tiếng đồng hồ //Nếu quẹt thẻ hiện tại kết với quẹt thẻ tiếp theo mà phù hợp duration thì ghép sai ca if (nextTamScanLog != null && nextTamScanLog.TimeLog.HasValue && nextTamScanLog .TimeLog.Value.Subtract(item.TimeLog.Value).TotalHours <= currentShiftDuration) { listTimeLog.Add(nextTamScanLog); } } } else { if (!listTamScanLogByNextShift.Any(d => d.TimeLog == item.TimeLog)) { listTimeLog.Add(item); } listTimeLog = listTimeLog.Where(d => !listTamScanLogByNextShift.Contains(d)).ToList(); } } } if (!isWrongShiftDetected) { if (listTimeLog.Count() > 0) { var listRemove = new List<Att_TAMScanLogEntity>(); if (workday == null) { workday = new Att_Workday(); unitOfWork.AddObject(typeof(Att_Workday), workday); } if (listTimeLog.Count() >= 2) { workday.FirstInTime = workday.InTime1 = listTimeLog.OrderBy(d => d.TimeLog).Select(d => d.TimeLog).FirstOrDefault(); workday.LastOutTime = workday.OutTime1 = listTimeLog.OrderBy(d => d.TimeLog).Select(d => d.TimeLog).LastOrDefault(); var currentShiftDuration = 16;//cho ca tối đa được 12 tiếng đồng hồ isWrongShiftDetected = true; if (workday.LastOutTime.HasValue && workday.FirstInTime.HasValue && workday.LastOutTime.Value .Subtract(workday.FirstInTime.Value).TotalHours <= currentShiftDuration) { workday.Type = WorkdayType.E_DETECTED_SHIFT.ToString(); } else { foreach (var item in listTimeLog.Where(d => d.TimeLog > workday.FirstInTime).OrderByDescending(d => d.TimeLog)) { workday.LastOutTime = workday.OutTime1 = item.TimeLog; if (item.TimeLog > workday.FirstInTime && item.TimeLog.HasValue && workday.FirstInTime.HasValue && item.TimeLog.Value.Subtract(workday.FirstInTime.Value).TotalHours <= currentShiftDuration) { workday.Type = WorkdayType.E_DETECTED_SHIFT.ToString(); break; } else { workday.Type = WorkdayType.E_LONGIN_SHIFT.ToString(); } } listRemove = listTimeLog.Where(d => d.TimeLog > workday.LastOutTime).ToList(); } } else if (listTimeLog.Count() == 1) { if (listTimeLog.Any(d => d.TimeLog < shiftInTime)) { workday.FirstInTime = workday.InTime1 = listTimeLog.Select(d => d.TimeLog).FirstOrDefault(); workday.Type = WorkdayType.E_MISS_OUT.ToString();//miss-in hay miss-out cũng như nhau } else { workday.LastOutTime = workday.OutTime1 = listTimeLog.Select(d => d.TimeLog).FirstOrDefault(); workday.Type = WorkdayType.E_MISS_IN.ToString();//miss-in hay miss-out cũng như nhau } isWrongShiftDetected = true; } listTimeLog.Where(d => !listRemove.Contains(d)).ToList().ForEach(d => d.Checked = true); } } if (workday != null) { //Trường hợp wrong-shift và detected-shift thì phải check lại actualShiftID actualShiftID1 = GetDetectedShiftID(workday.InTime1, workday.OutTime1, listShift, null); } } #endregion } if (workday != null) { if (string.IsNullOrWhiteSpace(workday.Type)) { workday.Type = WorkdayType.E_NORMAL.ToString(); } workday.SrcType = WorkdaySrcType.E_NORMAL.ToString(); workday.ProfileID = profile.ID; listTamScanLogByCardCode = listTamScanLogRemove.Where(d => d.ProfileID == profile.ID).OrderBy(d => d.TimeLog).ToList(); listTamScanLogByCardCodeUnchecked = listTamScanLogByCardCode.Where(d => !d.Checked && d.TimeLog.HasValue).ToList(); workday.FirstInTime = workday.InTime1 = FindTimeLogAvailable(listTamScanLogByCardCode, workday.InTime1, minMinutesSameAtt, false); workday.LastOutTime = workday.OutTime1 = FindTimeLogAvailable(listTamScanLogByCardCode, workday.OutTime1, minMinutesSameAtt, true); if (!isPreWorkday) { workday.WorkDate = date; workday.InTimeRoot = workday.InTime1; workday.OutTimeRoot = workday.OutTime1; } if (shiftID1 != null && shiftID1 != Guid.Empty) { workday.ShiftID = shiftID1.Value; workday.ShiftActual = shiftID1.Value; workday.ShiftApprove = shiftID1.Value; } if (shiftID2 != null && shiftID2 != Guid.Empty) { workday.Shift2ID = shiftID2.Value; workday.ShiftActual2 = shiftID2.Value; workday.ShiftApprove2 = shiftID2.Value; } if (actualShiftID1.HasValue && actualShiftID1 != Guid.Empty) { workday.ShiftActual = actualShiftID1; workday.ShiftApprove = actualShiftID1; } if (actualShiftID2.HasValue && actualShiftID2 != Guid.Empty) { workday.ShiftActual2 = actualShiftID2; workday.ShiftApprove2 = actualShiftID2; } var listLeaveDayByProfile = listLeaveDay.Where(d => d.ProfileID == profile.ID).ToList(); var leaveDayID1 = listLeaveDayByProfile.Where(d => workday.WorkDate >= d.DateStart && workday.WorkDate <= d.DateEnd).Select(d => d.ID).FirstOrDefault(); var leaveDayID2 = listLeaveDayByProfile.Where(d => d.ID != workday.LeaveDayID1 && workday.WorkDate >= d.DateStart && workday.WorkDate <= d.DateEnd).Select(d => d.ID).FirstOrDefault(); workday.LeaveDayID1 = leaveDayID1 != Guid.Empty ? (Guid?)leaveDayID1 : null; workday.LeaveDayID2 = leaveDayID2 != Guid.Empty ? (Guid?)leaveDayID2 : null; workday.MissInOutReason = listLeaveDayType.Where(d => listLeaveDayByProfile.Any(p => p.LeaveDayTypeID == d.ID) && d.MissInOutReasonID != null).Select(d => d.MissInOutReasonID).FirstOrDefault(); listWorkday.Add(workday); } } #endregion #region Chia thành nhiều giai đoạn lưu ngày công //Nên submit lần đầu tiên khi đã tính được 5 profile bool firstSubmit = listProfile.ToList().IndexOf(profile) == 5; firstSubmit = totalComputed >= 5 ? false : firstSubmit;//đã chạy 1 lần totalComputedProfileForSubmit++; totalComputed++; if (firstSubmit || totalComputedProfileForSubmit >= totalComputedProfileMustSubmit) { listWorkdayAnalyze = listWorkday.Where(d => !listWorkdayChecked.Contains(d)).ToList(); listWorkdayChecked.AddRange(listWorkdayAnalyze); leavedayServices.AnalyzeLeaveLate(listWorkdayAnalyze, lstPrenancy, lstLateEarlyRule, listShift, lstGrade, lstGradeConfig, lstDayOff); totalComputedProfileForSubmit = firstSubmit ? totalComputedProfileForSubmit : 0; dataErrorCode = unitOfWork.SaveChanges(userID); if (dataErrorCode == DataErrorCode.Locked) { break; } } #endregion } } #endregion #region Lưu kết quả tổng hợp in out listWorkdayAnalyze = listWorkday.Where(d => !listWorkdayChecked.Contains(d)).ToList(); listWorkdayChecked.AddRange(listWorkdayAnalyze); leavedayServices.AnalyzeLeaveLate(listWorkdayAnalyze, lstPrenancy, lstLateEarlyRule, listShift, lstGrade, lstGradeConfig, lstDayOff); unitOfWork.SetCorrectOrgStructureID(listWorkday); dataErrorCode = unitOfWork.SaveChanges(userID); #endregion } return listWorkday.Count(); }