From 49ced60b2289b630da70590963457c9396e16bfc Mon Sep 17 00:00:00 2001 From: Rich Date: Fri, 14 Oct 2016 19:57:19 +0000 Subject: [PATCH] Procedures with numbers that start with VC2 will be identified as pertaining to Unit 2 Procedures with numbers that start with VC3 will be identified as pertaining to Unit 3 --- PROMS/Volian.Print.Library/VlnSvgPageHelper.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs b/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs index 33fb9d9a..f023ca06 100644 --- a/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs +++ b/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs @@ -1723,6 +1723,10 @@ namespace Volian.Print.Library { if (MySection.MyProcedure.DisplayNumber.StartsWith("VCS")) plstr = "NSBU"; + else if (MySection.MyProcedure.DisplayNumber.StartsWith("VC2")) + plstr = "Unit 2"; + else if (MySection.MyProcedure.DisplayNumber.StartsWith("VC3")) + plstr = "Unit 3"; else plstr = "Units 2 & 3"; // for VC Summer, replace "Unit 0" with "Units 2 & 3" }