From 063fbbc85f352c11977d3899cf479e21b20509d5 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Thu, 25 Feb 2021 14:46:26 +0000 Subject: [PATCH] Integration 2.3b2 : - aggiunta segnalazione pezzi con scarico a caduta o incompleti. --- IntegrationEgaltech/Generator.cs | 13 +++++++++++++ IntegrationEgaltech/Properties/AssemblyInfo.cs | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/IntegrationEgaltech/Generator.cs b/IntegrationEgaltech/Generator.cs index 88a16e0..4a2da7a 100644 --- a/IntegrationEgaltech/Generator.cs +++ b/IntegrationEgaltech/Generator.cs @@ -446,6 +446,19 @@ namespace ib.essetre.integration.egaltech else pattInfo.SetTaskInfoChosen( cutId, taskId, dRot, 0, false) ; } + else if ( line.StartsWith( "FALL=")) { + int? nVal = GetVal( line, "FALL") ; + if ( pattInfo.IsFromProject) { + ItemInfo iInfo = pattInfo.GetElementInfo( cutId) ; + if ( iInfo != null) + iInfo.Falls = ( nVal != 0) ; + } + else { + ItemInfo iInfo = pattInfo.GetCutInfo( cutId) ; + if ( iInfo != null) + iInfo.Falls = (nVal != 0); + } + } else if ( line.StartsWith( "TIME=")) { int? nVal = GetVal( line, "TIME") ; nTotTime = ( nVal != null ? nVal.Value : 0) ; diff --git a/IntegrationEgaltech/Properties/AssemblyInfo.cs b/IntegrationEgaltech/Properties/AssemblyInfo.cs index 66a7827..f58961a 100644 --- a/IntegrationEgaltech/Properties/AssemblyInfo.cs +++ b/IntegrationEgaltech/Properties/AssemblyInfo.cs @@ -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.3.2.1")] -[assembly: AssemblyFileVersion("2.3.2.1")] +[assembly: AssemblyVersion("2.3.2.2")] +[assembly: AssemblyFileVersion("2.3.2.2")]