B2017-093: Pagination issue when no supplemental information on page or when 2 steps on page & only 2nd has supplemental information

This commit is contained in:
2017-05-24 12:34:42 +00:00
parent 6e94a74803
commit bd7204aff8
3 changed files with 16 additions and 2 deletions

View File

@@ -6892,7 +6892,13 @@ namespace VEPROMS.CSLA.Library
get { return _StepSectPageBreaksForSupInfo; }
set { _StepSectPageBreaksForSupInfo = value; }
}
// Keeps track of step section itemids where page breaks occur
private List<int> _StepSectPageBreaks = null;
public List<int> StepSectPageBreaks
{
get { return _StepSectPageBreaks; }
set { _StepSectPageBreaks = value; }
}
// Determine if this section contains any Supplemental information steps. This is used for print to determine
// whether some of the supinfo processing needs to occur.
private bool? _HasSupInfoSteps = null;