This commit is contained in:
@@ -13,7 +13,8 @@ See the [upgrade instructions](ops-upgrade.md) section of this manual for detail
|
||||
|
||||
#### Fixed
|
||||
|
||||
- UI: DateTime and Date controls not displaying properly localized when edit enabled
|
||||
- UI: DateTime and Date controls not displaying properly localized when in edit enabled mode
|
||||
- UI: Unit edit form New work order menu item not translated
|
||||
|
||||
## 2022
|
||||
|
||||
|
||||
@@ -247,6 +247,8 @@ namespace AyaNova
|
||||
}
|
||||
);
|
||||
|
||||
//for down the road when add updated swashbuckle libs
|
||||
// services.AddSwaggerGenNewtonsoftSupport();
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
@@ -51,6 +51,8 @@ namespace AyaNova.Core
|
||||
private const string LICENSE_SERVER_URL_EUROPA = "https://europa.ayanova.com/";
|
||||
private const string LICENSE_SERVER_URL_CALLISTO = "https://callisto.ayanova.com/";
|
||||
|
||||
private const string LICENSE_SERVER_URL_SOCKEYE = "https://sockeye.ayanova.com/";
|
||||
|
||||
internal const string LICENSE_MISMATCH_TO_BUILD_ERROR = "E1020 - Not licensed for this version of AyaNova. Fix: revert to previous version used or contact technical support for options";
|
||||
|
||||
//Warning: magic string, do not change this, triggers special login procedures to fix license issue
|
||||
@@ -619,7 +621,7 @@ namespace AyaNova.Core
|
||||
private static async Task<HttpResponseMessage> DoFetchAsync(string LicenseUrlParameters, StringContent content, HttpClient client)
|
||||
{
|
||||
var LicenseServer = string.Empty;
|
||||
for (int x = 0; x < 4; x++)
|
||||
for (int x = 0; x < 5; x++)
|
||||
{
|
||||
try
|
||||
{
|
||||
@@ -637,6 +639,9 @@ namespace AyaNova.Core
|
||||
case 3:
|
||||
LicenseServer = LICENSE_SERVER_URL_CALLISTO;
|
||||
break;
|
||||
case 4:
|
||||
LicenseServer = LICENSE_SERVER_URL_SOCKEYE;
|
||||
break;
|
||||
}
|
||||
|
||||
return await client.PostAsync($"{LicenseServer}{LicenseUrlParameters}", content);
|
||||
|
||||
Reference in New Issue
Block a user