diff --git a/PROMS/Volian.Print.Library/PDFConsistencyCheckReport.cs b/PROMS/Volian.Print.Library/PDFConsistencyCheckReport.cs index 9a9b179b..74c4e036 100644 --- a/PROMS/Volian.Print.Library/PDFConsistencyCheckReport.cs +++ b/PROMS/Volian.Print.Library/PDFConsistencyCheckReport.cs @@ -292,6 +292,15 @@ namespace Volian.Print.Library c.Colspan = cols; c.HorizontalAlignment = 1; t.AddCell(c); + // C2021-013: Include the Procedure set name & date + h = new Phrase(); + h.Font = f1; + string tmp = MyDocVersion.MyFolder.Name + " " + DateTime.Now.ToString("M/d/yyyy"); + h.Add(tmp); + c = new PdfPCell(h); + c.Colspan = cols; + c.HorizontalAlignment = 1; + t.AddCell(c); Dictionary types = new Dictionary(); foreach (ProcedureInfo pi in MyItemInfoList) { @@ -406,7 +415,7 @@ namespace Volian.Print.Library } } } - Color goodColor = new Color(System.Drawing.Color.PaleGreen); + Color goodColor = new Color(System.Drawing.Color.YellowGreen); // PaleGreen too dark Color badColor = new Color(System.Drawing.Color.Khaki); if (types.ContainsKey(0)) {