This commit is contained in:
@@ -279,7 +279,6 @@ namespace AyaNova.PlugIn.V8
|
|||||||
ExportUserSkills(progress);
|
ExportUserSkills(progress);
|
||||||
if (progress.KeepGoing)
|
if (progress.KeepGoing)
|
||||||
ExportUserCertifications(progress);
|
ExportUserCertifications(progress);
|
||||||
|
|
||||||
if (progress.KeepGoing)
|
if (progress.KeepGoing)
|
||||||
ExportClientNoteTypes(progress);
|
ExportClientNoteTypes(progress);
|
||||||
|
|
||||||
@@ -2096,6 +2095,17 @@ namespace AyaNova.PlugIn.V8
|
|||||||
TagMap.Add(i.ID, util.NormalizeTag(GetUniqueName(i.Name) + "." + "user-certification"));
|
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
|
#endregion TAG ITEMS
|
||||||
|
|
||||||
//--------------------------------------------
|
//--------------------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user