From 4ca3697845780aaa8370e0ef92ab5fff31313dbc Mon Sep 17 00:00:00 2001 From: mschill Date: Fri, 24 Jan 2025 15:29:07 -0500 Subject: [PATCH] B2025-005 PROMS - Change Reports - Invalid Transitions showing Incorrectly --- PROMS/Volian.Print.Library/PDFChronologyReport.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PROMS/Volian.Print.Library/PDFChronologyReport.cs b/PROMS/Volian.Print.Library/PDFChronologyReport.cs index 80153dee..b0111d5c 100644 --- a/PROMS/Volian.Print.Library/PDFChronologyReport.cs +++ b/PROMS/Volian.Print.Library/PDFChronologyReport.cs @@ -409,7 +409,7 @@ namespace Volian.Print.Library else if (cai.Type > 20099) // B2020-054: Always put out 'Equation' (removed checking for null text) txt = "Equation"; else - txt = ItemInfo.ConvertToDisplayText(cai.Text); + txt = ItemInfo.ConvertToDisplayText(cai.Text).Replace("Go to \u25cf", "Go to ?"); if (MyProc.MyDocVersion.MultiUnitCount > 1) { System.Xml.XmlNode nd; @@ -1570,7 +1570,7 @@ namespace Volian.Print.Library else if (cai.Type > 20099) txt = "Equation"; else - txt = ItemInfo.ConvertToDisplayText(cai.Text); + txt = ItemInfo.ConvertToDisplayText(cai.Text).Replace("Go to \u25cf", "Go to ?"); // Add Parent/Child information if applicable // We were doing this for the Chronology report so I added the same logic here for the Summary report if (MyProc.MyDocVersion.MultiUnitCount > 1)