From d82e19ad683e5f9e8fb50a6519b656d78994de65 Mon Sep 17 00:00:00 2001 From: Daniel Wathen Date: Tue, 24 Jan 2023 16:16:58 -0700 Subject: [PATCH] Relabeled a field in NCR model but forgot to check all references. --- .../Repositories/Implementations/ScrapeDatabaseRepository.cs | 2 +- ReportingServices.UI/Views/ProductionReport/NCRReport.cshtml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ReportingServices.Shared/Repositories/Implementations/ScrapeDatabaseRepository.cs b/ReportingServices.Shared/Repositories/Implementations/ScrapeDatabaseRepository.cs index 3bf5cea..6efaa55 100644 --- a/ReportingServices.Shared/Repositories/Implementations/ScrapeDatabaseRepository.cs +++ b/ReportingServices.Shared/Repositories/Implementations/ScrapeDatabaseRepository.cs @@ -800,7 +800,7 @@ public class ScrapeDatabaseRepository : IScrapeDatabaseRepository REACTOR = reader[2].ToString(), RDS_NO = reader[3].ToString(), TOT_REJ = string.IsNullOrEmpty(reader[4].ToString()) ? 0 : int.Parse(reader[4].ToString()), - AC_DESC = reader[5].ToString() + LOSS_COMMENTS = reader[5].ToString() }); } diff --git a/ReportingServices.UI/Views/ProductionReport/NCRReport.cshtml b/ReportingServices.UI/Views/ProductionReport/NCRReport.cshtml index 580ec98..58c2ed8 100644 --- a/ReportingServices.UI/Views/ProductionReport/NCRReport.cshtml +++ b/ReportingServices.UI/Views/ProductionReport/NCRReport.cshtml @@ -37,7 +37,7 @@ @ncr.REACTOR @ncr.RDS_NO @ncr.TOT_REJ - @ncr.AC_DESC + @ncr.LOSS_COMMENTS }