From fa61b9c2a4d4617ea3e5181b763d17ec1c249d48 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 10 Jun 2019 19:55:31 +0000 Subject: [PATCH] B2019-085 multiple copies of library documents were added when importing procedure sets --- PROMS/VEPROMS User Interface/dlgExportImport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PROMS/VEPROMS User Interface/dlgExportImport.cs b/PROMS/VEPROMS User Interface/dlgExportImport.cs index 86e2d5f1..04d2f796 100644 --- a/PROMS/VEPROMS User Interface/dlgExportImport.cs +++ b/PROMS/VEPROMS User Interface/dlgExportImport.cs @@ -4797,7 +4797,7 @@ namespace VEPROMS { foreach (DocumentInfo di in dil) { - string keystr = di.LibTitle+"_"+di.DTS.ToString(); + string keystr = di.LibTitle; // B2019-085 don't add the date/time to the title of the existing list of lib docs - was causing multiple copies of the lib doc to be added if (!ExistingLibDocs.ContainsKey(keystr)) ExistingLibDocs.Add(keystr, di.DocID); di.Dispose();