C2025-023 Electronic Procedures - Modifications to PROMS (Phase 1)

RO/table entry - Dev Testing related changes
This commit is contained in:
2025-05-08 10:18:50 -04:00
parent e9e934cfb1
commit 637cbd9954
3 changed files with 17 additions and 9 deletions

View File

@@ -288,7 +288,11 @@ namespace VEPROMS.CSLA.Library
try
{
string tmp = LazyLoad(ref _returncols, "@returncols");
return tmp.Split(',').Select(p => p.Trim()).ToList();
if (string.IsNullOrEmpty(tmp))
return new List<string>();
else
return tmp.Split(',').Select(p => p.Trim()).ToList();
}
catch
{