From 12b942b9956bd68e85cacec5e887a68c867c024e Mon Sep 17 00:00:00 2001 From: ngfrolov Date: Tue, 23 Jan 2024 10:01:33 +0500 Subject: [PATCH] SlipsStatService.GetAllAsync() remove filter wellOperation by drilling only --- AsbCloudInfrastructure/Services/SlipsStatService.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/AsbCloudInfrastructure/Services/SlipsStatService.cs b/AsbCloudInfrastructure/Services/SlipsStatService.cs index aaa85bd5..2bc87c68 100644 --- a/AsbCloudInfrastructure/Services/SlipsStatService.cs +++ b/AsbCloudInfrastructure/Services/SlipsStatService.cs @@ -52,7 +52,6 @@ public class SlipsStatService : ISlipsStatService var factWellOperationsQuery = db.WellOperations .Where(o => idsWells.Contains(o.IdWell)) .Where(o => o.IdType == 1) - .Where(o => WellOperationCategory.MechanicalDrillingSubIds.Contains(o.IdCategory)) .Include(o => o.WellSectionType) .AsNoTracking();