Merge branch 'release/SoitaabAddProcOdlFromLog03'

This commit is contained in:
Samuele Locatelli
2023-11-06 08:56:38 +01:00
+16
View File
@@ -2,6 +2,7 @@
using IOB_UT_NEXT;
using MapoSDK;
using MathNet.Numerics.Statistics;
using Microsoft.IdentityModel.Tokens;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using NLog;
@@ -3946,8 +3947,16 @@ namespace IOB_WIN_NEXT.Iob
/// </summary>
protected int B_previous = -1;
/// <summary>
/// Cod grupo IOB x creazione PODL al volo
/// </summary>
protected string CodGruppoIob = "ND-00";
/// <summary>
/// Determina se sia prevista gestione PODL (creazione/avvio/chiusura) come Soitaab
/// </summary>
protected bool EnabelPodlManFull = false;
/// <summary>
/// Num errori check alive
/// </summary>
@@ -5260,6 +5269,13 @@ namespace IOB_WIN_NEXT.Iob
CodGruppoIob = getOptPar("CodGruppoIob");
CodGruppoIob = string.IsNullOrEmpty(CodGruppoIob) ? "ND-00" : CodGruppoIob;
// gestione completa PODL
string sEnabelPodlManFull = getOptPar("EnabelPodlManFull");
if(!string.IsNullOrEmpty(sEnabelPodlManFull))
{
bool.TryParse(sEnabelPodlManFull, out EnabelPodlManFull);
}
// abilitazione invio WDST disabilitazione controllo range valori DynData
if (!string.IsNullOrEmpty(getOptPar("DISABLE_SEND_WDST")))
{