From 17abd4aec3b2ac33a9dfd32cc52a9809f572ed14 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Fri, 7 Oct 2022 15:32:22 +0200 Subject: [PATCH] SyncDB (ex baglietto PODL) - metodo recupero ULTIMI articoli x macchina - metodo recupero ULTIMI dossier x macchina --- MP-IO/Controllers/IOBController.cs | 59 +++++++++++++++++++++++++ MapoDb/DS_DossPar.Designer.cs | 29 ++++++++++-- MapoDb/DS_DossPar.xsd | 11 +++++ MapoDb/DS_DossPar.xss | 2 +- MapoDb/DS_ProdTempi.xsd | 11 +++++ MapoDb/DS_ProdTempi1.Designer.cs | 71 ++++++++++++++++++++---------- REST_test/Insomnia_2022-10-07.json | 1 + 7 files changed, 156 insertions(+), 28 deletions(-) create mode 100644 REST_test/Insomnia_2022-10-07.json diff --git a/MP-IO/Controllers/IOBController.cs b/MP-IO/Controllers/IOBController.cs index 388d4eb9..7d906271 100644 --- a/MP-IO/Controllers/IOBController.cs +++ b/MP-IO/Controllers/IOBController.cs @@ -454,6 +454,31 @@ namespace MP_IO.Controllers return answ; } /// + /// Recupera elenco articoli USATI per ultimi: + /// - quelli dei PODL correnti + /// - quelli degli ultimi n (DOSS_LastArt in config) ODL lavorati + /// + /// GET: IOB/getArtByMacc + /// + /// Json contenente lista oggetti ARTICOLI serializzati + public string getLastArtByMacc(string id) + { + string answ = ""; + + // init obj DataLayer + DataLayer DataLayerObj = new DataLayer(); + try + { + // recupero dati macchina... + var elencoArt = DataLayerObj.taAnagArt.getLastByMacc(id); + + answ = JsonConvert.SerializeObject(elencoArt); + } + catch + { } + return answ; + } + /// /// Recupera DATI dell'ultimo dossier dato articolo: /// /// GET: IOB/getLastDossArt/cod_articolo @@ -488,6 +513,40 @@ namespace MP_IO.Controllers return answ; } /// + /// Recupera DATI dell'ultimo dossier dato articolo: + /// + /// GET: IOB/getLastDossArt/cod_articolo + /// + /// codice articolo, se vuoto --> non fa nulla + /// Json contenente lista oggetti DOSSIER serializzati + public string getLastDossByMacc(string id) + { + string answ = ""; + // attenzione! poiché nell'URL il carattere "#" fiene filtrato ci aspettiamo il + // carattere "|" che poi trasformiamo ora in "#" + if (string.IsNullOrEmpty(id)) + { + answ = "N.A."; + } + else + { + id = id.Replace("|", "#"); + + // init obj DataLayer + DataLayer DataLayerObj = new DataLayer(); + try + { + // recupero dati macchina... + var elencoDoss = DataLayerObj.taDOSS.getLastByMacc(id); + + answ = JsonConvert.SerializeObject(elencoDoss); + } + catch + { } + } + return answ; + } + /// /// Recupera DATI dell'ultimo dossier dato PODL correnti: /// /// GET: IOB/getLastDossPODL diff --git a/MapoDb/DS_DossPar.Designer.cs b/MapoDb/DS_DossPar.Designer.cs index 6ec84c1f..fea382cc 100644 --- a/MapoDb/DS_DossPar.Designer.cs +++ b/MapoDb/DS_DossPar.Designer.cs @@ -938,7 +938,7 @@ SELECT IdxDossier, IdxMacchina, DtRif, IdxODL, CodArticolo, DataType, Valore FRO [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitCommandCollection() { - this._commandCollection = new global::System.Data.SqlClient.SqlCommand[3]; + this._commandCollection = new global::System.Data.SqlClient.SqlCommand[4]; this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[0].Connection = this.Connection; this._commandCollection[0].CommandText = "SELECT *\r\nFROM Dossiers"; @@ -951,9 +951,15 @@ SELECT IdxDossier, IdxMacchina, DtRif, IdxODL, CodArticolo, DataType, Valore FRO this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodArticolo", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[2].Connection = this.Connection; - this._commandCollection[2].CommandText = "dbo.stp_DOSS_getLastByPODL"; + this._commandCollection[2].CommandText = "dbo.stp_DOSS_getLastByMacch"; this._commandCollection[2].CommandType = global::System.Data.CommandType.StoredProcedure; this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxMacchina", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[3] = new global::System.Data.SqlClient.SqlCommand(); + this._commandCollection[3].Connection = this.Connection; + this._commandCollection[3].CommandText = "dbo.stp_DOSS_getLastByPODL"; + this._commandCollection[3].CommandType = global::System.Data.CommandType.StoredProcedure; + this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -1001,8 +1007,25 @@ SELECT IdxDossier, IdxMacchina, DtRif, IdxODL, CodArticolo, DataType, Valore FRO [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)] - public virtual DS_DossPar.DossiersDataTable getLastByPODL() { + public virtual DS_DossPar.DossiersDataTable getLastByMacc(string IdxMacchina) { this.Adapter.SelectCommand = this.CommandCollection[2]; + if ((IdxMacchina == null)) { + this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[1].Value = ((string)(IdxMacchina)); + } + DS_DossPar.DossiersDataTable dataTable = new DS_DossPar.DossiersDataTable(); + this.Adapter.Fill(dataTable); + return dataTable; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] + [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)] + public virtual DS_DossPar.DossiersDataTable getLastByPODL() { + this.Adapter.SelectCommand = this.CommandCollection[3]; DS_DossPar.DossiersDataTable dataTable = new DS_DossPar.DossiersDataTable(); this.Adapter.Fill(dataTable); return dataTable; diff --git a/MapoDb/DS_DossPar.xsd b/MapoDb/DS_DossPar.xsd index ca398e15..c65893be 100644 --- a/MapoDb/DS_DossPar.xsd +++ b/MapoDb/DS_DossPar.xsd @@ -88,6 +88,17 @@ SELECT IdxDossier, IdxMacchina, DtRif, IdxODL, CodArticolo, DataType, Valore FRO + + + + dbo.stp_DOSS_getLastByMacch + + + + + + + diff --git a/MapoDb/DS_DossPar.xss b/MapoDb/DS_DossPar.xss index 67cc0030..0b6e46d6 100644 --- a/MapoDb/DS_DossPar.xss +++ b/MapoDb/DS_DossPar.xss @@ -6,7 +6,7 @@ --> - + \ No newline at end of file diff --git a/MapoDb/DS_ProdTempi.xsd b/MapoDb/DS_ProdTempi.xsd index 0858febe..8a4f0aed 100644 --- a/MapoDb/DS_ProdTempi.xsd +++ b/MapoDb/DS_ProdTempi.xsd @@ -726,6 +726,17 @@ SELECT CodArticolo, Disegno, DescArticolo, CurrRev, ProdRev, FlagIsNew, Tipo FRO + + + + dbo.stp_ART_getLastByMacch + + + + + + + diff --git a/MapoDb/DS_ProdTempi1.Designer.cs b/MapoDb/DS_ProdTempi1.Designer.cs index f2d03013..22fac73f 100644 --- a/MapoDb/DS_ProdTempi1.Designer.cs +++ b/MapoDb/DS_ProdTempi1.Designer.cs @@ -19035,7 +19035,7 @@ SELECT CodArticolo, Disegno, DescArticolo, CurrRev, ProdRev, FlagIsNew, Tipo FRO [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitCommandCollection() { - this._commandCollection = new global::System.Data.SqlClient.SqlCommand[10]; + this._commandCollection = new global::System.Data.SqlClient.SqlCommand[11]; this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[0].Connection = this.Connection; this._commandCollection[0].CommandText = "SELECT * FROM v_AnagArticoli"; @@ -19066,43 +19066,49 @@ SELECT CodArticolo, Disegno, DescArticolo, CurrRev, ProdRev, FlagIsNew, Tipo FRO this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[5] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[5].Connection = this.Connection; - this._commandCollection[5].CommandText = "dbo.stp_ART_getPaged"; + this._commandCollection[5].CommandText = "dbo.stp_ART_getLastByMacch"; this._commandCollection[5].CommandType = global::System.Data.CommandType.StoredProcedure; this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@maximumRows", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@startRowIndex", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@orderByCol", global::System.Data.SqlDbType.NVarChar, 250, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@searchVal", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@tipo", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxMacchina", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[6] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[6].Connection = this.Connection; - this._commandCollection[6].CommandText = "dbo.stp_ART_getUsed"; + this._commandCollection[6].CommandText = "dbo.stp_ART_getPaged"; this._commandCollection[6].CommandType = global::System.Data.CommandType.StoredProcedure; this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@maximumRows", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@startRowIndex", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@orderByCol", global::System.Data.SqlDbType.NVarChar, 250, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@searchVal", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@tipo", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[7] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[7].Connection = this.Connection; - this._commandCollection[7].CommandText = "dbo.stp_ART_rowCount"; + this._commandCollection[7].CommandText = "dbo.stp_ART_getUsed"; this._commandCollection[7].CommandType = global::System.Data.CommandType.StoredProcedure; this._commandCollection[7].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[7].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@searchVal", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[7].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@tipo", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[8] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[8].Connection = this.Connection; - this._commandCollection[8].CommandText = "dbo.stp_ART_setNewRev"; + this._commandCollection[8].CommandText = "dbo.stp_ART_rowCount"; this._commandCollection[8].CommandType = global::System.Data.CommandType.StoredProcedure; this._commandCollection[8].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[8].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_CodArticolo", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[8].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@searchVal", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[8].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@tipo", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[9] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[9].Connection = this.Connection; - this._commandCollection[9].CommandText = "dbo.stp_ART_update"; + this._commandCollection[9].CommandText = "dbo.stp_ART_setNewRev"; this._commandCollection[9].CommandType = global::System.Data.CommandType.StoredProcedure; this._commandCollection[9].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[9].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_CodArticolo", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[9].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DescArticolo", global::System.Data.SqlDbType.NVarChar, 250, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[9].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CurrRev", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[9].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodArticolo", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[9].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Disegno", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); - this._commandCollection[9].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Tipo", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[10] = new global::System.Data.SqlClient.SqlCommand(); + this._commandCollection[10].Connection = this.Connection; + this._commandCollection[10].CommandText = "dbo.stp_ART_update"; + this._commandCollection[10].CommandType = global::System.Data.CommandType.StoredProcedure; + this._commandCollection[10].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[10].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_CodArticolo", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[10].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DescArticolo", global::System.Data.SqlDbType.NVarChar, 250, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[10].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CurrRev", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[10].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodArticolo", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[10].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Disegno", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[10].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Tipo", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -19161,8 +19167,25 @@ SELECT CodArticolo, Disegno, DescArticolo, CurrRev, ProdRev, FlagIsNew, Tipo FRO [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)] - public virtual DS_ProdTempi.AnagArticoliDataTable getPaged(global::System.Nullable maximumRows, global::System.Nullable startRowIndex, string orderByCol, string searchVal, string tipo) { + public virtual DS_ProdTempi.AnagArticoliDataTable getLastByMacc(string IdxMacchina) { this.Adapter.SelectCommand = this.CommandCollection[5]; + if ((IdxMacchina == null)) { + this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value; + } + else { + this.Adapter.SelectCommand.Parameters[1].Value = ((string)(IdxMacchina)); + } + DS_ProdTempi.AnagArticoliDataTable dataTable = new DS_ProdTempi.AnagArticoliDataTable(); + this.Adapter.Fill(dataTable); + return dataTable; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] + [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)] + public virtual DS_ProdTempi.AnagArticoliDataTable getPaged(global::System.Nullable maximumRows, global::System.Nullable startRowIndex, string orderByCol, string searchVal, string tipo) { + this.Adapter.SelectCommand = this.CommandCollection[6]; if ((maximumRows.HasValue == true)) { this.Adapter.SelectCommand.Parameters[1].Value = ((int)(maximumRows.Value)); } @@ -19203,7 +19226,7 @@ SELECT CodArticolo, Disegno, DescArticolo, CurrRev, ProdRev, FlagIsNew, Tipo FRO [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)] public virtual DS_ProdTempi.AnagArticoliDataTable getUsed() { - this.Adapter.SelectCommand = this.CommandCollection[6]; + this.Adapter.SelectCommand = this.CommandCollection[7]; DS_ProdTempi.AnagArticoliDataTable dataTable = new DS_ProdTempi.AnagArticoliDataTable(); this.Adapter.Fill(dataTable); return dataTable; @@ -19548,7 +19571,7 @@ SELECT CodArticolo, Disegno, DescArticolo, CurrRev, ProdRev, FlagIsNew, Tipo FRO [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual object rowCount(string searchVal, string tipo) { - global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[7]; + global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[8]; if ((searchVal == null)) { command.Parameters[1].Value = global::System.DBNull.Value; } @@ -19588,7 +19611,7 @@ SELECT CodArticolo, Disegno, DescArticolo, CurrRev, ProdRev, FlagIsNew, Tipo FRO [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int setNewRev(string Original_CodArticolo) { - global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[8]; + global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[9]; if ((Original_CodArticolo == null)) { command.Parameters[1].Value = global::System.DBNull.Value; } @@ -19616,7 +19639,7 @@ SELECT CodArticolo, Disegno, DescArticolo, CurrRev, ProdRev, FlagIsNew, Tipo FRO [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int updateQry(string Original_CodArticolo, string DescArticolo, string CurrRev, string CodArticolo, string Disegno, string Tipo) { - global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[9]; + global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[10]; if ((Original_CodArticolo == null)) { command.Parameters[1].Value = global::System.DBNull.Value; } diff --git a/REST_test/Insomnia_2022-10-07.json b/REST_test/Insomnia_2022-10-07.json new file mode 100644 index 00000000..57a23ce6 --- /dev/null +++ b/REST_test/Insomnia_2022-10-07.json @@ -0,0 +1 @@ +{"_type":"export","__export_format":4,"__export_date":"2022-10-07T13:30:48.887Z","__export_source":"insomnia.desktop.app:v2022.5.1","resources":[{"_id":"req_18c7546d80a74c019f71980710c3a765","parentId":"fld_cde081c45fe24e268c98db0c9c60d5be","modified":1573490149972,"created":1573400234158,"url":"{{ BASE_URL }}/IOB/getObjItems/SIMUL_01","name":"Get All Items","description":"","method":"GET","body":{},"parameters":[],"headers":[],"authentication":{},"metaSortKey":-1572688535038.5,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"fld_cde081c45fe24e268c98db0c9c60d5be","parentId":"wrk_6eaf0a20123c480295db476860d8f716","modified":1573404868724,"created":1573400229143,"name":"MP-IO parametri","description":"","environment":{},"environmentPropertyOrder":null,"metaSortKey":-1573400229143,"_type":"request_group"},{"_id":"wrk_6eaf0a20123c480295db476860d8f716","parentId":null,"modified":1573489541008,"created":1572685869137,"name":"MP-IO","description":"","scope":"design","_type":"workspace"},{"_id":"req_5d8f4dc26a944a6cb6ffe55ec6e57415","parentId":"fld_cde081c45fe24e268c98db0c9c60d5be","modified":1573404368579,"created":1573402488180,"url":"{{ BASE_URL }}/IOB/getObjItems2Write/SIMUL_01","name":"Get All Items 2 write","description":"","method":"GET","body":{},"parameters":[],"headers":[],"authentication":{},"metaSortKey":-1572688535032.25,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_b7f013c98aa344c2a7ceb01d915c6e65","parentId":"fld_cde081c45fe24e268c98db0c9c60d5be","modified":1657198832659,"created":1573400285659,"url":"{{ BASE_URL }}/IOB/setObjItems/SIMUL_01","name":"Add All Items","description":"","method":"POST","body":{"mimeType":"application/json","text":"[\n\t{\n\t\t\"uid\": \"setArt\",\n\t\t\"name\": \"Articolo\",\n\t\t\"value\": \"ART000123\",\n\t\t\"lastRead\": \"{% now 'iso-8601', '' %}\",\n\t\t\"writable\": true\n\t},\n\t{\n\t\t\"uid\": \"setComm\",\n\t\t\"name\": \"Commessa\",\n\t\t\"value\": \"COMM000002\",\n\t\t\"lastRead\": \"{% now 'iso-8601', '' %}\",\n\t\t\"writable\": true\n\t},\n\t{\n\t\t\"uid\": \"TEMP_01\",\n\t\t\"name\": \"Temperatura 01\",\n\t\t\"value\": \"9\",\n\t\t\"lastRead\": \"{% now 'iso-8601', '' %}\"\n\t},\n\t{\n\t\t\"uid\": \"PRESS_01\",\n\t\t\"name\": \"Pressione 01\",\n\t\t\"value\": \"9\",\n\t\t\"lastRead\": \"{% now 'iso-8601', '' %}\"\n\t}\n]\n"},"parameters":[],"headers":[{"id":"pair_d9894ec846994bcda341092cd0263f08","name":"Content-Type","value":"application/json"}],"authentication":{},"metaSortKey":-1572688535007.25,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_47f2f4e7facc465893880458e1c9f077","parentId":"fld_cde081c45fe24e268c98db0c9c60d5be","modified":1657198830313,"created":1573400470873,"url":"{{ BASE_URL }}/IOB/upsertObjItems/SIMUL_01","name":"Add Some Item","description":"","method":"POST","body":{"mimeType":"application/json","text":"[\n\t{\n\t\t\"uid\": \"setComm\",\n\t\t\"name\": \"Commessa\",\n\t\t\"value\": \"\",\n\t\t\"reqValue\": \"COMM000003\",\n\t\t\"lastRequest\": \"{% now 'iso-8601', '' %}\",\n\t\t\"writable\": true\n\t}\n]"},"parameters":[],"headers":[{"id":"pair_d9894ec846994bcda341092cd0263f08","name":"Content-Type","value":"application/json"}],"authentication":{},"metaSortKey":-1572688534982.25,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_1db8943d9ce74172aa0c9c2b536cc1ab","parentId":"fld_acf754fe816646b5bc43b9657fe9d2a7","modified":1665075151339,"created":1664982160752,"url":"{{ BASE_URL }}/IOB/getCurrPODL/SIMUL_01","name":"Get curr PODL","description":"","method":"GET","body":{},"parameters":[],"headers":[],"authentication":{},"metaSortKey":-1572688535038.5,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"fld_acf754fe816646b5bc43b9657fe9d2a7","parentId":"wrk_6eaf0a20123c480295db476860d8f716","modified":1664982160747,"created":1664982160747,"name":"MP-IO PODL-DOSSIER","description":"","environment":{},"environmentPropertyOrder":null,"metaSortKey":-1573231731968.5,"_type":"request_group"},{"_id":"req_db67e58a9e8b4b9db33bb9cb99e7cd4b","parentId":"fld_acf754fe816646b5bc43b9657fe9d2a7","modified":1665075165801,"created":1665075158847,"url":"{{ BASE_URL }}/IOB/getCurrPODL/","name":"Get curr PODL (ALL)","description":"","method":"GET","body":{},"parameters":[],"headers":[],"authentication":{},"metaSortKey":-1572688535035.375,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_7f3f9a1d035149259c306c215137e08b","parentId":"fld_acf754fe816646b5bc43b9657fe9d2a7","modified":1665127481832,"created":1665126908538,"url":"{{ BASE_URL }}/IOB/getArtCurrPODL","name":"Get ART by CurrODL","description":"","method":"GET","body":{},"parameters":[],"headers":[],"authentication":{},"metaSortKey":-1572688535034.5938,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_9659721d667c49fcacbbf4e28313c2cb","parentId":"fld_acf754fe816646b5bc43b9657fe9d2a7","modified":1665127491077,"created":1665127488279,"url":"{{ BASE_URL }}/IOB/getArtUsed","name":"Get ART used","description":"","method":"GET","body":{},"parameters":[],"headers":[],"authentication":{},"metaSortKey":-1572688535033.4219,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_2c0f5944140e4e4eb367c7e31b7f71a9","parentId":"fld_acf754fe816646b5bc43b9657fe9d2a7","modified":1664982227256,"created":1664982160769,"url":"{{ BASE_URL }}/IOB/getLastDossArt/NCC_1701D","name":"Get Last DOSS by ART","description":"","method":"GET","body":{},"parameters":[],"headers":[],"authentication":{},"metaSortKey":-1572688535032.25,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_eca298670f414669b4bd2813179c15ff","parentId":"fld_acf754fe816646b5bc43b9657fe9d2a7","modified":1664982246524,"created":1664982242873,"url":"{{ BASE_URL }}/IOB/getLastDossPODL","name":"Get Last DOSS by PODL","description":"","method":"GET","body":{},"parameters":[],"headers":[],"authentication":{},"metaSortKey":-1572688535029.125,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_c431400ab6b64e3d985fbce6f4de5811","parentId":"fld_acf754fe816646b5bc43b9657fe9d2a7","modified":1665149328337,"created":1665149079679,"url":"{{ BASE_URL }}/IOB/getLastArtByMacc/SIMUL_01","name":"Get ART last by Macc","description":"","method":"GET","body":{},"parameters":[],"headers":[],"authentication":{},"metaSortKey":-1572688534979.125,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":true,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_f58d5cdb884044209ac7a15af66a412a","parentId":"fld_acf754fe816646b5bc43b9657fe9d2a7","modified":1665149383515,"created":1665149297526,"url":"{{ BASE_URL }}/IOB/getLastDossByMacc/SIMUL_01","name":"Get DOSS last by Macc","description":"","method":"GET","body":{},"parameters":[],"headers":[],"authentication":{},"metaSortKey":-1572688534977.5625,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":true,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_73c9276d0eec46b19011f9f6868e20c6","parentId":"fld_d8d2ad76cbd44eda870135968c48db24","modified":1653313059862,"created":1574522588204,"url":"{{ BASE_URL }}/IOB/saveDataItems/SIMUL_01","name":"Send DataItems","description":"","method":"POST","body":{"mimeType":"application/json","text":"[{\n\t\"uuid\": \"AVAIL\",\n\t\"Category\": 1,\n\t\"Name\": null,\n\t\"Type\": \"AVAILABILITY\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"STATUS\",\n\t\"Category\": 1,\n\t\"Name\": null,\n\t\"Type\": \"ACTUATOR_STATE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"ACC_TIME\",\n\t\"Category\": 2,\n\t\"Name\": \"[s] Tempo macchina in potenza\",\n\t\"Type\": \"ACCUMULATED_TIME\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"ACC_TIME_WORK\",\n\t\"Category\": 2,\n\t\"Name\": \"[s] Tempo macchina in movimento\",\n\t\"Type\": \"ACCUMULATED_TIME\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"CLOCK\",\n\t\"Category\": 2,\n\t\"Name\": null,\n\t\"Type\": \"CLOCK_TIME\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"POWER\",\n\t\"Category\": 1,\n\t\"Name\": null,\n\t\"Type\": \"POWER_STATE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"OperatorId\",\n\t\"Category\": 1,\n\t\"Name\": \"ID Operatore\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"FUNCT_MODE\",\n\t\"Category\": 1,\n\t\"Name\": null,\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"USER_ACTION\",\n\t\"Category\": 1,\n\t\"Name\": null,\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"TESTING_DATA\",\n\t\"Category\": 1,\n\t\"Name\": null,\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"PROTECTION_STATUS\",\n\t\"Category\": 1,\n\t\"Name\": \"Stato protezioni\",\n\t\"Type\": \"ACTUATOR_STATE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"UNK_STATUS\",\n\t\"Category\": 1,\n\t\"Name\": \"Stati sconosciuti\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"UNK_STROBE\",\n\t\"Category\": 1,\n\t\"Name\": \"Strobes sconosciuti\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"CNC\",\n\t\"Category\": 0,\n\t\"Name\": null,\n\t\"Type\": \"SYSTEM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"PLC\",\n\t\"Category\": 0,\n\t\"Name\": null,\n\t\"Type\": \"LOGIC_PROGRAM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"MTC_asset_chg\",\n\t\"Category\": 1,\n\t\"Name\": null,\n\t\"Type\": \"ASSET_CHANGED\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"MTC_asset_rem\",\n\t\"Category\": 1,\n\t\"Name\": null,\n\t\"Type\": \"ASSET_REMOVED\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_01_PosAct\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm] Quota attuale\",\n\t\"Type\": \"POSITION\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"MILLIMETER\"\n}, {\n\t\"uuid\": \"Axis_01_PosTgt\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm] Quota target\",\n\t\"Type\": \"POSITION\",\n\t\"SubType\": \"TARGET\",\n\t\"Units\": \"MILLIMETER\"\n}, {\n\t\"uuid\": \"Axis_01_Load\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] Carico\",\n\t\"Type\": \"LOAD\",\n\t\"SubType\": null,\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"Axis_01_FeedAct\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm/min] Feedrate\",\n\t\"Type\": \"AXIS_FEEDRATE\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"MILLIMETER/SECOND\"\n}, {\n\t\"uuid\": \"Axis_01_FeedOver\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] Feed Override\",\n\t\"Type\": \"AXIS_FEEDRATE\",\n\t\"SubType\": \"OVERRIDE\",\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"Axis_01_AccTime\",\n\t\"Category\": 2,\n\t\"Name\": \"[s] Tempo utilizzo\",\n\t\"Type\": \"ACCUMULATED_TIME\",\n\t\"SubType\": null,\n\t\"Units\": \"SECOND\"\n}, {\n\t\"uuid\": \"Axis_01_DistDone\",\n\t\"Category\": 2,\n\t\"Name\": \"[m] Distanza totale percorsa\",\n\t\"Type\": \"LENGTH\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"Axis_01_InvDDone\",\n\t\"Category\": 2,\n\t\"Name\": \"[#] Numero inversioni\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"Axis_01_MainProc\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] Processo di appartenenza\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_01_IsMast\",\n\t\"Category\": 1,\n\t\"Name\": \"[0/1] Master/Slave\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_01_MastId\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] ID Asse master\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_01_Dir\",\n\t\"Category\": 1,\n\t\"Name\": \"[-/+] Direzione\",\n\t\"Type\": \"DIRECTION\",\n\t\"SubType\": \"LINEAR\",\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_01_AlarmCNC\",\n\t\"Category\": 0,\n\t\"Name\": \"Allarmi CN\",\n\t\"Type\": \"SYSTEM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_01_AlarmPLC\",\n\t\"Category\": 0,\n\t\"Name\": \"Allarmi PLC\",\n\t\"Type\": \"LOGIC_PROGRAM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_02_PosAct\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm] Quota attuale\",\n\t\"Type\": \"POSITION\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"MILLIMETER\"\n}, {\n\t\"uuid\": \"Axis_02_PosTgt\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm] Quota target\",\n\t\"Type\": \"POSITION\",\n\t\"SubType\": \"TARGET\",\n\t\"Units\": \"MILLIMETER\"\n}, {\n\t\"uuid\": \"Axis_02_Load\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] Carico\",\n\t\"Type\": \"LOAD\",\n\t\"SubType\": null,\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"Axis_02_FeedAct\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm/min] Feedrate\",\n\t\"Type\": \"AXIS_FEEDRATE\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"MILLIMETER/SECOND\"\n}, {\n\t\"uuid\": \"Axis_02_FeedOver\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] Feed Override\",\n\t\"Type\": \"AXIS_FEEDRATE\",\n\t\"SubType\": \"OVERRIDE\",\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"Axis_02_AccTime\",\n\t\"Category\": 2,\n\t\"Name\": \"[s] Tempo utilizzo\",\n\t\"Type\": \"ACCUMULATED_TIME\",\n\t\"SubType\": null,\n\t\"Units\": \"SECOND\"\n}, {\n\t\"uuid\": \"Axis_02_DistDone\",\n\t\"Category\": 2,\n\t\"Name\": \"[m] Distanza totale percorsa\",\n\t\"Type\": \"LENGTH\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"Axis_02_InvDDone\",\n\t\"Category\": 2,\n\t\"Name\": \"[#] Numero inversioni\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"Axis_02_MainProc\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] Processo di appartenenza\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_02_IsMast\",\n\t\"Category\": 1,\n\t\"Name\": \"[0/1] Master/Slave\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_02_MastId\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] ID Asse master\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_02_Dir\",\n\t\"Category\": 1,\n\t\"Name\": \"[-/+] Direzione\",\n\t\"Type\": \"DIRECTION\",\n\t\"SubType\": \"LINEAR\",\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_02_AlarmCNC\",\n\t\"Category\": 0,\n\t\"Name\": \"Allarmi CN\",\n\t\"Type\": \"SYSTEM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_02_AlarmPLC\",\n\t\"Category\": 0,\n\t\"Name\": \"Allarmi PLC\",\n\t\"Type\": \"LOGIC_PROGRAM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_03_PosAct\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm] Quota attuale\",\n\t\"Type\": \"POSITION\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"MILLIMETER\"\n}, {\n\t\"uuid\": \"Axis_03_PosTgt\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm] Quota target\",\n\t\"Type\": \"POSITION\",\n\t\"SubType\": \"TARGET\",\n\t\"Units\": \"MILLIMETER\"\n}, {\n\t\"uuid\": \"Axis_03_Load\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] Carico\",\n\t\"Type\": \"LOAD\",\n\t\"SubType\": null,\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"Axis_03_FeedAct\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm/min] Feedrate\",\n\t\"Type\": \"AXIS_FEEDRATE\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"MILLIMETER/SECOND\"\n}, {\n\t\"uuid\": \"Axis_03_FeedOver\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] Feed Override\",\n\t\"Type\": \"AXIS_FEEDRATE\",\n\t\"SubType\": \"OVERRIDE\",\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"Axis_03_AccTime\",\n\t\"Category\": 2,\n\t\"Name\": \"[s] Tempo utilizzo\",\n\t\"Type\": \"ACCUMULATED_TIME\",\n\t\"SubType\": null,\n\t\"Units\": \"SECOND\"\n}, {\n\t\"uuid\": \"Axis_03_DistDone\",\n\t\"Category\": 2,\n\t\"Name\": \"[m] Distanza totale percorsa\",\n\t\"Type\": \"LENGTH\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"Axis_03_InvDDone\",\n\t\"Category\": 2,\n\t\"Name\": \"[#] Numero inversioni\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"Axis_03_MainProc\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] Processo di appartenenza\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_03_IsMast\",\n\t\"Category\": 1,\n\t\"Name\": \"[0/1] Master/Slave\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_03_MastId\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] ID Asse master\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_03_Dir\",\n\t\"Category\": 1,\n\t\"Name\": \"[-/+] Direzione\",\n\t\"Type\": \"DIRECTION\",\n\t\"SubType\": \"LINEAR\",\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_03_AlarmCNC\",\n\t\"Category\": 0,\n\t\"Name\": \"Allarmi CN\",\n\t\"Type\": \"SYSTEM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_03_AlarmPLC\",\n\t\"Category\": 0,\n\t\"Name\": \"Allarmi PLC\",\n\t\"Type\": \"LOGIC_PROGRAM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_04_PosAct\",\n\t\"Category\": 2,\n\t\"Name\": \"[°] Quota attuale\",\n\t\"Type\": \"ANGLE\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"DEGREE\"\n}, {\n\t\"uuid\": \"Axis_04_PosTgt\",\n\t\"Category\": 2,\n\t\"Name\": \"[°] Quota target\",\n\t\"Type\": \"ANGLE\",\n\t\"SubType\": \"TARGET\",\n\t\"Units\": \"DEGREE\"\n}, {\n\t\"uuid\": \"Axis_04_Load\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] Carico\",\n\t\"Type\": \"LOAD\",\n\t\"SubType\": null,\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"Axis_04_FeedAct\",\n\t\"Category\": 2,\n\t\"Name\": \"[°/min] Feedrate\",\n\t\"Type\": \"ROTARY_VELOCITY\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"REVOLUTION/MINUTE\"\n}, {\n\t\"uuid\": \"Axis_04_FeedOver\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] Feed Override\",\n\t\"Type\": \"ROTARY_VELOCITY\",\n\t\"SubType\": \"OVERRIDE\",\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"Axis_04_AccTime\",\n\t\"Category\": 2,\n\t\"Name\": \"[s] Tempo utilizzo\",\n\t\"Type\": \"ACCUMULATED_TIME\",\n\t\"SubType\": null,\n\t\"Units\": \"SECOND\"\n}, {\n\t\"uuid\": \"Axis_04_DistDone\",\n\t\"Category\": 2,\n\t\"Name\": \"[rev] Rivoluzioni\",\n\t\"Type\": \"LENGTH\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"Axis_04_InvDDone\",\n\t\"Category\": 2,\n\t\"Name\": \"[#] Numero inversioni\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"Axis_04_MainProc\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] Processo di appartenenza\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_04_IsMast\",\n\t\"Category\": 1,\n\t\"Name\": \"[0/1] Master/Slave\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_04_MastId\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] ID Asse master\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_04_Dir\",\n\t\"Category\": 1,\n\t\"Name\": \"[-/+] Direzione\",\n\t\"Type\": \"DIRECTION\",\n\t\"SubType\": \"ROTARY\",\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_04_AlarmCNC\",\n\t\"Category\": 0,\n\t\"Name\": \"Allarmi CN\",\n\t\"Type\": \"SYSTEM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_04_AlarmPLC\",\n\t\"Category\": 0,\n\t\"Name\": \"Allarmi PLC\",\n\t\"Type\": \"LOGIC_PROGRAM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_05_PosAct\",\n\t\"Category\": 2,\n\t\"Name\": \"[°] Quota attuale\",\n\t\"Type\": \"ANGLE\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"DEGREE\"\n}, {\n\t\"uuid\": \"Axis_05_PosTgt\",\n\t\"Category\": 2,\n\t\"Name\": \"[°] Quota target\",\n\t\"Type\": \"ANGLE\",\n\t\"SubType\": \"TARGET\",\n\t\"Units\": \"DEGREE\"\n}, {\n\t\"uuid\": \"Axis_05_Load\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] Carico\",\n\t\"Type\": \"LOAD\",\n\t\"SubType\": null,\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"Axis_05_FeedAct\",\n\t\"Category\": 2,\n\t\"Name\": \"[°/min] Feedrate\",\n\t\"Type\": \"ROTARY_VELOCITY\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"REVOLUTION/MINUTE\"\n}, {\n\t\"uuid\": \"Axis_05_FeedOver\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] Feed Override\",\n\t\"Type\": \"ROTARY_VELOCITY\",\n\t\"SubType\": \"OVERRIDE\",\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"Axis_05_AccTime\",\n\t\"Category\": 2,\n\t\"Name\": \"[s] Tempo utilizzo\",\n\t\"Type\": \"ACCUMULATED_TIME\",\n\t\"SubType\": null,\n\t\"Units\": \"SECOND\"\n}, {\n\t\"uuid\": \"Axis_05_DistDone\",\n\t\"Category\": 2,\n\t\"Name\": \"[rev] Rivoluzioni\",\n\t\"Type\": \"LENGTH\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"Axis_05_InvDDone\",\n\t\"Category\": 2,\n\t\"Name\": \"[#] Numero inversioni\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"Axis_05_MainProc\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] Processo di appartenenza\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_05_IsMast\",\n\t\"Category\": 1,\n\t\"Name\": \"[0/1] Master/Slave\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_05_MastId\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] ID Asse master\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_05_Dir\",\n\t\"Category\": 1,\n\t\"Name\": \"[-/+] Direzione\",\n\t\"Type\": \"DIRECTION\",\n\t\"SubType\": \"ROTARY\",\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_05_AlarmCNC\",\n\t\"Category\": 0,\n\t\"Name\": \"Allarmi CN\",\n\t\"Type\": \"SYSTEM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_05_AlarmPLC\",\n\t\"Category\": 0,\n\t\"Name\": \"Allarmi PLC\",\n\t\"Type\": \"LOGIC_PROGRAM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_06_PosAct\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm] Quota attuale\",\n\t\"Type\": \"POSITION\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"MILLIMETER\"\n}, {\n\t\"uuid\": \"Axis_06_PosTgt\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm] Quota target\",\n\t\"Type\": \"POSITION\",\n\t\"SubType\": \"TARGET\",\n\t\"Units\": \"MILLIMETER\"\n}, {\n\t\"uuid\": \"Axis_06_Load\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] Carico\",\n\t\"Type\": \"LOAD\",\n\t\"SubType\": null,\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"Axis_06_FeedAct\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm/min] Feedrate\",\n\t\"Type\": \"AXIS_FEEDRATE\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"MILLIMETER/SECOND\"\n}, {\n\t\"uuid\": \"Axis_06_FeedOver\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] Feed Override\",\n\t\"Type\": \"AXIS_FEEDRATE\",\n\t\"SubType\": \"OVERRIDE\",\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"Axis_06_AccTime\",\n\t\"Category\": 2,\n\t\"Name\": \"[s] Tempo utilizzo\",\n\t\"Type\": \"ACCUMULATED_TIME\",\n\t\"SubType\": null,\n\t\"Units\": \"SECOND\"\n}, {\n\t\"uuid\": \"Axis_06_DistDone\",\n\t\"Category\": 2,\n\t\"Name\": \"[m] Distanza totale percorsa\",\n\t\"Type\": \"LENGTH\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"Axis_06_InvDDone\",\n\t\"Category\": 2,\n\t\"Name\": \"[#] Numero inversioni\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"Axis_06_MainProc\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] Processo di appartenenza\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_06_IsMast\",\n\t\"Category\": 1,\n\t\"Name\": \"[0/1] Master/Slave\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_06_MastId\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] ID Asse master\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_06_Dir\",\n\t\"Category\": 1,\n\t\"Name\": \"[-/+] Direzione\",\n\t\"Type\": \"DIRECTION\",\n\t\"SubType\": \"LINEAR\",\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_06_AlarmCNC\",\n\t\"Category\": 0,\n\t\"Name\": \"Allarmi CN\",\n\t\"Type\": \"SYSTEM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Axis_06_AlarmPLC\",\n\t\"Category\": 0,\n\t\"Name\": \"Allarmi PLC\",\n\t\"Type\": \"LOGIC_PROGRAM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Message\",\n\t\"Category\": 1,\n\t\"Name\": \"Segnalazioni\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"E_STOP\",\n\t\"Category\": 1,\n\t\"Name\": \"Stato emergenze\",\n\t\"Type\": \"EMERGENCY_STOP\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Path_01_Type\",\n\t\"Category\": 1,\n\t\"Name\": \"Lavoro/Asservimento\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Path_01_ActiveAxes\",\n\t\"Category\": 1,\n\t\"Name\": \"Assi attivi\",\n\t\"Type\": \"ACTIVE_AXES\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Path_01_CodG_Act\",\n\t\"Category\": 1,\n\t\"Name\": \"Codici G\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Path_01_SubMode\",\n\t\"Category\": 1,\n\t\"Name\": \"Modo secondario\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Path_01_PartId\",\n\t\"Category\": 1,\n\t\"Name\": \"Pezzo corrente\",\n\t\"Type\": \"PART_ID\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Path_01_PZ_TOT\",\n\t\"Category\": 1,\n\t\"Name\": \"Pezzi prodotti\",\n\t\"Type\": \"PART_COUNT\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Path_01_Cod_M\",\n\t\"Category\": 1,\n\t\"Name\": \"Codici M\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Path_01_Cod_S\",\n\t\"Category\": 1,\n\t\"Name\": \"Codici S\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Path_01_Cod_T\",\n\t\"Category\": 1,\n\t\"Name\": \"Codici T\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Path_01_RUN_MODE\",\n\t\"Category\": 1,\n\t\"Name\": \"Modo operativo\",\n\t\"Type\": \"CONTROLLER_MODE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Path_01_EXE_MODE\",\n\t\"Category\": 1,\n\t\"Name\": \"Stato esecuzione\",\n\t\"Type\": \"EXECUTION\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Path_01_CurrProg\",\n\t\"Category\": 1,\n\t\"Name\": \"Programma corrente\",\n\t\"Type\": \"PROGRAM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Path_01_CurrProg_RowNum\",\n\t\"Category\": 1,\n\t\"Name\": \"Riga attuale\",\n\t\"Type\": \"LINE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Path_01_FeedRate\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm/min] Feedrate\",\n\t\"Type\": \"PATH_FEEDRATE\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"MILLIMETER/SECOND\"\n}, {\n\t\"uuid\": \"Path_01_FeedOverr\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] WORK Override\",\n\t\"Type\": \"PATH_FEEDRATE\",\n\t\"SubType\": \"OVERRIDE\",\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"Path_01_RapidOverr\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] RAPID Override\",\n\t\"Type\": \"PATH_FEEDRATE\",\n\t\"SubType\": \"OVERRIDE\",\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"Path_01_PosActX\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm] UNITA' OPERATRICE: Posizione X\",\n\t\"Type\": \"PATH_POSITION\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"MILLIMETER\"\n}, {\n\t\"uuid\": \"Path_01_PosActY\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm] UNITA' OPERATRICE: Posizione Y\",\n\t\"Type\": \"PATH_POSITION\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"MILLIMETER\"\n}, {\n\t\"uuid\": \"Path_01_PosActZ\",\n\t\"Category\": 2,\n\t\"Name\": \"[mm] UNITA' OPERATRICE: Posizione Z\",\n\t\"Type\": \"PATH_POSITION\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"MILLIMETER\"\n}, {\n\t\"uuid\": \"Path_01_PosActI\",\n\t\"Category\": 2,\n\t\"Name\": \"[°] UNITA' OPERATRICE: Angolo I\",\n\t\"Type\": \"ANGLE\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"DEGREE\"\n}, {\n\t\"uuid\": \"Path_01_PosActJ\",\n\t\"Category\": 2,\n\t\"Name\": \"[°] UNITA' OPERATRICE: Angolo J\",\n\t\"Type\": \"ANGLE\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"DEGREE\"\n}, {\n\t\"uuid\": \"Path_01_PosActK\",\n\t\"Category\": 2,\n\t\"Name\": \"[°] UNITA' OPERATRICE: Angolo K\",\n\t\"Type\": \"ANGLE\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"DEGREE\"\n}, {\n\t\"uuid\": \"Path_01_AlarmCNC\",\n\t\"Category\": 0,\n\t\"Name\": null,\n\t\"Type\": \"SYSTEM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Path_01_AlarmPLC\",\n\t\"Category\": 0,\n\t\"Name\": null,\n\t\"Type\": \"LOGIC_PROGRAM\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"UnOp_01_Type\",\n\t\"Category\": 2,\n\t\"Name\": \"Tipologia testa\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"UnOp_01_Speed\",\n\t\"Category\": 2,\n\t\"Name\": \"[RPM] SPEED Attuale\",\n\t\"Type\": \"PATH_FEEDRATE\",\n\t\"SubType\": \"ACTUAL\",\n\t\"Units\": \"MILLIMETER/SECOND\"\n}, {\n\t\"uuid\": \"UnOp_01_SpeedOverr\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] SPEED Override\",\n\t\"Type\": \"PATH_FEEDRATE\",\n\t\"SubType\": \"OVERRIDE\",\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"UnOp_01_ToolId\",\n\t\"Category\": 1,\n\t\"Name\": \"ID Utensile in mandrino\",\n\t\"Type\": \"TOOL_ASSET_ID\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"UnOp_01_NumCU\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] Cambi Utensile effettuati\",\n\t\"Type\": \"COUNT\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"UnOp_01_Status\",\n\t\"Category\": 1,\n\t\"Name\": \"Stato\",\n\t\"Type\": \"ACTUATOR_STATE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"UnOp_01_VitaRes\",\n\t\"Category\": 1,\n\t\"Name\": \"Vita residua utensile in mandrino\",\n\t\"Type\": \"COUNT\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"UnOp_01_VitaResType\",\n\t\"Category\": 1,\n\t\"Name\": \"Tipo vita residua utensile in mandrino\",\n\t\"Type\": \"MESSAGE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"UnOp_01_Load\",\n\t\"Category\": 2,\n\t\"Name\": \"[%] Carico\",\n\t\"Type\": \"LOAD\",\n\t\"SubType\": null,\n\t\"Units\": \"PERCENT\"\n}, {\n\t\"uuid\": \"UnOp_01_AccTime\",\n\t\"Category\": 2,\n\t\"Name\": \"[krev] Rivoluzioni\",\n\t\"Type\": \"COUNT\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"VacPump_01_Status\",\n\t\"Category\": 1,\n\t\"Name\": \"Stato\",\n\t\"Type\": \"ACTUATOR_STATE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"VacPump_01_WrkTime\",\n\t\"Category\": 2,\n\t\"Name\": \"[s] Tempo utilizzo\",\n\t\"Type\": \"ACCUMULATED_TIME\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"VacPump_02_Status\",\n\t\"Category\": 1,\n\t\"Name\": \"Stato\",\n\t\"Type\": \"ACTUATOR_STATE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"VacPump_02_WrkTime\",\n\t\"Category\": 2,\n\t\"Name\": \"[s] Tempo utilizzo\",\n\t\"Type\": \"ACCUMULATED_TIME\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"VacAct_01_Count\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] Commutazioni\",\n\t\"Type\": \"COUNT\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"VacAct_02_Count\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] Commutazioni\",\n\t\"Type\": \"COUNT\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"Cooler_01_Status\",\n\t\"Category\": 1,\n\t\"Name\": \"Stato\",\n\t\"Type\": \"ACTUATOR_STATE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Cooler_02_Status\",\n\t\"Category\": 1,\n\t\"Name\": \"Stato\",\n\t\"Type\": \"ACTUATOR_STATE\",\n\t\"SubType\": null,\n\t\"Units\": null\n}, {\n\t\"uuid\": \"Lubro_01_Num\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] Attivazioni\",\n\t\"Type\": \"COUNT\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"Lubro_02_Num\",\n\t\"Category\": 1,\n\t\"Name\": \"[#] Attivazioni\",\n\t\"Type\": \"COUNT\",\n\t\"SubType\": null,\n\t\"Units\": \"COUNT\"\n}, {\n\t\"uuid\": \"Press_01_Value\",\n\t\"Category\": 2,\n\t\"Name\": \"[Pa] Pressione 1\",\n\t\"Type\": \"PRESSURE\",\n\t\"SubType\": null,\n\t\"Units\": \"PASCAL\"\n}]"},"parameters":[],"headers":[{"id":"pair_d9894ec846994bcda341092cd0263f08","name":"Content-Type","value":"application/json"}],"authentication":{},"metaSortKey":-1572877837397.75,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"fld_d8d2ad76cbd44eda870135968c48db24","parentId":"wrk_6eaf0a20123c480295db476860d8f716","modified":1574522582759,"created":1574522566792,"name":"MP-IO-MTC","description":"","environment":{},"environmentPropertyOrder":null,"metaSortKey":-1573051967979.5,"_type":"request_group"},{"_id":"req_18bb232ec88f45688acf5a7ffa5451da","parentId":"fld_2fceb1e93d704ea39b9dbaf6f9173ca9","modified":1572703715107,"created":1572688410657,"url":"{{ BASE_URL }}/IOB/enabled/SIMUL_01","name":"Test IOB enabled","description":"","method":"GET","body":{},"parameters":[],"headers":[],"authentication":{},"metaSortKey":-1572688535076,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"fld_2fceb1e93d704ea39b9dbaf6f9173ca9","parentId":"wrk_6eaf0a20123c480295db476860d8f716","modified":1572703706816,"created":1572703706816,"name":"MP-IO","description":"","environment":{},"environmentPropertyOrder":null,"metaSortKey":-1572703706816,"_type":"request_group"},{"_id":"req_9b12b7b086c94eb3bf19ef19c28088b2","parentId":"fld_2fceb1e93d704ea39b9dbaf6f9173ca9","modified":1572703717867,"created":1572688376619,"url":"{{ BASE_URL }}/IOB","name":"Test MP-IO alive","description":"","method":"GET","body":{},"parameters":[],"headers":[],"authentication":{},"metaSortKey":-1572688535051,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_253c3deea8bf47969dd45dd6a529a2b0","parentId":"fld_2fceb1e93d704ea39b9dbaf6f9173ca9","modified":1657195649211,"created":1572688535026,"url":"{{ BASE_URL }}/IOB/flogJson/SIMUL_01","name":"Send FLog Json","description":"","method":"POST","body":{"mimeType":"application/json","text":"{\n\t\"fluxData\":\n\t[\n\t\t{\n\t\t\"flux\": \"test\",\n\t\t\"valore\": \"valore_10\",\n\t\t\"dtEve\": \"2019-11-02 11:01:00\",\n\t\t\"dtCurr\": \"2019-11-02 11:02:00\",\n\t\t\"cnt\": 10\n\t\t},\n\t\t{\n\t\t\t\"flux\": \"test\",\n\t\t\t\"valore\": \"valore_11\",\n\t\t\t\"dtEve\": \"2019-11-02 11:01:01\",\n\t\t\t\"dtCurr\": \"2019-11-02 11:02:00\",\n\t\t\t\"cnt\": 11\n\t\t},\n\t\t{\n\t\t\"flux\": \"test\",\n\t\t\"valore\": \"valore_12\",\n\t\t\"dtEve\": \"2019-11-02 11:01:02\",\n\t\t\"dtCurr\": \"2019-11-02 11:02:00\",\n\t\t\"cnt\": 12\n\t\t},\n\t\t{\n\t\t\t\"flux\": \"test\",\n\t\t\t\"valore\": \"valore_13\",\n\t\t\t\"dtEve\": \"2019-11-02 11:02:03\",\n\t\t\"dtCurr\": \"2019-11-02 11:02:00\",\n\t\t\t\"cnt\": 13\n\t\t},\n\t\t{\n\t\t\"flux\": \"test\",\n\t\t\"valore\": \"valore_14\",\n\t\t\"dtEve\": \"2019-11-02 11:02:04\",\n\t\t\"dtCurr\": \"2019-11-02 11:02:00\",\n\t\t\"cnt\": 14\n\t\t},\n\t\t{\n\t\t\t\"flux\": \"test\",\n\t\t\t\"valore\": \"valore_15\",\n\t\t\t\"dtEve\": \"2019-11-02 11:02:05\",\n\t\t\t\"dtCurr\": \"2019-11-02 11:02:00\",\n\t\t\t\"cnt\": 15\n\t\t},\n\t\t{\n\t\t\"flux\": \"test\",\n\t\t\"valore\": \"valore_16\",\n\t\t\"dtEve\": \"2019-11-02 11:01:06\",\n\t\t\"dtCurr\": \"2019-11-02 11:02:00\",\n\t\t\"cnt\": 16\n\t\t},\n\t\t{\n\t\t\t\"flux\": \"test\",\n\t\t\t\"valore\": \"valore_17\",\n\t\t\t\"dtEve\": \"2019-11-02 11:01:07\",\n\t\t\t\"dtCurr\": \"2019-11-02 11:02:00\",\n\t\t\t\"cnt\": 17\n\t\t},\n\t\t{\n\t\t\"flux\": \"test\",\n\t\t\"valore\": \"valore_18\",\n\t\t\"dtEve\": \"2019-11-02 11:01:08\",\n\t\t\"dtCurr\": \"2019-11-02 11:02:00\",\n\t\t\"cnt\": 18\n\t\t},\n\t\t{\n\t\t\t\"flux\": \"test\",\n\t\t\t\"valore\": \"valore_19\",\n\t\t\t\"dtEve\": \"2019-11-02 11:01:09\",\n\t\t \"dtCurr\": \"2019-11-02 11:02:00\",\n\t\t\t\"cnt\": 19\n\t\t},\n\t\t{\n\t\t\t\"flux\": \"test\",\n\t\t\t\"valore\": \"valore_20\",\n\t\t\t\"dtEve\": \"2019-11-02 11:01:10\",\n\t\t \"dtCurr\": \"2019-11-02 11:02:00\",\n\t\t\t\"cnt\": 20\n\t\t}\n\t]\n}\n"},"parameters":[],"headers":[{"id":"pair_d9894ec846994bcda341092cd0263f08","name":"Content-Type","value":"application/json"}],"authentication":{},"metaSortKey":-1572688535026,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_3a849f55973d43d8bb7308b52e487a20","parentId":"fld_2fceb1e93d704ea39b9dbaf6f9173ca9","modified":1653330258927,"created":1572703720426,"url":"{{ BASE_URL }}/IOB/liveJson/SIMUL_01","name":"Send LiveIOB Json","description":"","method":"POST","body":{"mimeType":"application/json","text":"{\n\t\"dataList\":\n\t[\n\t\t{\n\t\t\"key\": \"temp_01\",\n\t\t\"value\": \"20.8\"\n\t\t},\n\t\t{\n\t\t\"key\": \"temp_2\",\n\t\t\"value\": \"21.8\"\n\t\t},\n\t\t{\n\t\t\"key\": \"speed_01\",\n\t\t\"value\": \"5000\"\n\t\t},\n\t\t{\n\t\t\"key\": \"speed_02\",\n\t\t\"value\": \"248\"\n\t\t},\n\t\t{\n\t\t\"key\": \"param_01\",\n\t\t\"value\": \"120.8\"\n\t\t},\n\t\t{\n\t\t\"key\": \"param_02\",\n\t\t\"value\": \"170.8\"\n\t\t}\n\t]\n}\n"},"parameters":[],"headers":[{"id":"pair_d9894ec846994bcda341092cd0263f08","name":"Content-Type","value":"application/json"}],"authentication":{},"metaSortKey":-1572688534976,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_8b9bfe3a5fe24f1aa19da4d9cbf24d08","parentId":"fld_2fceb1e93d704ea39b9dbaf6f9173ca9","modified":1663577150271,"created":1646069719097,"url":"{{ BASE_URL }}/IOB/ulogJson/SIMUL_01","name":"Send ULog Json","description":"","method":"POST","body":{"mimeType":"application/json","text":"{\n\t\"fluxData\":\n\t[\n\t\t{\n\t\t\t\"flux\": \"DI\",\n\t\t\t\"valore\": \"User Login - Steamware User\",\n\t\t\t\"dtEve\": \"2022-02-28 11:00:30\",\n\t\t\t\"dtCurr\": \"2022-02-28 11:02:00\",\n\t\t\t\"cnt\": 9,\n\t\t\t\"matrOpr\": 1,\n\t\t\t\"label\": \"UserLogin\"\n\t\t},\n\t\t{\n\t\t\t\"flux\": \"DI\",\n\t\t\t\"valore\": \"Dichiarazione di prova\",\n\t\t\t\"dtEve\": \"2022-02-28 11:01:00\",\n\t\t\t\"dtCurr\": \"2022-02-28 11:02:00\",\n\t\t\t\"cnt\": 10,\n\t\t\t\"matrOpr\": 1,\n\t\t\t\"label\": \"Note\"\n\t\t},\n\t\t{\n\t\t\t\"flux\": \"RC\",\n\t\t\t\"valore\": \"\",\n\t\t\t\"dtEve\": \"2022-02-28 11:01:01\",\n\t\t\t\"dtCurr\": \"2022-02-28 11:02:00\",\n\t\t\t\"cnt\": 11,\n\t\t\t\"matrOpr\": 1,\n\t\t\t\"valNum\": 1\n\t\t},\n\t\t{\n\t\t\t\"flux\": \"RC\",\n\t\t\t\"valore\": \"SIM Controllo fallito\",\n\t\t\t\"dtEve\": \"2022-02-28 11:01:31\",\n\t\t\t\"dtCurr\": \"2022-02-28 11:02:00\",\n\t\t\t\"cnt\": 12,\n\t\t\t\"matrOpr\": 1,\n\t\t\t\"valNum\": 0\n\t\t},\n\t\t{\n\t\t\t\"flux\": \"RS\",\n\t\t\t\"valore\": \"SIM Scarto 01\",\n\t\t\t\"dtEve\": \"2022-02-28 11:01:05\",\n\t\t\t\"dtCurr\": \"2022-02-28 11:02:00\",\n\t\t\t\"cnt\": 13,\n\t\t\t\"matrOpr\": 1,\n\t\t\t\"label\": \"01\",\n\t\t\t\"valNum\": 1\n\t\t},\n\t\t{\n\t\t\t\"flux\": \"RS\",\n\t\t\t\"valore\": \"SIM Scarto 02\",\n\t\t\t\"dtEve\": \"2022-02-28 11:01:15\",\n\t\t\t\"dtCurr\": \"2022-02-28 11:02:00\",\n\t\t\t\"cnt\": 15,\n\t\t\t\"matrOpr\": 1,\n\t\t\t\"label\": \"02\",\n\t\t\t\"valNum\": 2\n\t\t}\n\t]\n}"},"parameters":[],"headers":[{"id":"pair_d9894ec846994bcda341092cd0263f08","name":"Content-Type","value":"application/json"}],"authentication":{},"metaSortKey":-1572688534926,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_5e199f4f47f5480c8a65836ff3278455","parentId":"fld_2fceb1e93d704ea39b9dbaf6f9173ca9","modified":1663577125168,"created":1653312485596,"url":"{{ BASE_URL }}/IOB/rawTransfJson/GIACO_ICOEL","name":"Send RawTransfJson","description":"","method":"POST","body":{"mimeType":"application/json","text":"[\n\t{\n\t\"mesType\": \"IcoelBatch\", \n\t\"mesContent\": {\n\t\t\"1\": {\n\t\t\t\"AvoidLayoutChange\": true,\n\t\t\t\"AvoidSavingOldLayouts\": false,\n\t\t\t\"Comments\": [\"\", \"\", \"\"],\n\t\t\t\"EndTime\": \"0001-01-01T00:00:00\",\n\t\t\t\"GrowerCode\": \"CSE\",\n\t\t\t\"Id\": 21,\n\t\t\t\"IsFinalized\": false,\n\t\t\t\"LaneGroups\": [{\n\t\t\t\t\"Lanes\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24],\n\t\t\t\t\"Name\": \"Sinistra\"\n\t\t\t}, {\n\t\t\t\t\"Lanes\": [],\n\t\t\t\t\"Name\": \"Destra\"\n\t\t\t}],\n\t\t\t\"LayoutId\": \"aba2ac90-d835-46ee-bc3d-2cfbad76287d\",\n\t\t\t\"LayoutName\": \"New Layout\",\n\t\t\t\"Name\": \"Batch 78\",\n\t\t\t\"OverrideLayoutConflicts\": true,\n\t\t\t\"SampleName\": \"\",\n\t\t\t\"SizingProfileName\": \"\",\n\t\t\t\"StartTime\": \"2022-05-21T12:40:21.6522013+02:00\",\n\t\t\t\"TotallingVariety\": \"Default\",\n\t\t\t\"TotallingVarietyCode\": \"\",\n\t\t\t\"VarietyId\": \"48529fd1-742a-432f-814d-a54c8030a80c\",\n\t\t\t\"VarietyName\": \"Bigarreaux\",\n\t\t\t\"VisionMap\": 3\n\t\t},\n\t\t\"2\": {\n\t\t\t\"AvoidLayoutChange\": true,\n\t\t\t\"AvoidSavingOldLayouts\": false,\n\t\t\t\"Comments\": [\"\", \"\", \"\"],\n\t\t\t\"EndTime\": \"0001-01-01T00:00:00\",\n\t\t\t\"GrowerCode\": \"CSE\",\n\t\t\t\"Id\": 21,\n\t\t\t\"IsFinalized\": false,\n\t\t\t\"LaneGroups\": [{\n\t\t\t\t\"Lanes\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24],\n\t\t\t\t\"Name\": \"Sinistra\"\n\t\t\t}, {\n\t\t\t\t\"Lanes\": [],\n\t\t\t\t\"Name\": \"Destra\"\n\t\t\t}],\n\t\t\t\"LayoutId\": \"aba2ac90-d835-46ee-bc3d-2cfbad76287d\",\n\t\t\t\"LayoutName\": \"New Layout\",\n\t\t\t\"Name\": \"Batch 78\",\n\t\t\t\"OverrideLayoutConflicts\": true,\n\t\t\t\"SampleName\": \"\",\n\t\t\t\"SizingProfileName\": \"\",\n\t\t\t\"StartTime\": \"2022-05-21T12:40:21.6522013+02:00\",\n\t\t\t\"TotallingVariety\": \"Default\",\n\t\t\t\"TotallingVarietyCode\": \"\",\n\t\t\t\"VarietyId\": \"48529fd1-742a-432f-814d-a54c8030a80c\",\n\t\t\t\"VarietyName\": \"Bigarreaux\",\n\t\t\t\"VisionMap\": 3\n\t\t}\n\t}\n}\n]"},"parameters":[],"headers":[{"id":"pair_d9894ec846994bcda341092cd0263f08","name":"Content-Type","value":"application/json"}],"authentication":{},"metaSortKey":-1570661841168.5,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_c20f1ba494aa46c6b8ea7a7d9fad7d05","parentId":"fld_2fceb1e93d704ea39b9dbaf6f9173ca9","modified":1657787702082,"created":1653328411117,"url":"{{ BASE_URL }}/IOB/rawTransfJson/GIACO_ICOEL","name":"Send RawTransfJson 2","description":"","method":"POST","body":{"mimeType":"application/json","text":"[\n\t{\n\t\"dataRif\": \"2022-05-23T19:51:48.9674938+02:00\",\n\t\"mesContent\": {\n\t\t\"1\": {\n\t\t\t\"AvoidLayoutChange\": true,\n\t\t\t\"AvoidSavingOldLayouts\": false,\n\t\t\t\"Comments\": [\"\", \"\", \"\"],\n\t\t\t\"EndTime\": \"0001-01-01T00:00:00\",\n\t\t\t\"GrowerCode\": \"CSE\",\n\t\t\t\"Id\": 28,\n\t\t\t\"IsFinalized\": false,\n\t\t\t\"LaneGroups\": [{\n\t\t\t\t\"Lanes\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24],\n\t\t\t\t\"Name\": \"Sinistra\"\n\t\t\t}, {\n\t\t\t\t\"Lanes\": [],\n\t\t\t\t\"Name\": \"Destra\"\n\t\t\t}],\n\t\t\t\"LayoutId\": \"aba2ac90-d835-46ee-bc3d-2cfbad76287d\",\n\t\t\t\"LayoutName\": \"New Layout\",\n\t\t\t\"Name\": \"Lotto 85\",\n\t\t\t\"OverrideLayoutConflicts\": true,\n\t\t\t\"SampleName\": \"\",\n\t\t\t\"SizingProfileName\": \"\",\n\t\t\t\"StartTime\": \"2022-05-23T16:52:13.2473589+02:00\",\n\t\t\t\"TotallingVariety\": \"Default\",\n\t\t\t\"TotallingVarietyCode\": \"\",\n\t\t\t\"VarietyId\": \"48529fd1-742a-432f-814d-a54c8030a80c\",\n\t\t\t\"VarietyName\": \"Bigarreaux\",\n\t\t\t\"VisionMap\": 3\n\t\t},\n\t\t\"2\": {\n\t\t\t\"AvoidLayoutChange\": true,\n\t\t\t\"AvoidSavingOldLayouts\": false,\n\t\t\t\"Comments\": [\"\", \"\", \"\"],\n\t\t\t\"EndTime\": \"0001-01-01T00:00:00\",\n\t\t\t\"GrowerCode\": \"CSE\",\n\t\t\t\"Id\": 28,\n\t\t\t\"IsFinalized\": false,\n\t\t\t\"LaneGroups\": [{\n\t\t\t\t\"Lanes\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24],\n\t\t\t\t\"Name\": \"Sinistra\"\n\t\t\t}, {\n\t\t\t\t\"Lanes\": [],\n\t\t\t\t\"Name\": \"Destra\"\n\t\t\t}],\n\t\t\t\"LayoutId\": \"aba2ac90-d835-46ee-bc3d-2cfbad76287d\",\n\t\t\t\"LayoutName\": \"New Layout\",\n\t\t\t\"Name\": \"Lotto 85\",\n\t\t\t\"OverrideLayoutConflicts\": true,\n\t\t\t\"SampleName\": \"\",\n\t\t\t\"SizingProfileName\": \"\",\n\t\t\t\"StartTime\": \"2022-05-23T16:52:13.2473589+02:00\",\n\t\t\t\"TotallingVariety\": \"Default\",\n\t\t\t\"TotallingVarietyCode\": \"\",\n\t\t\t\"VarietyId\": \"48529fd1-742a-432f-814d-a54c8030a80c\",\n\t\t\t\"VarietyName\": \"Bigarreaux\",\n\t\t\t\"VisionMap\": 3\n\t\t}\n\t},\n\t\"mesType\": \"IcoelBatch\"\n\t},\n\t{\n\t\"dataRif\": \"2022-05-23T19:51:48.9674938+02:00\",\n\t\"mesContent\": {\n\t\t\"1\": {\n\t\t\t\"AvoidLayoutChange\": true,\n\t\t\t\"AvoidSavingOldLayouts\": false,\n\t\t\t\"Comments\": [\"\", \"\", \"\"],\n\t\t\t\"EndTime\": \"0001-01-01T00:00:00\",\n\t\t\t\"GrowerCode\": \"CSE\",\n\t\t\t\"Id\": 28,\n\t\t\t\"IsFinalized\": false,\n\t\t\t\"LaneGroups\": [{\n\t\t\t\t\"Lanes\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24],\n\t\t\t\t\"Name\": \"Sinistra\"\n\t\t\t}, {\n\t\t\t\t\"Lanes\": [],\n\t\t\t\t\"Name\": \"Destra\"\n\t\t\t}],\n\t\t\t\"LayoutId\": \"aba2ac90-d835-46ee-bc3d-2cfbad76287d\",\n\t\t\t\"LayoutName\": \"New Layout\",\n\t\t\t\"Name\": \"Lotto 85\",\n\t\t\t\"OverrideLayoutConflicts\": true,\n\t\t\t\"SampleName\": \"\",\n\t\t\t\"SizingProfileName\": \"\",\n\t\t\t\"StartTime\": \"2022-05-23T16:52:13.2473589+02:00\",\n\t\t\t\"TotallingVariety\": \"Default\",\n\t\t\t\"TotallingVarietyCode\": \"\",\n\t\t\t\"VarietyId\": \"48529fd1-742a-432f-814d-a54c8030a80c\",\n\t\t\t\"VarietyName\": \"Bigarreaux\",\n\t\t\t\"VisionMap\": 3\n\t\t},\n\t\t\"2\": {\n\t\t\t\"AvoidLayoutChange\": true,\n\t\t\t\"AvoidSavingOldLayouts\": false,\n\t\t\t\"Comments\": [\"\", \"\", \"\"],\n\t\t\t\"EndTime\": \"0001-01-01T00:00:00\",\n\t\t\t\"GrowerCode\": \"CSE\",\n\t\t\t\"Id\": 28,\n\t\t\t\"IsFinalized\": false,\n\t\t\t\"LaneGroups\": [{\n\t\t\t\t\"Lanes\": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24],\n\t\t\t\t\"Name\": \"Sinistra\"\n\t\t\t}, {\n\t\t\t\t\"Lanes\": [],\n\t\t\t\t\"Name\": \"Destra\"\n\t\t\t}],\n\t\t\t\"LayoutId\": \"aba2ac90-d835-46ee-bc3d-2cfbad76287d\",\n\t\t\t\"LayoutName\": \"New Layout\",\n\t\t\t\"Name\": \"Lotto 85\",\n\t\t\t\"OverrideLayoutConflicts\": true,\n\t\t\t\"SampleName\": \"\",\n\t\t\t\"SizingProfileName\": \"\",\n\t\t\t\"StartTime\": \"2022-05-23T16:52:13.2473589+02:00\",\n\t\t\t\"TotallingVariety\": \"Default\",\n\t\t\t\"TotallingVarietyCode\": \"\",\n\t\t\t\"VarietyId\": \"48529fd1-742a-432f-814d-a54c8030a80c\",\n\t\t\t\"VarietyName\": \"Bigarreaux\",\n\t\t\t\"VisionMap\": 3\n\t\t}\n\t},\n\t\"mesType\": \"IcoelBatch\"\n\t}\n]"},"parameters":[],"headers":[{"id":"pair_d9894ec846994bcda341092cd0263f08","name":"Content-Type","value":"application/json"}],"authentication":{},"metaSortKey":-1569648494289.75,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_196d4d162e3c4b0d8f09b64630c68354","parentId":"fld_2fceb1e93d704ea39b9dbaf6f9173ca9","modified":1657787698778,"created":1657198918612,"url":"{{ BASE_URL }}/IOB/rawTransfJson/GIACO_ICOEL","name":"Send RawTransfJson 3","description":"","method":"POST","body":{"mimeType":"application/json","text":"[\n\t{\n\t\"dataRif\": \"2022-05-23T19:51:48.9674938+02:00\",\n\t\"mesContent\": {\n\t\t\"test\":\"data\"\n\t},\n\t\"mesType\": \"IcoelBatch\"\n\t}\n]"},"parameters":[],"headers":[{"id":"pair_d9894ec846994bcda341092cd0263f08","name":"Content-Type","value":"application/json"}],"authentication":{},"metaSortKey":-1569141820850.375,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_dd8a225868c74c75a0f04e9fafc6504f","parentId":"fld_2fceb1e93d704ea39b9dbaf6f9173ca9","modified":1663577208603,"created":1663577161793,"url":"{{ BASE_URL }}/IOB/takeFlogSnapshot/SIMUL_01","name":"Take FL Snapshot","description":"","method":"POST","body":{},"parameters":[],"headers":[],"authentication":{},"metaSortKey":-1569141820800.375,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"env_8740e20e8e8bb2003e5230773ef23271182ab751","parentId":"wrk_6eaf0a20123c480295db476860d8f716","modified":1572703437306,"created":1572685869222,"name":"Base Environment","data":{},"dataPropertyOrder":{},"color":null,"isPrivate":false,"metaSortKey":1572685869222,"_type":"environment"},{"_id":"jar_8740e20e8e8bb2003e5230773ef23271182ab751","parentId":"wrk_6eaf0a20123c480295db476860d8f716","modified":1572685869231,"created":1572685869231,"name":"Default Jar","cookies":[],"_type":"cookie_jar"},{"_id":"spc_e6fdb813e3494001a0a09f18637637be","parentId":"wrk_6eaf0a20123c480295db476860d8f716","modified":1627050532237,"created":1627050532237,"fileName":"MP-IO","contents":"","contentType":"yaml","_type":"api_spec"},{"_id":"env_c05a8868c4934cdfa10f3a5cb0ebcb5d","parentId":"env_8740e20e8e8bb2003e5230773ef23271182ab751","modified":1657195721258,"created":1572703420555,"name":"DEV","data":{"BASE_URL":"http://localhost:20967/"},"dataPropertyOrder":{"&":["BASE_URL"]},"color":null,"isPrivate":false,"metaSortKey":1572703420555,"_type":"environment"},{"_id":"env_e66bedb2f2ce4168aa67be58ee2e3c04","parentId":"env_8740e20e8e8bb2003e5230773ef23271182ab751","modified":1657195718320,"created":1573471806261,"name":"IIS01","data":{"BASE_URL":"http://iis01.egalware.com/MP/IO/"},"dataPropertyOrder":{"&":["BASE_URL"]},"color":null,"isPrivate":false,"metaSortKey":1573471806261,"_type":"environment"},{"_id":"env_1c2b1769eca04bb5800dd430d9548b42","parentId":"env_8740e20e8e8bb2003e5230773ef23271182ab751","modified":1657195719443,"created":1573471844550,"name":"IIS02","data":{"BASE_URL":"http://iis02.egalware.com/MP/IO/"},"dataPropertyOrder":{"&":["BASE_URL"]},"color":null,"isPrivate":false,"metaSortKey":1573471844550,"_type":"environment"},{"_id":"env_24a7d5ab5ede49b3ba6ca2fae1964cee","parentId":"env_8740e20e8e8bb2003e5230773ef23271182ab751","modified":1657195720083,"created":1657195687758,"name":"IIS03","data":{"BASE_URL":"http://iis03.egalware.com/MP/IO/"},"dataPropertyOrder":{"&":["BASE_URL"]},"color":null,"isPrivate":false,"metaSortKey":1595884971128.5,"_type":"environment"}]} \ No newline at end of file