Add Hex values for Placekeepers and PhoneList checks
Logic to put Placekeeper and Phonelist info in the section config Logic to put Placekeeper info in the step config
This commit is contained in:
@@ -513,11 +513,16 @@ namespace DataLoader
|
||||
ci.AddItem("Step", "LnkEnh", "Y");
|
||||
}
|
||||
// determine if autogenerated section (!exist = N)
|
||||
if ((cbittst & AUTOGEN) > 1)
|
||||
// Placekeeper (Calvert)
|
||||
if ((cbittst & PLACEKEEPER) > 1)
|
||||
{
|
||||
isautogen = true;
|
||||
ci.AddItem("Section", "AutoGen", "Y");
|
||||
//ci.AddItem("Section", "AutoGen", "Y");
|
||||
ci.AddItem("Section", "Placekeeper", "Y");
|
||||
}
|
||||
// Phonelist (Clavert)
|
||||
if ((cbittst & PHONELIST) > 1)
|
||||
ci.AddItem("Section", "Phonelist", "Y");
|
||||
// Here are subsection flags, i.e. the following are only set if this
|
||||
// is a subsection.
|
||||
bool didsub = false;
|
||||
@@ -670,7 +675,7 @@ namespace DataLoader
|
||||
// 5 = RNO
|
||||
// 6 = step
|
||||
// 7 = table
|
||||
//isautogen = false; //needed for bge
|
||||
isautogen = false; //needed for bge
|
||||
if (!isautogen)
|
||||
{
|
||||
// Process the Data Table - First look for High Level Steps
|
||||
|
Reference in New Issue
Block a user