Made Status Change available to other print objects
Update status when moving through a section with subsections Update status when moving through a section with subsections GetSectionInfo use local value rather than using the cache Used SectionInfo property HasStepCheckOffs to turn-on CheckOff header and narrow text width.
This commit is contained in:
@@ -1692,10 +1692,11 @@ namespace Volian.Print.Library
|
||||
case "{INITIALS}":
|
||||
// For Calvert: if this section has checkoffs turned on, put out this pagelist item:
|
||||
// Get SectionInfos to access specific section config items...
|
||||
SectionInfo si = SectionInfo.Get(MySection.ItemID);
|
||||
//SectionInfo si = SectionInfo.Get(MySection.ItemID);
|
||||
SectionInfo si = MySection.GetSectionInfo();
|
||||
SectionConfig sectCfg = si.MyConfig as SectionConfig;
|
||||
int sc = sectCfg.Section_CheckoffListSelection;
|
||||
if (sc < 2) plstr = plstr.Replace(token, "");
|
||||
if (sc < 2 && !si.HasStepCheckOffs) plstr = plstr.Replace(token, "");
|
||||
else plstr = plstr.Replace(token, "INITIALS");
|
||||
break;
|
||||
case "{REVUNIT}":
|
||||
|
Reference in New Issue
Block a user