From 0f7bb49ff89f8d3e6801d69eaeb0854374ef1648 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Fri, 31 Aug 2018 17:59:15 +0000 Subject: [PATCH] --- server/AyaNova/biz/LocaleBiz.cs | 1 + server/AyaNova/biz/UserBiz.cs | 3 +++ 2 files changed, 4 insertions(+) diff --git a/server/AyaNova/biz/LocaleBiz.cs b/server/AyaNova/biz/LocaleBiz.cs index 22be196e..6c0b14f7 100644 --- a/server/AyaNova/biz/LocaleBiz.cs +++ b/server/AyaNova/biz/LocaleBiz.cs @@ -406,6 +406,7 @@ namespace AyaNova.Biz SkipKeys.Add("UI.Label.CurrentUserName"); SkipKeys.Add("V7_SOURCE_FILE_NAME"); SkipKeys.Add("V7_TYPE"); + SkipKeys.Add("IMPORT_TASK"); List ValidKeys = GetKeyList(); Dictionary NewLocaleDict = new Dictionary(); diff --git a/server/AyaNova/biz/UserBiz.cs b/server/AyaNova/biz/UserBiz.cs index ef19b71e..afbd7a9d 100644 --- a/server/AyaNova/biz/UserBiz.cs +++ b/server/AyaNova/biz/UserBiz.cs @@ -541,18 +541,21 @@ namespace AyaNova.Biz break; case "scheduleableusergrouptags": { + var V7Id = new Guid(j["ID"].Value()); //handle tag entries for users now that we have the SUG tags created // throw new System.NotImplementedException(); } break; case "clientid": { + var V7Id = new Guid(j["ID"].Value()); //handle setting client id for user client login //throw new System.NotImplementedException(); } break; case "headofficeid": { + var V7Id = new Guid(j["ID"].Value()); //handle setting ho id for user headoffice login //throw new System.NotImplementedException(); }