Integration 2.3b2 :
- aggiunta segnalazione pezzi con scarico a caduta o incompleti.
This commit is contained in:
@@ -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) ;
|
||||
|
||||
@@ -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")]
|
||||
|
||||
Reference in New Issue
Block a user