B2019-023 Fixed case sensitive search in Word attachments
B2019-016 include RNO step type in the searchable list
This commit is contained in:
@@ -593,7 +593,7 @@ namespace VEPROMS.CSLA.Library
|
||||
List<StepDataRetval> sds = new List<StepDataRetval>();
|
||||
foreach (StepData sd in StepDataList)
|
||||
{
|
||||
if (!sd.Inactive && sd.StepEditData.Searchable && sd.StepEditData.TypeMenu.InMenu)
|
||||
if (!sd.Inactive && sd.StepEditData.Searchable && (sd.StepEditData.TypeMenu.InMenu || sd.Index == 40)) // B2019-016 allow to specify Search of RNO step type
|
||||
sds.Add(new StepDataRetval(sd.StepEditData.TypeMenu.MenuItem, Convert.ToInt32(sd.Index)));
|
||||
}
|
||||
// now add any from the inherited list (but only if type is not in the list)
|
||||
|
Reference in New Issue
Block a user