B2019-023 Fixed case sensitive search in Word attachments

B2019-016 include RNO step type in the searchable list
This commit is contained in:
2019-04-23 19:11:44 +00:00
parent 31c744af4b
commit 550200acf6
3 changed files with 15 additions and 13 deletions

View File

@@ -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)