case 4576 addition of up to 25 level v7

This commit is contained in:
2024-03-21 14:02:06 +00:00
parent ab75b98571
commit 98c7157b0c
5 changed files with 28 additions and 18 deletions

View File

@@ -211,6 +211,9 @@ namespace Sockeye.Biz
case 20: case 20:
sb.AppendLine("Up to 20"); sb.AppendLine("Up to 20");
break; break;
case 25://case 4576
sb.AppendLine("Up to 25");
break;
case 50: case 50:
sb.AppendLine("Up to 50"); sb.AppendLine("Up to 50");
break; break;

View File

@@ -185,6 +185,7 @@ namespace Sockeye.Biz
case "300740324"://PTI case "300740324"://PTI
case "300740325"://OLI case "300740325"://OLI
case "300807973"://Up to 15 case "300807973"://Up to 15
case "301091845"://Up to 25 //case 4576
case "300740326"://Outlook Schedule Export case "300740326"://Outlook Schedule Export
case "300740316"://AyaNova LITE case "300740316"://AyaNova LITE
case "999"://Up to 999 case "999"://Up to 999

View File

@@ -207,6 +207,8 @@ namespace Sockeye.Biz
21 Single AyaNova service techncian perpetual license 301028314 135 100 21 Single AyaNova service techncian perpetual license 301028314 135 100
22 Single AyaNova service techncian 1 year maintenance plan - new 301028317 135 100 22 Single AyaNova service techncian 1 year maintenance plan - new 301028317 135 100
23 Single AyaNova service techncian 1 year maintenance plan - active 301028315 100 100 23 Single AyaNova service techncian 1 year maintenance plan - active 301028315 100 100
case 4576
25 Up to 25 AyaNova schedulable resource 1 year subscription license
*/ */
var dtOneYear = DateTime.UtcNow.AddYears(1); var dtOneYear = DateTime.UtcNow.AddYears(1);
switch (product.VendorCode) switch (product.VendorCode)
@@ -280,6 +282,10 @@ namespace Sockeye.Biz
newLicense.Users = 15; newLicense.Users = 15;
newLicense.MaintenanceExpire = dtOneYear; newLicense.MaintenanceExpire = dtOneYear;
break; break;
case "301091845": //case 4576
newLicense.Users = 25;
newLicense.MaintenanceExpire = dtOneYear;
break;
default: default:
var err = $"SockBotProcessPurchasesIntoLicenses purchase: {purchase.Id} has product not part of v7 group expected: {product.Name}-{product.VendorCode}"; var err = $"SockBotProcessPurchasesIntoLicenses purchase: {purchase.Id} has product not part of v7 group expected: {product.Name}-{product.VendorCode}";
//serious issue requires immediate notification //serious issue requires immediate notification

View File

@@ -4,8 +4,8 @@
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<GenerateFullPaths>true</GenerateFullPaths> <GenerateFullPaths>true</GenerateFullPaths>
<Version>8.0.13</Version> <Version>8.0.14</Version>
<FileVersion>8.0.13.0</FileVersion> <FileVersion>8.0.14.0</FileVersion>
<ApplicationIcon>sockeye.ico</ApplicationIcon> <ApplicationIcon>sockeye.ico</ApplicationIcon>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<noWarn>1591</noWarn> <noWarn>1591</noWarn>

View File

@@ -5,7 +5,7 @@ namespace Sockeye.Util
/// </summary> /// </summary>
internal static class SockeyeVersion internal static class SockeyeVersion
{ {
public const string VersionString = "8.0.13"; public const string VersionString = "8.0.14";
public const string FullNameAndVersion = "Sockeye server " + VersionString; public const string FullNameAndVersion = "Sockeye server " + VersionString;
public const string CurrentApiVersion="v8"; public const string CurrentApiVersion="v8";
}//eoc }//eoc