Integration 2.1.2.2:

- Estrazione SingleMemberNumber: ora equivale al cutId nel caso Produzione e ad elementId nel caso Ordine
This commit is contained in:
Renzo Lanza
2019-02-04 09:45:39 +00:00
parent 0b7a91d97d
commit cbbd702609
3 changed files with 10 additions and 6 deletions
+4 -4
View File
@@ -250,8 +250,8 @@ namespace ib.essetre.integration.egaltech
for ( int ltc = 0; ltc < listaTasksCount; ltc++) {
if ( (int)ds.Tables[i].Rows[ltc]["cutId"] == ListaCutParts[c]) {
readPart.singleMemberNumber = ds.Tables[i].Rows[ltc]["productionId"].ToString();
readPart.count = Convert.ToString(1); // Deve essere 1 o tanto quante sono le Part?
readPart.singleMemberNumber = ds.Tables[i].Rows[ltc]["cutId"].ToString();
readPart.count = Convert.ToString(1);
readPart.length = ds.Tables[i].Rows[ltc]["length"].ToString();
readPart.height = ds.Tables[i].Rows[ltc]["height"].ToString();
readPart.width = ds.Tables[i].Rows[ltc]["width"].ToString();
@@ -364,8 +364,8 @@ namespace ib.essetre.integration.egaltech
for ( int ltc = 0; ltc < listaProcessesCount; ltc++) {
if ( (int)ds.Tables[i].Rows[ltc]["cutId"] == ListaCutParts[c]) {
readPart.singleMemberNumber = " "; // ds.Tables[0].Rows[ltc]["productionId"].ToString(); //In questo caso ci vuole?
readPart.count = Convert.ToString(1); // Deve essere 1 o tanto quante sono le Part?
readPart.singleMemberNumber = ds.Tables[i].Rows[ltc]["ElementId"].ToString();
readPart.count = Convert.ToString(1);
readPart.length = ds.Tables[i].Rows[ltc]["length"].ToString();
readPart.height = ds.Tables[i].Rows[ltc]["height"].ToString();
readPart.width = ds.Tables[i].Rows[ltc]["width"].ToString();
@@ -58,4 +58,8 @@
<WCFMetadata Include="Connected Services\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>copy "$(TargetPath)" "c:\TechnoEssetre7\ib.essetre.integration.egaltech.dll"
IF "$(ConfigurationName)" == "Debug" copy "$(TargetDir)$(TargetName).pdb" "c:\TechnoEssetre7\ib.essetre.integration.egaltech.pdb"</PostBuildEvent>
</PropertyGroup>
</Project>
@@ -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.1.2.1")]
[assembly: AssemblyFileVersion("2.1.2.1")]
[assembly: AssemblyVersion("2.1.2.2")]
[assembly: AssemblyFileVersion("2.1.2.2")]