From 9287b02ca7bb9115c7266a14ea159a442bdd19ac Mon Sep 17 00:00:00 2001 From: DarioS Date: Fri, 24 Sep 2021 11:32:35 +0200 Subject: [PATCH] Integration 2.3i1 : - aggiunta scrittura materiale nel BTL. --- IntegrationEgaltech/BTL.cs | 1 + IntegrationEgaltech/Constants.cs | 1 + IntegrationEgaltech/Properties/AssemblyInfo.cs | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/IntegrationEgaltech/BTL.cs b/IntegrationEgaltech/BTL.cs index 7b2b9a8..34171c1 100644 --- a/IntegrationEgaltech/BTL.cs +++ b/IntegrationEgaltech/BTL.cs @@ -60,6 +60,7 @@ namespace ib.essetre.integration.egaltech foreach ( Part singlePart in parts) { tw.WriteLine( Constants.PART) ; tw.WriteLine( Constants.SINGLE_MEMBER_NUMBER + singlePart.singleMemberNumber) ; + tw.WriteLine( Constants.MATERIAL + singlePart.Material) ; tw.WriteLine( Constants.COUNT + singlePart.count) ; double len = Convert.ToDouble( singlePart.length) * Math.Pow( 10, Constants.scaleUnit) ; diff --git a/IntegrationEgaltech/Constants.cs b/IntegrationEgaltech/Constants.cs index 764215c..41b5dfa 100644 --- a/IntegrationEgaltech/Constants.cs +++ b/IntegrationEgaltech/Constants.cs @@ -17,6 +17,7 @@ namespace ib.essetre.integration.egaltech public const string SCALE_UNIT = "SCALEUNIT: " ; public const string SINGLE_MEMBER_NUMBER = "SINGLEMEMBERNUMBER: " ; public const string DESIGNATION = "DESIGNATION: " ; + public const string MATERIAL = "MATERIAL: " ; public const string COUNT = "COUNT: " ; public const string LENGTH = "LENGTH: " ; public const string HEIGHT = "HEIGHT: " ; diff --git a/IntegrationEgaltech/Properties/AssemblyInfo.cs b/IntegrationEgaltech/Properties/AssemblyInfo.cs index a7e914d..91788c0 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.8.1")] -[assembly: AssemblyFileVersion("2.3.8.1")] +[assembly: AssemblyVersion("2.3.9.1")] +[assembly: AssemblyFileVersion("2.3.9.1")]