From c4356e3646f0efeac22c63d3f6d7c97fb3130ec8 Mon Sep 17 00:00:00 2001 From: Kathy Date: Mon, 3 Apr 2023 15:52:53 +0000 Subject: [PATCH] B2023-038: Import of procedure crashes when it has an RO that is not in the set it is imported into (rather than converting it to text) --- PROMS/VEPROMS.CSLA.Library/Config/ROFSTLookup.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PROMS/VEPROMS.CSLA.Library/Config/ROFSTLookup.cs b/PROMS/VEPROMS.CSLA.Library/Config/ROFSTLookup.cs index 9687cfb0..cd7cd89f 100644 --- a/PROMS/VEPROMS.CSLA.Library/Config/ROFSTLookup.cs +++ b/PROMS/VEPROMS.CSLA.Library/Config/ROFSTLookup.cs @@ -1768,7 +1768,8 @@ namespace VEPROMS.CSLA.Library { rc.title = GetRODatabaseTitle(GetRODatabaseTitleIndex(roid)); } - + // B2023-038: return a "?" if none found - this is used by calling methods to flag none found. + if (rc.ID < 0 && rc.value == null) rc.value = "?"; return rc; }