In the Attendance Log table, the UpdatedBy field was incorrectly recording the employee whose attendance was marked, rather than the actual user who performed the update, fixed this issue in this commit

This commit is contained in:
ashutosh.nehete 2025-05-07 12:23:44 +05:30
parent e22db781a1
commit bbddc236b1

View File

@ -403,7 +403,7 @@ namespace MarcoBMS.Services.Controllers
Longitude = recordAttendanceDot.Longitude,
TenantId = TenantId,
UpdatedBy = recordAttendanceDot.EmployeeID,
UpdatedBy = currentEmployee.Id,
UpdatedOn = recordAttendanceDot.Date
};
//if (recordAttendanceDot.Image != null && recordAttendanceDot.Image.Count > 0)