diff --git a/IntegrationEgaltech/Generator.cs b/IntegrationEgaltech/Generator.cs index 9024431..6966d9e 100644 --- a/IntegrationEgaltech/Generator.cs +++ b/IntegrationEgaltech/Generator.cs @@ -179,6 +179,7 @@ namespace ib.essetre.integration.egaltech bool bErrors = false ; int nLastErr = 0 ; string sLastMsg = "" ; + int nCurrCutId = 0 ; Dictionary dctErr = new Dictionary() ; Dictionary dctRot = new Dictionary() ; int nTotTime = 0 ; @@ -206,6 +207,11 @@ namespace ib.essetre.integration.egaltech else if ( line.StartsWith( "CUTID=")) { int? nVal = GetVal( line, "CUTID") ; cutId = ( nVal != null ? nVal.Value : 0) ; + if ( cutId != nCurrCutId) { + nCurrCutId = cutId ; + dctErr.Clear() ; + dctRot.Clear() ; + } } else if ( line.StartsWith( "TASKID=")) { int? nVal = GetVal( line, "TASKID") ; diff --git a/IntegrationEgaltech/Properties/AssemblyInfo.cs b/IntegrationEgaltech/Properties/AssemblyInfo.cs index ed03bb8..9a94f2f 100644 --- a/IntegrationEgaltech/Properties/AssemblyInfo.cs +++ b/IntegrationEgaltech/Properties/AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("EgalTech s.r.l.")] [assembly: AssemblyProduct("IntegrationEgaltech")] -[assembly: AssemblyCopyright("Copyright © 2018-2019 by EgalTech s.r.l.")] +[assembly: AssemblyCopyright("Copyright © 2018-2020 by EgalTech s.r.l.")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -36,5 +36,5 @@ using System.Runtime.InteropServices; // È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build // usando l'asterisco '*' come illustrato di seguito: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.2.1.3")] -[assembly: AssemblyFileVersion("2.2.1.3")] +[assembly: AssemblyVersion("2.2.1.4")] +[assembly: AssemblyFileVersion("2.2.1.4")]