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