Правка бага получения наработки по бурильщикам и скважинам

This commit is contained in:
Olga Nemt 2024-04-01 16:17:52 +05:00
parent b1fc181477
commit e4f3adb101

View File

@ -67,14 +67,9 @@ internal class SubsystemService : ISubsystemService
var detectedOperations = await detectedOperationService
.GetOperationsAsync(byWellRequest, token);
var detectedOperationsByCurrentDriller = detectedOperations.Where(d => d.Driller?.Id == schedule.IdDriller);
var groupByDriller = detectedOperations
.Where(operation => operation.Driller is not null)
.GroupBy(operation => operation.Driller);
foreach (var entry in groupByDriller)
{
var drillerOperationsStat = await CalcStatAsync(entry, token);
var drillerOperationsStat = await CalcStatAsync(detectedOperationsByCurrentDriller, token);
var dto = new DrillerDetectedOperationStatDto
{
Statistic = drillerOperationsStat,
@ -83,7 +78,6 @@ internal class SubsystemService : ISubsystemService
};
result.Add(dto);
}
}
return result;
}