From 07a0432f4f9fc304a89fd1de9f838929db799f36 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 10 Nov 2020 15:29:22 +0000 Subject: [PATCH] --- source/Plugins/AyaNova.Plugin.V8/V8.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/source/Plugins/AyaNova.Plugin.V8/V8.cs b/source/Plugins/AyaNova.Plugin.V8/V8.cs index 99db058..b9d238a 100644 --- a/source/Plugins/AyaNova.Plugin.V8/V8.cs +++ b/source/Plugins/AyaNova.Plugin.V8/V8.cs @@ -279,7 +279,6 @@ namespace AyaNova.PlugIn.V8 ExportUserSkills(progress); if (progress.KeepGoing) ExportUserCertifications(progress); - if (progress.KeepGoing) ExportClientNoteTypes(progress); @@ -2096,6 +2095,17 @@ namespace AyaNova.PlugIn.V8 TagMap.Add(i.ID, util.NormalizeTag(GetUniqueName(i.Name) + "." + "user-certification")); } + + private void ExportClientNoteTypes(ProgressForm progress) + { + ResetUniqueNames(); + ClientNoteTypes l = ClientNoteTypes.GetItems(); + progress.Append("Compiling " + l.Count.ToString() + " Client note types"); + foreach (ClientNoteType i in l) + TagMap.Add(i.ID, util.NormalizeTag(GetUniqueName(i.Name) + "." + "client-note-type")); + } + + #endregion TAG ITEMS //--------------------------------------------