C2020-018 made a more accurate description of the message for transitions when deleting a Procedure, Section, or Step
This commit is contained in:
@@ -5418,6 +5418,19 @@ namespace VEPROMS.CSLA.Library
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
// C2020-018 used for a more descriptive warning message when deleting Procedures, Sections, Steps that have external transitions pointing to them
|
||||
public string GetTypeDescription()
|
||||
{
|
||||
if (this != null)
|
||||
{
|
||||
if (this.IsProcedure) return "Procedure";
|
||||
if (this.IsSection) return "Section";
|
||||
if (this.IsHigh) return "Step";
|
||||
if (this.IsSubStep) return "SubStep";
|
||||
}
|
||||
return "Item";
|
||||
}
|
||||
|
||||
}
|
||||
#endregion ItemInfo
|
||||
#region Tab
|
||||
|
Reference in New Issue
Block a user