From 57ef8d8d25f6afc71acbfee6ddfce8c6041bba2f Mon Sep 17 00:00:00 2001 From: Daniel Wathen Date: Mon, 20 Feb 2023 12:00:41 -0700 Subject: [PATCH] Updated query for hold lot report --- .../Repositories/Implementations/ScrapeDatabaseRepository.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ReportingServices.Shared/Repositories/Implementations/ScrapeDatabaseRepository.cs b/ReportingServices.Shared/Repositories/Implementations/ScrapeDatabaseRepository.cs index 6efaa55..fb85e4f 100644 --- a/ReportingServices.Shared/Repositories/Implementations/ScrapeDatabaseRepository.cs +++ b/ReportingServices.Shared/Repositories/Implementations/ScrapeDatabaseRepository.cs @@ -608,6 +608,7 @@ public class ScrapeDatabaseRepository : IScrapeDatabaseRepository " WHERE HOLD_STOP_DTM = '1/1/1900' " + " AND HOLD_START_DTM > '1/1/2022' " + " AND HOLD_ENTITY_ID = SEQ " + + " AND HOLD_ENTITY = 'RDS' " + "ORDER BY HOLD_START_DTM ASC"; cmd.CommandText = query;