diff --git a/Marco.Pms.Services/Controllers/AttendanceController.cs b/Marco.Pms.Services/Controllers/AttendanceController.cs index df91456..3103b9b 100644 --- a/Marco.Pms.Services/Controllers/AttendanceController.cs +++ b/Marco.Pms.Services/Controllers/AttendanceController.cs @@ -38,12 +38,17 @@ namespace MarcoBMS.Services.Controllers //var tenant = User.FindFirst("TenantId")?.Value; //return (tenant != null ? Convert.ToInt32(tenant) : 1); } + private int GetUserId() + { + var tenant = User.FindFirst("Id")?.Value; + return (tenant != null ? Convert.ToInt32(tenant) : 1); + } [HttpGet("log/attendance/{attendanceid}")] public async Task GetAttendanceLogById(int attendanceid) { - int TenantId = GetTenantId(); + int TenantId = GetUserId(); List lstAttendance = await _context.AttendanceLogs.Where(c => c.AttendanceId == attendanceid && c.TenantId == TenantId).ToListAsync(); @@ -54,7 +59,7 @@ namespace MarcoBMS.Services.Controllers public async Task GetAttendanceLogByEmployeeId(int employeeid, [FromQuery] string? date = null) { - int TenantId = GetTenantId(); + int TenantId = GetUserId(); DateOnly forDate = new DateOnly(); if (date != null && DateOnly.TryParse(date, out forDate) == false) @@ -79,7 +84,7 @@ namespace MarcoBMS.Services.Controllers public async Task EmployeeAttendanceByDateRange([FromQuery] int projectId, [FromQuery] string? dateFrom = null, [FromQuery] string? dateTo = null) { - int TenantId = GetTenantId(); + int TenantId = GetUserId(); DateTime fromDate = new DateTime(); DateTime toDate = new DateTime(); @@ -144,9 +149,9 @@ namespace MarcoBMS.Services.Controllers /// [HttpGet("project/team")] - public async Task EmployeeAttendanceByProject([FromQuery] int projectId, [FromQuery] bool IncludeInActive, [FromQuery] string? date = null) + public async Task EmployeeAttendanceByProject([FromQuery] int projectId, [FromQuery] string? date = null) { - int TenantId = GetTenantId(); + int TenantId = GetUserId(); DateTime forDate = new DateTime(); if (date != null && DateTime.TryParse(date, out forDate) == false) @@ -167,7 +172,7 @@ namespace MarcoBMS.Services.Controllers List lstAttendance = await _context.Attendes.Where(c => c.ProjectID == projectId && c.AttendanceDate.Date == forDate && c.TenantId == TenantId).ToListAsync(); - List projectteam = await _projectsHelper.GetTeamByProject(TenantId, projectId, IncludeInActive); + List projectteam = await _projectsHelper.GetTeamByProject(TenantId, projectId, true); foreach (ProjectAllocation teamMember in projectteam) { @@ -299,7 +304,7 @@ namespace MarcoBMS.Services.Controllers Longitude = recordAttendanceDot.Longitude, TenantId = TenantId, - UpdatedBy = recordAttendanceDot.EmployeeID, + UpdatedBy = GetUserId(), UpdatedOn = recordAttendanceDot.Date }; //if (recordAttendanceDot.Image != null && recordAttendanceDot.Image.Count > 0)