From 00ceb09eac3379f242b998eb6f3fff51113149e8 Mon Sep 17 00:00:00 2001 From: Jsj Date: Thu, 21 Feb 2008 16:48:06 +0000 Subject: [PATCH] Outside Transitins and annotations for unresolved transitions --- PROMS/DataLoader/Loader.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/PROMS/DataLoader/Loader.cs b/PROMS/DataLoader/Loader.cs index ef84e511..95245b6f 100644 --- a/PROMS/DataLoader/Loader.cs +++ b/PROMS/DataLoader/Loader.cs @@ -42,7 +42,8 @@ namespace DataLoader public Connection dbConn; public Folder sysFolder; public AnnotationType CommentType; // this holds the annotationtype of comment for future use - public Document MissingDocument=null; // make a document if there is a missing rtf file + public AnnotationType MigrationErrorType; // this holds the annotationtype of Migration Error for future use + public Document MissingDocument = null; // make a document if there is a missing rtf file // any missing will use this. private Content TransDummyCont; // the following two dictionaries are used to handle migration of the @@ -60,6 +61,7 @@ namespace DataLoader // otherwise, create a new item record. private Dictionary dicTrans_ItemDone; private Dictionary dicTrans_ItemIds; + private Dictionary> dicTrans_MigrationErrors; private Dictionary dicOldStepSequence; private Dictionary dicNeedToLoad; private log4net.ILog log; @@ -83,6 +85,7 @@ namespace DataLoader frmMain.Status = "Add AnnotationTypes"; CommentType = AnnotationType.MakeAnnotationType("Comment", null); + MigrationErrorType = AnnotationType.MakeAnnotationType("Migration Error", null); AnnotationType at = AnnotationType.MakeAnnotationType("Reference", null); at = AnnotationType.MakeAnnotationType("Action Items", null);