Integration 2.2a4 :

- corretta gestione risultati elaborazione su features.
This commit is contained in:
Dario Sassi
2020-01-25 09:03:05 +00:00
parent f6e17f4733
commit 88ef602152
2 changed files with 9 additions and 3 deletions
+6
View File
@@ -179,6 +179,7 @@ namespace ib.essetre.integration.egaltech
bool bErrors = false ;
int nLastErr = 0 ;
string sLastMsg = "" ;
int nCurrCutId = 0 ;
Dictionary<int,PatternInfo.Results> dctErr = new Dictionary<int, PatternInfo.Results>() ;
Dictionary<int,double> dctRot = new Dictionary<int, double>() ;
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") ;
@@ -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")]