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 committed by Vikas Nale
parent 0dc39e36d9
commit 167da8146c

View File

@ -448,7 +448,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)