logic to support transition to a non-numbered step

commented out test coding to save for now.
This commit is contained in:
2012-11-14 19:18:47 +00:00
parent c0d0c3d08e
commit b7bea9a5f1
2 changed files with 16 additions and 0 deletions

View File

@@ -475,6 +475,12 @@ namespace Volian.Controls.Library
//FormatInfo formatInfo = _MyItemInfo.ActiveFormat;
using (_MyItem = _MyItemInfo.Get())
{
if (_MyItemInfo.NewTransToUnNumberedItem)
{
ItemAnnotation ia = _MyItem.ItemAnnotations.Add(AnnotationType.GetByName("Verification Required"));
ia.SearchText = "Transition to Un-Numbered Step";
_MyItemInfo.NewTransToUnNumberedItem = false;
}
// check for different text, i.e. text from this itm doesn't match
// original text, a change occurred in database, but not from this user.
if (OriginalText != EditText)