B2021-025: Improve Wording on Report

This commit is contained in:
Kathy Ruffing 2021-03-17 11:36:35 +00:00
parent 2868362fe2
commit 8567015267

View File

@ -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')); string rotitle = string.Format("{0} - Current Version: {1}", lu.GetROTitle(roc.ROID), lu.GetRoValue(roc.ROID).Replace('`','\xb0'));
if (ros.ContainsKey(rotitle)) 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 else
{ {
ros.Add(rotitle, new Dictionary<string,bool>()); ros.Add(rotitle, new Dictionary<string,bool>());
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);
} }
} }
} }