Placekeeper logic

Added Checkbox to generate the Placekeeper
Generate Placekeeper logic
Disable the “include in placekeeper” checkbox on Placekeeper section types
This commit is contained in:
2014-05-09 19:13:15 +00:00
parent 10607cce7d
commit 9b930ffeda
6 changed files with 54 additions and 41 deletions

View File

@@ -325,8 +325,9 @@ namespace VEPROMS
ppCbPlaceKeeper.Enabled = _isStepSection;
if (!_isStepSection && (_SectionConfig.MySection.MySectionInfo.MyDocStyle.StructureStyle.Style & E_DocStructStyle.Placekeeper) == E_DocStructStyle.Placekeeper)
{
ppCbPlaceKeeper.Text = "Auto Generate Placekeeper";
ppCbPlaceKeeper.Enabled = true;
//ppCbPlaceKeeper.Text = "Auto Generate Placekeeper";
//ppCbPlaceKeeper.Enabled = true;
ppCbPlaceKeeper.Enabled = false;
}
if (ppCbPlaceKeeper.Enabled) ppCbPlaceKeeper.Checked = _SectionConfig.Section_Placekeeper == "Y";
}