diff --git a/server/DataList/LicenseDataList.cs b/server/DataList/LicenseDataList.cs index ffc4064..a84c358 100644 --- a/server/DataList/LicenseDataList.cs +++ b/server/DataList/LicenseDataList.cs @@ -14,7 +14,7 @@ namespace Sockeye.DataList var RoleSet = BizRoles.GetRoleSet(DefaultListAType); AllowedRoles = RoleSet.ReadFullRecord | RoleSet.Change; - DefaultColumns = new List() { "licensecreated", "LicenseTrialMode", "licenseactive", "licenseregto", "licensecustomer", "LicenseFetchedOn", "notificationsent", "ProductGroup" }; + DefaultColumns = new List() { "licensecreated", "LicenseTrialMode", "licenseactive", "licenseregto", "LicenseFetchedOn", "notificationsent", "ProductGroup" }; DefaultSortBy = new Dictionary() { { "licensecreated", "-" } }; FieldDefinitions = new List(); diff --git a/server/biz/GlobalBizSettingsBiz.cs b/server/biz/GlobalBizSettingsBiz.cs index 7f70048..d9d58f5 100644 --- a/server/biz/GlobalBizSettingsBiz.cs +++ b/server/biz/GlobalBizSettingsBiz.cs @@ -556,7 +556,7 @@ namespace Sockeye.Biz //l.Users=jKey["AyaNovaLicenseKey"]["TotalScheduleableUsers"].Value(); l.PGroup = ProductGroup.AyaNova7; l.FetchCode = jLicense["code"].Value(); - l.Tags.Add("v7"); + } else if (KeyText.Contains("AyaNovaLiteLicenseKey")) { @@ -579,7 +579,7 @@ namespace Sockeye.Biz l.PGroup = ProductGroup.AyaNova7; l.FetchCode = jLicense["code"].Value(); - l.Tags.Add("v7"); + l.Tags.Add("lite"); } else @@ -614,7 +614,6 @@ namespace Sockeye.Biz else l.PGroup = ProductGroup.RavenSubscription; l.MaintenanceExpire = jKey["Key"]["MaintenanceExpiration"].Value().ToUniversalTime(); - l.Tags.Add("raven"); } l.Created = (DateTime)DateUtil.EpochToDateNullIsNull(jLicense["dtcreated"].Value()); @@ -702,8 +701,6 @@ namespace Sockeye.Biz else l.PGroup = ProductGroup.RavenSubscription; l.MaintenanceExpire = jKey["Key"]["MaintenanceExpiration"].Value().ToUniversalTime(); - l.Tags.Add("raven"); - l.Tags.Add("trial"); l.Created = DateUtil.EpochToDateNullIsMin(jTrialRequestItem["dtProcessed"].Value()); l.FetchedOn = DateUtil.EpochToDateNullIsNull(jTrialRequestItem["dtFetched"].Value()); l.FetchEmail = jTrialRequestItem["email"].Value();