C2025-023 - Electronic Procedures - Modifications to PROMS

RO input functionality
This commit is contained in:
2025-05-02 11:46:55 -04:00
parent a417ddda85
commit e9e934cfb1
3 changed files with 64 additions and 14 deletions

View File

@@ -2144,7 +2144,8 @@ namespace VEPROMS.CSLA.Library
filtered.Add(EP);
//check for intersections between unfiltered list and step type list
if (EP.validforsteptypes.Any(steptypelist.Contains))
List<string> tmpEP = EP.validforsteptypes();
if (tmpEP.Any(steptypelist.Contains))
filtered.Add(EP);
}