This commit is contained in:
2020-11-10 15:29:22 +00:00
parent 47fe7254e3
commit 07a0432f4f

View File

@@ -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
//--------------------------------------------