From eeb8b9f452dc8774d112384848e3f4a06f175f5a Mon Sep 17 00:00:00 2001 From: Kathy Date: Tue, 7 Oct 2014 13:13:57 +0000 Subject: [PATCH] =?UTF-8?q?For=20IP2=20format,=20for=20unused=20pagelist?= =?UTF-8?q?=20tokens,=20don=E2=80=99t=20write=20error=20message=20to=20log?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PROMS/Volian.Print.Library/VlnSvgPageHelper.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs b/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs index bb5a0b83..584cd4b3 100644 --- a/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs +++ b/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs @@ -1385,6 +1385,21 @@ namespace Volian.Print.Library else plstr = plstr.Replace("{CM:(Cont)}", ""); break; + case "{RF:REFERENCE}": + // This token is used by IP2. In 16bit it is processed when the PO_DISTRIBUTEAPPROVED + // purchase option is set and a file 'ref.dat' exists. Text from this file replaced + // the token. It was decided by RHM/KBR on 10/7/14 that this would not be implemented + // unless/until it is determined that it is used (no data that Volian currently has + // contains this file). To implement it requires a config item off of the procedure level, + // user interface support on the Procedure Properties dialog and print support. + plstr = plstr.Replace("{RF:REFERENCE}", ""); + break; + case "{NULLDOCCURPAGE}": + // This token is used by IP2. There was no support for it in 16bit and the 16bit to 32bit + // output compared so it is just removed here so that a pagelist token error is not output + // in error log. + plstr = plstr.Replace("{NULLDOCCURPAGE}", ""); + break; case "{EOPNUM}": case "[EOPNUM]": case "{PREDELIMEOPNUM}":