From c8adeed18709c03802c1ee1ae4a65bff25ce453e Mon Sep 17 00:00:00 2001 From: John Jenko Date: Mon, 10 Nov 2025 09:25:26 -0500 Subject: [PATCH] B2025-060 Fixes the printing a sub-section top continue message when the section is forced to start on the next page, either by PROMS print logic or when that sub-section is set to separate pagination. --- PROMS/Formats/fmtall/VEGP1all.xml | Bin 184042 -> 184072 bytes PROMS/Formats/fmtall/VEGP2all.xml | Bin 233130 -> 233142 bytes PROMS/Volian.Print.Library/vlnParagraph.cs | 5 ++++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/PROMS/Formats/fmtall/VEGP1all.xml b/PROMS/Formats/fmtall/VEGP1all.xml index 92a8e7abe5bd18c6708b840499417954c397364c..11cbc389376d5b67f36a913c1e98b8e18f3f3f79 100644 GIT binary patch delta 60 zcmaDgm%C#gcS8%~7N#SG(;KEU8L|5^xH5z=I8L{n#Uu^q#Li+;oNiXc;0Lo+QN7kQo4-O4SJX)w!iCR OikXjHRlXjxbpik%i5yY@ delta 69 zcmdlsmv7ZvzJ?aYElgeh+c$_aAK{w5D~Q=_c}EnJF^C_;xcy!qQ^|Y~yNPl7g=I`4 W)A?AKe{7eTz*NS$J<5tXCIkSuNg3?` diff --git a/PROMS/Volian.Print.Library/vlnParagraph.cs b/PROMS/Volian.Print.Library/vlnParagraph.cs index 2f307726..d2fd1df4 100644 --- a/PROMS/Volian.Print.Library/vlnParagraph.cs +++ b/PROMS/Volian.Print.Library/vlnParagraph.cs @@ -1855,7 +1855,10 @@ namespace Volian.Print.Library if (doSectionContinue) DoTopContinueMsg(cb, ref yPageStart, yTopMargin, docstyle, null); // If "ContinueSectionHeader" (format flag) is true then print the section title with "(Continued)" appended to it // B2020-164 added check for SpecialCaseCalvert to bypass IsSeparateSubsection STP O-67B-2 step 6.5 - if ((!MyItemInfo.IsSection || MyItemInfo.IsSubsection) && + // B2025-060 no section continue message if previous was not in same section or sub-section + // fixes Vogtle units 3&4 3-AOP-116 Attachments 2 & 3 + if ((!MyItemInfo.IsSection || MyItemInfo.IsSubsection) && + (MyItemInfo.ActiveSection == MyItemInfo.MyPrevious.ActiveSection) && MyItemInfo.ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.ContinueSectionHeader && (!MyItemInfo.IsSection || (MyItemInfo.IsSeparateSubsection || MyItemInfo.ActiveFormat.PlantFormat.FormatData.PrintData.SpecialCaseCalvert))) {