B2020-148 – Calvert pagination fix. keep Cautions and Notes with substep. Approved Folder, Unit 2 AOPs, AOP-3B section VI, step H.18.f
This commit is contained in:
parent
afcfe40136
commit
76b5ba1816
@ -1714,7 +1714,15 @@ namespace Volian.Print.Library
|
||||
&& minPara.MyItemInfo.FirstSibling.ItemID == minPara2.MyItemInfo.ItemID) minPara = null;
|
||||
//if (minPara != null) DebugPagination.WriteLine("### 111111 {0}", minPara);
|
||||
//if(minPara2 != null) DebugPagination.WriteLine("### n222222 {0}", minPara2);
|
||||
return minPara ?? minPara2;
|
||||
if (minPara != null && minPara.MyItemInfo.ActiveFormat.PlantFormat.FormatData.PrintData.SpecialCaseCalvertPagination &&
|
||||
minPara.MyItemInfo.MyPrevious != null && minPara.MyItemInfo.IsCautionOrNotePart &&
|
||||
minPara2 != null && minPara2.MyItemInfo == minPara.MyItemInfo.FirstSibling)
|
||||
{
|
||||
minPara = null; // B2020-148 Calvert Approved folder Unit 2 AOP-3B section VI, Step H.18f - keep cautions/Notes with substep 18.f
|
||||
DebugPagination.WriteLine("B2020-148 {0}", minPara2);
|
||||
_MyLog.WarnFormat("\r\n+++ Paginagion Change B2020-148 {0}", minPara2);
|
||||
}
|
||||
return minPara ?? minPara2;
|
||||
}
|
||||
|
||||
// B2020-013 premature break in RNO column - Callaway OTO-AC-00002 step 2
|
||||
|
Loading…
x
Reference in New Issue
Block a user