Integration 2.2a4 :
- corretta gestione risultati elaborazione su features.
This commit is contained in:
@@ -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")]
|
||||
|
||||
Reference in New Issue
Block a user