From 8567015267960081974a4bc8b956514d8ec352fc Mon Sep 17 00:00:00 2001 From: Kathy Date: Wed, 17 Mar 2021 11:36:35 +0000 Subject: [PATCH] B2021-025: Improve Wording on Report --- PROMS/Volian.Print.Library/PDFConsistencyCheckReport.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PROMS/Volian.Print.Library/PDFConsistencyCheckReport.cs b/PROMS/Volian.Print.Library/PDFConsistencyCheckReport.cs index 4967fabf..9a9b179b 100644 --- a/PROMS/Volian.Print.Library/PDFConsistencyCheckReport.cs +++ b/PROMS/Volian.Print.Library/PDFConsistencyCheckReport.cs @@ -337,12 +337,13 @@ namespace Volian.Print.Library string rotitle = string.Format("{0} - Current Version: {1}", lu.GetROTitle(roc.ROID), lu.GetRoValue(roc.ROID).Replace('`','\xb0')); if (ros.ContainsKey(rotitle)) { - ros[rotitle].Add(string.Format("Procedure {0} has an ROValue of: {1}", pi.DisplayNumber, roc.ROValue),roc.ROValue == newROValue); + // B2021-025: Add 'Approved' to message here and in line below to help clarify report info + ros[rotitle].Add(string.Format("Approved Procedure {0} has an ROValue of: {1}", pi.DisplayNumber, roc.ROValue),roc.ROValue == newROValue); } else { ros.Add(rotitle, new Dictionary()); - ros[rotitle].Add(string.Format("Procedure {0} has an ROValue of: {1}", pi.DisplayNumber, roc.ROValue),roc.ROValue == newROValue); + ros[rotitle].Add(string.Format("Approved Procedure {0} has an ROValue of: {1}", pi.DisplayNumber, roc.ROValue),roc.ROValue == newROValue); } } }