refresh con gestione edit anagrafica macchine (matricole)
This commit is contained in:
Generated
+306
-120
@@ -32,8 +32,6 @@ namespace CMS_SC_Data {
|
||||
|
||||
private global::System.Data.DataRelation relationFK_ElencoSchedeMacchina_ElencoMacchineCN;
|
||||
|
||||
private global::System.Data.DataRelation relationElencoFamMacc_ElencoMacchineCN;
|
||||
|
||||
private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -247,7 +245,6 @@ namespace CMS_SC_Data {
|
||||
}
|
||||
}
|
||||
this.relationFK_ElencoSchedeMacchina_ElencoMacchineCN = this.Relations["FK_ElencoSchedeMacchina_ElencoMacchineCN"];
|
||||
this.relationElencoFamMacc_ElencoMacchineCN = this.Relations["ElencoFamMacc_ElencoMacchineCN"];
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -268,10 +265,6 @@ namespace CMS_SC_Data {
|
||||
this.tableElencoMacchineCN.MatricolaColumn}, new global::System.Data.DataColumn[] {
|
||||
this.tableElencoSchedeMacchina.MatricolaColumn}, false);
|
||||
this.Relations.Add(this.relationFK_ElencoSchedeMacchina_ElencoMacchineCN);
|
||||
this.relationElencoFamMacc_ElencoMacchineCN = new global::System.Data.DataRelation("ElencoFamMacc_ElencoMacchineCN", new global::System.Data.DataColumn[] {
|
||||
this.tableElencoFamMacc.CodFamColumn}, new global::System.Data.DataColumn[] {
|
||||
this.tableElencoMacchineCN.CodFamColumn}, false);
|
||||
this.Relations.Add(this.relationElencoFamMacc_ElencoMacchineCN);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -642,7 +635,7 @@ namespace CMS_SC_Data {
|
||||
|
||||
private global::System.Data.DataColumn columnDescrizione;
|
||||
|
||||
private global::System.Data.DataColumn columnFase;
|
||||
private global::System.Data.DataColumn columnCliente;
|
||||
|
||||
private global::System.Data.DataColumn columnCodFam;
|
||||
|
||||
@@ -697,9 +690,9 @@ namespace CMS_SC_Data {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public global::System.Data.DataColumn FaseColumn {
|
||||
public global::System.Data.DataColumn ClienteColumn {
|
||||
get {
|
||||
return this.columnFase;
|
||||
return this.columnCliente;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -748,16 +741,13 @@ namespace CMS_SC_Data {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public ElencoMacchineCNRow AddElencoMacchineCNRow(int Matricola, string Descrizione, int Fase, ElencoFamMaccRow parentElencoFamMaccRowByElencoFamMacc_ElencoMacchineCN) {
|
||||
public ElencoMacchineCNRow AddElencoMacchineCNRow(string Matricola, string Descrizione, string Cliente, string CodFam) {
|
||||
ElencoMacchineCNRow rowElencoMacchineCNRow = ((ElencoMacchineCNRow)(this.NewRow()));
|
||||
object[] columnValuesArray = new object[] {
|
||||
Matricola,
|
||||
Descrizione,
|
||||
Fase,
|
||||
null};
|
||||
if ((parentElencoFamMaccRowByElencoFamMacc_ElencoMacchineCN != null)) {
|
||||
columnValuesArray[3] = parentElencoFamMaccRowByElencoFamMacc_ElencoMacchineCN[0];
|
||||
}
|
||||
Cliente,
|
||||
CodFam};
|
||||
rowElencoMacchineCNRow.ItemArray = columnValuesArray;
|
||||
this.Rows.Add(rowElencoMacchineCNRow);
|
||||
return rowElencoMacchineCNRow;
|
||||
@@ -765,7 +755,7 @@ namespace CMS_SC_Data {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public ElencoMacchineCNRow FindByMatricola(int Matricola) {
|
||||
public ElencoMacchineCNRow FindByMatricola(string Matricola) {
|
||||
return ((ElencoMacchineCNRow)(this.Rows.Find(new object[] {
|
||||
Matricola})));
|
||||
}
|
||||
@@ -789,28 +779,30 @@ namespace CMS_SC_Data {
|
||||
internal void InitVars() {
|
||||
this.columnMatricola = base.Columns["Matricola"];
|
||||
this.columnDescrizione = base.Columns["Descrizione"];
|
||||
this.columnFase = base.Columns["Fase"];
|
||||
this.columnCliente = base.Columns["Cliente"];
|
||||
this.columnCodFam = base.Columns["CodFam"];
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
private void InitClass() {
|
||||
this.columnMatricola = new global::System.Data.DataColumn("Matricola", typeof(int), null, global::System.Data.MappingType.Element);
|
||||
this.columnMatricola = new global::System.Data.DataColumn("Matricola", typeof(string), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnMatricola);
|
||||
this.columnDescrizione = new global::System.Data.DataColumn("Descrizione", typeof(string), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnDescrizione);
|
||||
this.columnFase = new global::System.Data.DataColumn("Fase", typeof(int), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnFase);
|
||||
this.columnCliente = new global::System.Data.DataColumn("Cliente", typeof(string), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnCliente);
|
||||
this.columnCodFam = new global::System.Data.DataColumn("CodFam", typeof(string), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnCodFam);
|
||||
this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
|
||||
this.columnMatricola}, true));
|
||||
this.columnMatricola.AllowDBNull = false;
|
||||
this.columnMatricola.Unique = true;
|
||||
this.columnMatricola.MaxLength = 50;
|
||||
this.columnDescrizione.AllowDBNull = false;
|
||||
this.columnDescrizione.MaxLength = 50;
|
||||
this.columnFase.AllowDBNull = false;
|
||||
this.columnCliente.AllowDBNull = false;
|
||||
this.columnCliente.MaxLength = 50;
|
||||
this.columnCodFam.AllowDBNull = false;
|
||||
this.columnCodFam.MaxLength = 50;
|
||||
}
|
||||
@@ -1106,7 +1098,7 @@ namespace CMS_SC_Data {
|
||||
private void InitClass() {
|
||||
this.columnidxESM = new global::System.Data.DataColumn("idxESM", typeof(int), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnidxESM);
|
||||
this.columnMatricola = new global::System.Data.DataColumn("Matricola", typeof(int), null, global::System.Data.MappingType.Element);
|
||||
this.columnMatricola = new global::System.Data.DataColumn("Matricola", typeof(string), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnMatricola);
|
||||
this.columnCodScheda = new global::System.Data.DataColumn("CodScheda", typeof(string), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnCodScheda);
|
||||
@@ -1121,6 +1113,7 @@ namespace CMS_SC_Data {
|
||||
this.columnidxESM.ReadOnly = true;
|
||||
this.columnidxESM.Unique = true;
|
||||
this.columnMatricola.AllowDBNull = false;
|
||||
this.columnMatricola.MaxLength = 50;
|
||||
this.columnCodScheda.AllowDBNull = false;
|
||||
this.columnCodScheda.MaxLength = 50;
|
||||
this.columnDescrizione.MaxLength = 10;
|
||||
@@ -1285,17 +1278,6 @@ namespace CMS_SC_Data {
|
||||
this[this.tableElencoFamMacc.DescrFamColumn] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public ElencoMacchineCNRow[] GetElencoMacchineCNRows() {
|
||||
if ((this.Table.ChildRelations["ElencoFamMacc_ElencoMacchineCN"] == null)) {
|
||||
return new ElencoMacchineCNRow[0];
|
||||
}
|
||||
else {
|
||||
return ((ElencoMacchineCNRow[])(base.GetChildRows(this.Table.ChildRelations["ElencoFamMacc_ElencoMacchineCN"])));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -1314,9 +1296,9 @@ namespace CMS_SC_Data {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public int Matricola {
|
||||
public string Matricola {
|
||||
get {
|
||||
return ((int)(this[this.tableElencoMacchineCN.MatricolaColumn]));
|
||||
return ((string)(this[this.tableElencoMacchineCN.MatricolaColumn]));
|
||||
}
|
||||
set {
|
||||
this[this.tableElencoMacchineCN.MatricolaColumn] = value;
|
||||
@@ -1336,12 +1318,12 @@ namespace CMS_SC_Data {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public int Fase {
|
||||
public string Cliente {
|
||||
get {
|
||||
return ((int)(this[this.tableElencoMacchineCN.FaseColumn]));
|
||||
return ((string)(this[this.tableElencoMacchineCN.ClienteColumn]));
|
||||
}
|
||||
set {
|
||||
this[this.tableElencoMacchineCN.FaseColumn] = value;
|
||||
this[this.tableElencoMacchineCN.ClienteColumn] = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1356,17 +1338,6 @@ namespace CMS_SC_Data {
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public ElencoFamMaccRow ElencoFamMaccRow {
|
||||
get {
|
||||
return ((ElencoFamMaccRow)(this.GetParentRow(this.Table.ParentRelations["ElencoFamMacc_ElencoMacchineCN"])));
|
||||
}
|
||||
set {
|
||||
this.SetParentRow(value, this.Table.ParentRelations["ElencoFamMacc_ElencoMacchineCN"]);
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public ElencoSchedeMacchinaRow[] GetElencoSchedeMacchinaRows() {
|
||||
@@ -1406,9 +1377,9 @@ namespace CMS_SC_Data {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public int Matricola {
|
||||
public string Matricola {
|
||||
get {
|
||||
return ((int)(this[this.tableElencoSchedeMacchina.MatricolaColumn]));
|
||||
return ((string)(this[this.tableElencoSchedeMacchina.MatricolaColumn]));
|
||||
}
|
||||
set {
|
||||
this[this.tableElencoSchedeMacchina.MatricolaColumn] = value;
|
||||
@@ -2161,41 +2132,42 @@ namespace CMS_SC_Data.DS_ApplicazioneTableAdapters {
|
||||
tableMapping.DataSetTable = "ElencoMacchineCN";
|
||||
tableMapping.ColumnMappings.Add("Matricola", "Matricola");
|
||||
tableMapping.ColumnMappings.Add("Descrizione", "Descrizione");
|
||||
tableMapping.ColumnMappings.Add("Fase", "Fase");
|
||||
tableMapping.ColumnMappings.Add("Cliente", "Cliente");
|
||||
tableMapping.ColumnMappings.Add("CodFam", "CodFam");
|
||||
this._adapter.TableMappings.Add(tableMapping);
|
||||
this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._adapter.DeleteCommand.Connection = this.Connection;
|
||||
this._adapter.DeleteCommand.CommandText = "DELETE FROM [dbo].[ElencoMacchineCN] WHERE (([Matricola] = @Original_Matricola) A" +
|
||||
"ND ([Descrizione] = @Original_Descrizione) AND ([Fase] = @Original_Fase) AND ([C" +
|
||||
"odFam] = @Original_CodFam))";
|
||||
"ND ([Descrizione] = @Original_Descrizione) AND ([Cliente] = @Original_Cliente) A" +
|
||||
"ND ([CodFam] = @Original_CodFam))";
|
||||
this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Matricola", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Matricola", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Descrizione", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Descrizione", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Fase", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Fase", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Cliente", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Cliente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_CodFam", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodFam", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._adapter.InsertCommand.Connection = this.Connection;
|
||||
this._adapter.InsertCommand.CommandText = "INSERT INTO [dbo].[ElencoMacchineCN] ([Matricola], [Descrizione], [Fase], [CodFam" +
|
||||
"]) VALUES (@Matricola, @Descrizione, @Fase, @CodFam);\r\nSELECT Matricola, Descriz" +
|
||||
"ione, Fase, CodFam FROM ElencoMacchineCN WHERE (Matricola = @Matricola)";
|
||||
this._adapter.InsertCommand.CommandText = "INSERT INTO [dbo].[ElencoMacchineCN] ([Matricola], [Descrizione], [Cliente], [Cod" +
|
||||
"Fam]) VALUES (@Matricola, @Descrizione, @Cliente, @CodFam);\r\nSELECT Matricola, D" +
|
||||
"escrizione, Cliente, CodFam FROM ElencoMacchineCN WHERE (Matricola = @Matricola)" +
|
||||
"";
|
||||
this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Matricola", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Matricola", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Descrizione", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Descrizione", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Fase", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Fase", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Cliente", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Cliente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodFam", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodFam", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._adapter.UpdateCommand.Connection = this.Connection;
|
||||
this._adapter.UpdateCommand.CommandText = @"UPDATE [dbo].[ElencoMacchineCN] SET [Matricola] = @Matricola, [Descrizione] = @Descrizione, [Fase] = @Fase, [CodFam] = @CodFam WHERE (([Matricola] = @Original_Matricola) AND ([Descrizione] = @Original_Descrizione) AND ([Fase] = @Original_Fase) AND ([CodFam] = @Original_CodFam));
|
||||
SELECT Matricola, Descrizione, Fase, CodFam FROM ElencoMacchineCN WHERE (Matricola = @Matricola)";
|
||||
this._adapter.UpdateCommand.CommandText = @"UPDATE [dbo].[ElencoMacchineCN] SET [Matricola] = @Matricola, [Descrizione] = @Descrizione, [Cliente] = @Cliente, [CodFam] = @CodFam WHERE (([Matricola] = @Original_Matricola) AND ([Descrizione] = @Original_Descrizione) AND ([Cliente] = @Original_Cliente) AND ([CodFam] = @Original_CodFam));
|
||||
SELECT Matricola, Descrizione, Cliente, CodFam FROM ElencoMacchineCN WHERE (Matricola = @Matricola)";
|
||||
this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Matricola", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Matricola", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Descrizione", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Descrizione", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Fase", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Fase", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Cliente", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Cliente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodFam", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodFam", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Matricola", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Matricola", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Descrizione", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Descrizione", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Fase", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Fase", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Cliente", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Cliente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_CodFam", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodFam", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
}
|
||||
|
||||
@@ -2209,11 +2181,36 @@ SELECT Matricola, Descrizione, Fase, CodFam FROM ElencoMacchineCN WHERE (Matrico
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
private void InitCommandCollection() {
|
||||
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
|
||||
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 Matricola, Descrizione, Fase, CodFam FROM dbo.ElencoMacchineCN";
|
||||
this._commandCollection[0].CommandText = "SELECT Matricola, Descrizione, Cliente, CodFam FROM dbo.ElencoMacchineCN";
|
||||
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
|
||||
this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[1].Connection = this.Connection;
|
||||
this._commandCollection[1].CommandText = "dbo.stp_AM_deleteQuery";
|
||||
this._commandCollection[1].CommandType = global::System.Data.CommandType.StoredProcedure;
|
||||
this._commandCollection[1].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[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Matricola", 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_AM_insertQuery";
|
||||
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("@Matricola", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Descrizione", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Cliente", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodFam", 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_AM_UpdateQuery";
|
||||
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, "", "", ""));
|
||||
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Matricola", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Descrizione", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Cliente", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodFam", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Matricola", 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()]
|
||||
@@ -2273,15 +2270,25 @@ SELECT Matricola, Descrizione, Fase, CodFam FROM ElencoMacchineCN WHERE (Matrico
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
|
||||
public virtual int Delete(int Original_Matricola, string Original_Descrizione, int Original_Fase, string Original_CodFam) {
|
||||
this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_Matricola));
|
||||
public virtual int Delete(string Original_Matricola, string Original_Descrizione, string Original_Cliente, string Original_CodFam) {
|
||||
if ((Original_Matricola == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_Matricola");
|
||||
}
|
||||
else {
|
||||
this.Adapter.DeleteCommand.Parameters[0].Value = ((string)(Original_Matricola));
|
||||
}
|
||||
if ((Original_Descrizione == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_Descrizione");
|
||||
}
|
||||
else {
|
||||
this.Adapter.DeleteCommand.Parameters[1].Value = ((string)(Original_Descrizione));
|
||||
}
|
||||
this.Adapter.DeleteCommand.Parameters[2].Value = ((int)(Original_Fase));
|
||||
if ((Original_Cliente == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_Cliente");
|
||||
}
|
||||
else {
|
||||
this.Adapter.DeleteCommand.Parameters[2].Value = ((string)(Original_Cliente));
|
||||
}
|
||||
if ((Original_CodFam == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_CodFam");
|
||||
}
|
||||
@@ -2308,15 +2315,25 @@ SELECT Matricola, Descrizione, Fase, CodFam FROM ElencoMacchineCN WHERE (Matrico
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
|
||||
public virtual int Insert(int Matricola, string Descrizione, int Fase, string CodFam) {
|
||||
this.Adapter.InsertCommand.Parameters[0].Value = ((int)(Matricola));
|
||||
public virtual int Insert(string Matricola, string Descrizione, string Cliente, string CodFam) {
|
||||
if ((Matricola == null)) {
|
||||
throw new global::System.ArgumentNullException("Matricola");
|
||||
}
|
||||
else {
|
||||
this.Adapter.InsertCommand.Parameters[0].Value = ((string)(Matricola));
|
||||
}
|
||||
if ((Descrizione == null)) {
|
||||
throw new global::System.ArgumentNullException("Descrizione");
|
||||
}
|
||||
else {
|
||||
this.Adapter.InsertCommand.Parameters[1].Value = ((string)(Descrizione));
|
||||
}
|
||||
this.Adapter.InsertCommand.Parameters[2].Value = ((int)(Fase));
|
||||
if ((Cliente == null)) {
|
||||
throw new global::System.ArgumentNullException("Cliente");
|
||||
}
|
||||
else {
|
||||
this.Adapter.InsertCommand.Parameters[2].Value = ((string)(Cliente));
|
||||
}
|
||||
if ((CodFam == null)) {
|
||||
throw new global::System.ArgumentNullException("CodFam");
|
||||
}
|
||||
@@ -2343,29 +2360,49 @@ SELECT Matricola, Descrizione, Fase, CodFam FROM ElencoMacchineCN WHERE (Matrico
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
|
||||
public virtual int Update(int Matricola, string Descrizione, int Fase, string CodFam, int Original_Matricola, string Original_Descrizione, int Original_Fase, string Original_CodFam) {
|
||||
this.Adapter.UpdateCommand.Parameters[0].Value = ((int)(Matricola));
|
||||
public virtual int Update(string Matricola, string Descrizione, string Cliente, string CodFam, string Original_Matricola, string Original_Descrizione, string Original_Cliente, string Original_CodFam) {
|
||||
if ((Matricola == null)) {
|
||||
throw new global::System.ArgumentNullException("Matricola");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(Matricola));
|
||||
}
|
||||
if ((Descrizione == null)) {
|
||||
throw new global::System.ArgumentNullException("Descrizione");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(Descrizione));
|
||||
}
|
||||
this.Adapter.UpdateCommand.Parameters[2].Value = ((int)(Fase));
|
||||
if ((Cliente == null)) {
|
||||
throw new global::System.ArgumentNullException("Cliente");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[2].Value = ((string)(Cliente));
|
||||
}
|
||||
if ((CodFam == null)) {
|
||||
throw new global::System.ArgumentNullException("CodFam");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[3].Value = ((string)(CodFam));
|
||||
}
|
||||
this.Adapter.UpdateCommand.Parameters[4].Value = ((int)(Original_Matricola));
|
||||
if ((Original_Matricola == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_Matricola");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(Original_Matricola));
|
||||
}
|
||||
if ((Original_Descrizione == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_Descrizione");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[5].Value = ((string)(Original_Descrizione));
|
||||
}
|
||||
this.Adapter.UpdateCommand.Parameters[6].Value = ((int)(Original_Fase));
|
||||
if ((Original_Cliente == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_Cliente");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[6].Value = ((string)(Original_Cliente));
|
||||
}
|
||||
if ((Original_CodFam == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_CodFam");
|
||||
}
|
||||
@@ -2392,8 +2429,137 @@ SELECT Matricola, Descrizione, Fase, CodFam FROM ElencoMacchineCN WHERE (Matrico
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
|
||||
public virtual int Update(string Descrizione, int Fase, string CodFam, int Original_Matricola, string Original_Descrizione, int Original_Fase, string Original_CodFam) {
|
||||
return this.Update(Original_Matricola, Descrizione, Fase, CodFam, Original_Matricola, Original_Descrizione, Original_Fase, Original_CodFam);
|
||||
public virtual int Update(string Descrizione, string Cliente, string CodFam, string Original_Matricola, string Original_Descrizione, string Original_Cliente, string Original_CodFam) {
|
||||
return this.Update(Original_Matricola, Descrizione, Cliente, CodFam, Original_Matricola, Original_Descrizione, Original_Cliente, Original_CodFam);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, false)]
|
||||
public virtual int deleteQuery(string Original_Matricola) {
|
||||
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[1];
|
||||
if ((Original_Matricola == null)) {
|
||||
command.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
command.Parameters[1].Value = ((string)(Original_Matricola));
|
||||
}
|
||||
global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
|
||||
if (((command.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
!= global::System.Data.ConnectionState.Open)) {
|
||||
command.Connection.Open();
|
||||
}
|
||||
int returnValue;
|
||||
try {
|
||||
returnValue = command.ExecuteNonQuery();
|
||||
}
|
||||
finally {
|
||||
if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
|
||||
command.Connection.Close();
|
||||
}
|
||||
}
|
||||
return returnValue;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, false)]
|
||||
public virtual int insertQuery(string Matricola, string Descrizione, string Cliente, string CodFam) {
|
||||
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[2];
|
||||
if ((Matricola == null)) {
|
||||
command.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
command.Parameters[1].Value = ((string)(Matricola));
|
||||
}
|
||||
if ((Descrizione == null)) {
|
||||
command.Parameters[2].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
command.Parameters[2].Value = ((string)(Descrizione));
|
||||
}
|
||||
if ((Cliente == null)) {
|
||||
command.Parameters[3].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
command.Parameters[3].Value = ((string)(Cliente));
|
||||
}
|
||||
if ((CodFam == null)) {
|
||||
command.Parameters[4].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
command.Parameters[4].Value = ((string)(CodFam));
|
||||
}
|
||||
global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
|
||||
if (((command.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
!= global::System.Data.ConnectionState.Open)) {
|
||||
command.Connection.Open();
|
||||
}
|
||||
int returnValue;
|
||||
try {
|
||||
returnValue = command.ExecuteNonQuery();
|
||||
}
|
||||
finally {
|
||||
if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
|
||||
command.Connection.Close();
|
||||
}
|
||||
}
|
||||
return returnValue;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, false)]
|
||||
public virtual int updateQuery(string Matricola, string Descrizione, string Cliente, string CodFam, string Original_Matricola) {
|
||||
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[3];
|
||||
if ((Matricola == null)) {
|
||||
command.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
command.Parameters[1].Value = ((string)(Matricola));
|
||||
}
|
||||
if ((Descrizione == null)) {
|
||||
command.Parameters[2].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
command.Parameters[2].Value = ((string)(Descrizione));
|
||||
}
|
||||
if ((Cliente == null)) {
|
||||
command.Parameters[3].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
command.Parameters[3].Value = ((string)(Cliente));
|
||||
}
|
||||
if ((CodFam == null)) {
|
||||
command.Parameters[4].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
command.Parameters[4].Value = ((string)(CodFam));
|
||||
}
|
||||
if ((Original_Matricola == null)) {
|
||||
command.Parameters[5].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
command.Parameters[5].Value = ((string)(Original_Matricola));
|
||||
}
|
||||
global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
|
||||
if (((command.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
!= global::System.Data.ConnectionState.Open)) {
|
||||
command.Connection.Open();
|
||||
}
|
||||
int returnValue;
|
||||
try {
|
||||
returnValue = command.ExecuteNonQuery();
|
||||
}
|
||||
finally {
|
||||
if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
|
||||
command.Connection.Close();
|
||||
}
|
||||
}
|
||||
return returnValue;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2528,7 +2694,7 @@ SELECT Matricola, Descrizione, Fase, CodFam FROM ElencoMacchineCN WHERE (Matrico
|
||||
this._adapter.DeleteCommand.CommandText = @"DELETE FROM [dbo].[ElencoSchedeMacchina] WHERE (([idxESM] = @Original_idxESM) AND ([Matricola] = @Original_Matricola) AND ([CodScheda] = @Original_CodScheda) AND ((@IsNull_Descrizione = 1 AND [Descrizione] IS NULL) OR ([Descrizione] = @Original_Descrizione)))";
|
||||
this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_idxESM", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxESM", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Matricola", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Matricola", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_CodScheda", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodScheda", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Descrizione", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Descrizione", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Descrizione", global::System.Data.SqlDbType.NChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Descrizione", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
@@ -2538,7 +2704,7 @@ SELECT Matricola, Descrizione, Fase, CodFam FROM ElencoMacchineCN WHERE (Matrico
|
||||
") VALUES (@Matricola, @CodScheda, @Descrizione);\r\nSELECT idxESM, Matricola, CodS" +
|
||||
"cheda, Descrizione FROM ElencoSchedeMacchina WHERE (idxESM = SCOPE_IDENTITY())";
|
||||
this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Matricola", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Matricola", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodScheda", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodScheda", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Descrizione", global::System.Data.SqlDbType.NChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Descrizione", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
|
||||
@@ -2546,11 +2712,11 @@ SELECT Matricola, Descrizione, Fase, CodFam FROM ElencoMacchineCN WHERE (Matrico
|
||||
this._adapter.UpdateCommand.CommandText = @"UPDATE [dbo].[ElencoSchedeMacchina] SET [Matricola] = @Matricola, [CodScheda] = @CodScheda, [Descrizione] = @Descrizione WHERE (([idxESM] = @Original_idxESM) AND ([Matricola] = @Original_Matricola) AND ([CodScheda] = @Original_CodScheda) AND ((@IsNull_Descrizione = 1 AND [Descrizione] IS NULL) OR ([Descrizione] = @Original_Descrizione)));
|
||||
SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE (idxESM = @idxESM)";
|
||||
this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Matricola", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Matricola", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodScheda", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodScheda", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Descrizione", global::System.Data.SqlDbType.NChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Descrizione", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_idxESM", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxESM", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Matricola", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Matricola", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Matricola", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_CodScheda", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodScheda", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Descrizione", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Descrizione", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Descrizione", global::System.Data.SqlDbType.NChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Descrizione", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
@@ -2631,9 +2797,14 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
|
||||
public virtual int Delete(int Original_idxESM, int Original_Matricola, string Original_CodScheda, string Original_Descrizione) {
|
||||
public virtual int Delete(int Original_idxESM, string Original_Matricola, string Original_CodScheda, string Original_Descrizione) {
|
||||
this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_idxESM));
|
||||
this.Adapter.DeleteCommand.Parameters[1].Value = ((int)(Original_Matricola));
|
||||
if ((Original_Matricola == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_Matricola");
|
||||
}
|
||||
else {
|
||||
this.Adapter.DeleteCommand.Parameters[1].Value = ((string)(Original_Matricola));
|
||||
}
|
||||
if ((Original_CodScheda == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_CodScheda");
|
||||
}
|
||||
@@ -2668,8 +2839,13 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
|
||||
public virtual int Insert(int Matricola, string CodScheda, string Descrizione) {
|
||||
this.Adapter.InsertCommand.Parameters[0].Value = ((int)(Matricola));
|
||||
public virtual int Insert(string Matricola, string CodScheda, string Descrizione) {
|
||||
if ((Matricola == null)) {
|
||||
throw new global::System.ArgumentNullException("Matricola");
|
||||
}
|
||||
else {
|
||||
this.Adapter.InsertCommand.Parameters[0].Value = ((string)(Matricola));
|
||||
}
|
||||
if ((CodScheda == null)) {
|
||||
throw new global::System.ArgumentNullException("CodScheda");
|
||||
}
|
||||
@@ -2702,8 +2878,13 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
|
||||
public virtual int Update(int Matricola, string CodScheda, string Descrizione, int Original_idxESM, int Original_Matricola, string Original_CodScheda, string Original_Descrizione, int idxESM) {
|
||||
this.Adapter.UpdateCommand.Parameters[0].Value = ((int)(Matricola));
|
||||
public virtual int Update(string Matricola, string CodScheda, string Descrizione, int Original_idxESM, string Original_Matricola, string Original_CodScheda, string Original_Descrizione, int idxESM) {
|
||||
if ((Matricola == null)) {
|
||||
throw new global::System.ArgumentNullException("Matricola");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(Matricola));
|
||||
}
|
||||
if ((CodScheda == null)) {
|
||||
throw new global::System.ArgumentNullException("CodScheda");
|
||||
}
|
||||
@@ -2717,7 +2898,12 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
this.Adapter.UpdateCommand.Parameters[2].Value = ((string)(Descrizione));
|
||||
}
|
||||
this.Adapter.UpdateCommand.Parameters[3].Value = ((int)(Original_idxESM));
|
||||
this.Adapter.UpdateCommand.Parameters[4].Value = ((int)(Original_Matricola));
|
||||
if ((Original_Matricola == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_Matricola");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(Original_Matricola));
|
||||
}
|
||||
if ((Original_CodScheda == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_CodScheda");
|
||||
}
|
||||
@@ -2753,7 +2939,7 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
|
||||
public virtual int Update(int Matricola, string CodScheda, string Descrizione, int Original_idxESM, int Original_Matricola, string Original_CodScheda, string Original_Descrizione) {
|
||||
public virtual int Update(string Matricola, string CodScheda, string Descrizione, int Original_idxESM, string Original_Matricola, string Original_CodScheda, string Original_Descrizione) {
|
||||
return this.Update(Matricola, CodScheda, Descrizione, Original_idxESM, Original_Matricola, Original_CodScheda, Original_Descrizione, Original_idxESM);
|
||||
}
|
||||
}
|
||||
@@ -2897,15 +3083,6 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
private int UpdateUpdatedRows(DS_Applicazione dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
|
||||
int result = 0;
|
||||
if ((this._elencoFamMaccTableAdapter != null)) {
|
||||
global::System.Data.DataRow[] updatedRows = dataSet.ElencoFamMacc.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
|
||||
updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
|
||||
if (((updatedRows != null)
|
||||
&& (0 < updatedRows.Length))) {
|
||||
result = (result + this._elencoFamMaccTableAdapter.Update(updatedRows));
|
||||
allChangedRows.AddRange(updatedRows);
|
||||
}
|
||||
}
|
||||
if ((this._elencoMacchineCNTableAdapter != null)) {
|
||||
global::System.Data.DataRow[] updatedRows = dataSet.ElencoMacchineCN.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
|
||||
updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
|
||||
@@ -2915,6 +3092,15 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
allChangedRows.AddRange(updatedRows);
|
||||
}
|
||||
}
|
||||
if ((this._elencoFamMaccTableAdapter != null)) {
|
||||
global::System.Data.DataRow[] updatedRows = dataSet.ElencoFamMacc.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
|
||||
updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
|
||||
if (((updatedRows != null)
|
||||
&& (0 < updatedRows.Length))) {
|
||||
result = (result + this._elencoFamMaccTableAdapter.Update(updatedRows));
|
||||
allChangedRows.AddRange(updatedRows);
|
||||
}
|
||||
}
|
||||
if ((this._elencoSchedeMacchinaTableAdapter != null)) {
|
||||
global::System.Data.DataRow[] updatedRows = dataSet.ElencoSchedeMacchina.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
|
||||
updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
|
||||
@@ -2934,14 +3120,6 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
private int UpdateInsertedRows(DS_Applicazione dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
|
||||
int result = 0;
|
||||
if ((this._elencoFamMaccTableAdapter != null)) {
|
||||
global::System.Data.DataRow[] addedRows = dataSet.ElencoFamMacc.Select(null, null, global::System.Data.DataViewRowState.Added);
|
||||
if (((addedRows != null)
|
||||
&& (0 < addedRows.Length))) {
|
||||
result = (result + this._elencoFamMaccTableAdapter.Update(addedRows));
|
||||
allAddedRows.AddRange(addedRows);
|
||||
}
|
||||
}
|
||||
if ((this._elencoMacchineCNTableAdapter != null)) {
|
||||
global::System.Data.DataRow[] addedRows = dataSet.ElencoMacchineCN.Select(null, null, global::System.Data.DataViewRowState.Added);
|
||||
if (((addedRows != null)
|
||||
@@ -2950,6 +3128,14 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
allAddedRows.AddRange(addedRows);
|
||||
}
|
||||
}
|
||||
if ((this._elencoFamMaccTableAdapter != null)) {
|
||||
global::System.Data.DataRow[] addedRows = dataSet.ElencoFamMacc.Select(null, null, global::System.Data.DataViewRowState.Added);
|
||||
if (((addedRows != null)
|
||||
&& (0 < addedRows.Length))) {
|
||||
result = (result + this._elencoFamMaccTableAdapter.Update(addedRows));
|
||||
allAddedRows.AddRange(addedRows);
|
||||
}
|
||||
}
|
||||
if ((this._elencoSchedeMacchinaTableAdapter != null)) {
|
||||
global::System.Data.DataRow[] addedRows = dataSet.ElencoSchedeMacchina.Select(null, null, global::System.Data.DataViewRowState.Added);
|
||||
if (((addedRows != null)
|
||||
@@ -2976,14 +3162,6 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
allChangedRows.AddRange(deletedRows);
|
||||
}
|
||||
}
|
||||
if ((this._elencoMacchineCNTableAdapter != null)) {
|
||||
global::System.Data.DataRow[] deletedRows = dataSet.ElencoMacchineCN.Select(null, null, global::System.Data.DataViewRowState.Deleted);
|
||||
if (((deletedRows != null)
|
||||
&& (0 < deletedRows.Length))) {
|
||||
result = (result + this._elencoMacchineCNTableAdapter.Update(deletedRows));
|
||||
allChangedRows.AddRange(deletedRows);
|
||||
}
|
||||
}
|
||||
if ((this._elencoFamMaccTableAdapter != null)) {
|
||||
global::System.Data.DataRow[] deletedRows = dataSet.ElencoFamMacc.Select(null, null, global::System.Data.DataViewRowState.Deleted);
|
||||
if (((deletedRows != null)
|
||||
@@ -2992,6 +3170,14 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
allChangedRows.AddRange(deletedRows);
|
||||
}
|
||||
}
|
||||
if ((this._elencoMacchineCNTableAdapter != null)) {
|
||||
global::System.Data.DataRow[] deletedRows = dataSet.ElencoMacchineCN.Select(null, null, global::System.Data.DataViewRowState.Deleted);
|
||||
if (((deletedRows != null)
|
||||
&& (0 < deletedRows.Length))) {
|
||||
result = (result + this._elencoMacchineCNTableAdapter.Update(deletedRows));
|
||||
allChangedRows.AddRange(deletedRows);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
@@ -97,45 +97,45 @@ SELECT CodFam, DescrFam FROM ElencoFamMacc WHERE (CodFam = @CodFam)</CommandText
|
||||
<DbSource ConnectionRef="CMS_SCConnectionString (Settings)" DbObjectName="[CMS-SC].dbo.ElencoMacchineCN" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||
<DeleteCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>DELETE FROM [dbo].[ElencoMacchineCN] WHERE (([Matricola] = @Original_Matricola) AND ([Descrizione] = @Original_Descrizione) AND ([Fase] = @Original_Fase) AND ([CodFam] = @Original_CodFam))</CommandText>
|
||||
<CommandText>DELETE FROM [dbo].[ElencoMacchineCN] WHERE (([Matricola] = @Original_Matricola) AND ([Descrizione] = @Original_Descrizione) AND ([Cliente] = @Original_Cliente) AND ([CodFam] = @Original_CodFam))</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_Matricola" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Matricola" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Descrizione" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Descrizione" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_Fase" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Fase" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Cliente" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Cliente" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_CodFam" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodFam" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</DeleteCommand>
|
||||
<InsertCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>INSERT INTO [dbo].[ElencoMacchineCN] ([Matricola], [Descrizione], [Fase], [CodFam]) VALUES (@Matricola, @Descrizione, @Fase, @CodFam);
|
||||
SELECT Matricola, Descrizione, Fase, CodFam FROM ElencoMacchineCN WHERE (Matricola = @Matricola)</CommandText>
|
||||
<CommandText>INSERT INTO [dbo].[ElencoMacchineCN] ([Matricola], [Descrizione], [Cliente], [CodFam]) VALUES (@Matricola, @Descrizione, @Cliente, @CodFam);
|
||||
SELECT Matricola, Descrizione, Cliente, CodFam FROM ElencoMacchineCN WHERE (Matricola = @Matricola)</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Matricola" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Matricola" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Descrizione" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Descrizione" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Fase" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Fase" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Cliente" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Cliente" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@CodFam" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodFam" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</InsertCommand>
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>SELECT Matricola, Descrizione, Fase, CodFam FROM dbo.ElencoMacchineCN</CommandText>
|
||||
<CommandText>SELECT Matricola, Descrizione, Cliente, CodFam FROM dbo.ElencoMacchineCN</CommandText>
|
||||
<Parameters />
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
<UpdateCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>UPDATE [dbo].[ElencoMacchineCN] SET [Matricola] = @Matricola, [Descrizione] = @Descrizione, [Fase] = @Fase, [CodFam] = @CodFam WHERE (([Matricola] = @Original_Matricola) AND ([Descrizione] = @Original_Descrizione) AND ([Fase] = @Original_Fase) AND ([CodFam] = @Original_CodFam));
|
||||
SELECT Matricola, Descrizione, Fase, CodFam FROM ElencoMacchineCN WHERE (Matricola = @Matricola)</CommandText>
|
||||
<CommandText>UPDATE [dbo].[ElencoMacchineCN] SET [Matricola] = @Matricola, [Descrizione] = @Descrizione, [Cliente] = @Cliente, [CodFam] = @CodFam WHERE (([Matricola] = @Original_Matricola) AND ([Descrizione] = @Original_Descrizione) AND ([Cliente] = @Original_Cliente) AND ([CodFam] = @Original_CodFam));
|
||||
SELECT Matricola, Descrizione, Cliente, CodFam FROM ElencoMacchineCN WHERE (Matricola = @Matricola)</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Matricola" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Matricola" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Descrizione" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Descrizione" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Fase" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Fase" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Cliente" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Cliente" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@CodFam" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodFam" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_Matricola" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Matricola" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Descrizione" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Descrizione" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_Fase" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Fase" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Cliente" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Cliente" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_CodFam" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodFam" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
@@ -145,10 +145,51 @@ SELECT Matricola, Descrizione, Fase, CodFam FROM ElencoMacchineCN WHERE (Matrico
|
||||
<Mappings>
|
||||
<Mapping SourceColumn="Matricola" DataSetColumn="Matricola" />
|
||||
<Mapping SourceColumn="Descrizione" DataSetColumn="Descrizione" />
|
||||
<Mapping SourceColumn="Fase" DataSetColumn="Fase" />
|
||||
<Mapping SourceColumn="Cliente" DataSetColumn="Cliente" />
|
||||
<Mapping SourceColumn="CodFam" DataSetColumn="CodFam" />
|
||||
</Mappings>
|
||||
<Sources />
|
||||
<Sources>
|
||||
<DbSource ConnectionRef="CMS_SCConnectionString (Settings)" DbObjectName="" DbObjectType="Unknown" GenerateShortCommands="true" GeneratorSourceName="deleteQuery" Modifier="Public" Name="deleteQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy" UserSourceName="deleteQuery">
|
||||
<DeleteCommand>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
<CommandText>dbo.stp_AM_deleteQuery</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Original_Matricola" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</DeleteCommand>
|
||||
</DbSource>
|
||||
<DbSource ConnectionRef="CMS_SCConnectionString (Settings)" DbObjectName="" DbObjectType="Unknown" GenerateShortCommands="true" GeneratorSourceName="insertQuery" Modifier="Public" Name="insertQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy1" UserSourceName="insertQuery">
|
||||
<InsertCommand>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
<CommandText>dbo.stp_AM_insertQuery</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Matricola" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Descrizione" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Cliente" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@CodFam" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</InsertCommand>
|
||||
</DbSource>
|
||||
<DbSource ConnectionRef="CMS_SCConnectionString (Settings)" DbObjectName="" DbObjectType="Unknown" GenerateShortCommands="true" GeneratorSourceName="updateQuery" Modifier="Public" Name="updateQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy2" UserSourceName="updateQuery">
|
||||
<UpdateCommand>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
<CommandText>dbo.stp_AM_UpdateQuery</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Matricola" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Descrizione" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Cliente" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@CodFam" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Original_Matricola" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</UpdateCommand>
|
||||
</DbSource>
|
||||
</Sources>
|
||||
</TableAdapter>
|
||||
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="ElencoSchedeMacchinaTableAdapter" GeneratorDataComponentClassName="ElencoSchedeMacchinaTableAdapter" Name="ElencoSchedeMacchina" UserDataComponentName="ElencoSchedeMacchinaTableAdapter">
|
||||
<MainSource>
|
||||
@@ -158,7 +199,7 @@ SELECT Matricola, Descrizione, Fase, CodFam FROM ElencoMacchineCN WHERE (Matrico
|
||||
<CommandText>DELETE FROM [dbo].[ElencoSchedeMacchina] WHERE (([idxESM] = @Original_idxESM) AND ([Matricola] = @Original_Matricola) AND ([CodScheda] = @Original_CodScheda) AND ((@IsNull_Descrizione = 1 AND [Descrizione] IS NULL) OR ([Descrizione] = @Original_Descrizione)))</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idxESM" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxESM" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_Matricola" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Matricola" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_CodScheda" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodScheda" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Descrizione" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Descrizione" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="StringFixedLength" Direction="Input" ParameterName="@Original_Descrizione" Precision="0" ProviderType="NChar" Scale="0" Size="0" SourceColumn="Descrizione" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
@@ -170,7 +211,7 @@ SELECT Matricola, Descrizione, Fase, CodFam FROM ElencoMacchineCN WHERE (Matrico
|
||||
<CommandText>INSERT INTO [dbo].[ElencoSchedeMacchina] ([Matricola], [CodScheda], [Descrizione]) VALUES (@Matricola, @CodScheda, @Descrizione);
|
||||
SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE (idxESM = SCOPE_IDENTITY())</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Matricola" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Matricola" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@CodScheda" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodScheda" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="StringFixedLength" Direction="Input" ParameterName="@Descrizione" Precision="0" ProviderType="NChar" Scale="0" Size="0" SourceColumn="Descrizione" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
@@ -187,11 +228,11 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
<CommandText>UPDATE [dbo].[ElencoSchedeMacchina] SET [Matricola] = @Matricola, [CodScheda] = @CodScheda, [Descrizione] = @Descrizione WHERE (([idxESM] = @Original_idxESM) AND ([Matricola] = @Original_Matricola) AND ([CodScheda] = @Original_CodScheda) AND ((@IsNull_Descrizione = 1 AND [Descrizione] IS NULL) OR ([Descrizione] = @Original_Descrizione)));
|
||||
SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE (idxESM = @idxESM)</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Matricola" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Matricola" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@CodScheda" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodScheda" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="StringFixedLength" Direction="Input" ParameterName="@Descrizione" Precision="0" ProviderType="NChar" Scale="0" Size="0" SourceColumn="Descrizione" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idxESM" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxESM" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_Matricola" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Matricola" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Matricola" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_CodScheda" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodScheda" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Descrizione" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Descrizione" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="StringFixedLength" Direction="Input" ParameterName="@Original_Descrizione" Precision="0" ProviderType="NChar" Scale="0" Size="0" SourceColumn="Descrizione" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
@@ -240,7 +281,13 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
<xs:element name="ElencoMacchineCN" msprop:Generator_TableClassName="ElencoMacchineCNDataTable" msprop:Generator_TableVarName="tableElencoMacchineCN" msprop:Generator_TablePropName="ElencoMacchineCN" msprop:Generator_RowDeletingName="ElencoMacchineCNRowDeleting" msprop:Generator_RowChangingName="ElencoMacchineCNRowChanging" msprop:Generator_RowEvHandlerName="ElencoMacchineCNRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoMacchineCNRowDeleted" msprop:Generator_UserTableName="ElencoMacchineCN" msprop:Generator_RowChangedName="ElencoMacchineCNRowChanged" msprop:Generator_RowEvArgName="ElencoMacchineCNRowChangeEvent" msprop:Generator_RowClassName="ElencoMacchineCNRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Matricola" msprop:Generator_ColumnVarNameInTable="columnMatricola" msprop:Generator_ColumnPropNameInRow="Matricola" msprop:Generator_ColumnPropNameInTable="MatricolaColumn" msprop:Generator_UserColumnName="Matricola" type="xs:int" />
|
||||
<xs:element name="Matricola" msprop:Generator_ColumnVarNameInTable="columnMatricola" msprop:Generator_ColumnPropNameInRow="Matricola" msprop:Generator_ColumnPropNameInTable="MatricolaColumn" msprop:Generator_UserColumnName="Matricola">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Descrizione" msprop:Generator_ColumnVarNameInTable="columnDescrizione" msprop:Generator_ColumnPropNameInRow="Descrizione" msprop:Generator_ColumnPropNameInTable="DescrizioneColumn" msprop:Generator_UserColumnName="Descrizione">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
@@ -248,7 +295,13 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Fase" msprop:Generator_ColumnVarNameInTable="columnFase" msprop:Generator_ColumnPropNameInRow="Fase" msprop:Generator_ColumnPropNameInTable="FaseColumn" msprop:Generator_UserColumnName="Fase" type="xs:int" />
|
||||
<xs:element name="Cliente" msprop:Generator_ColumnVarNameInTable="columnCliente" msprop:Generator_ColumnPropNameInRow="Cliente" msprop:Generator_ColumnPropNameInTable="ClienteColumn" msprop:Generator_UserColumnName="Cliente">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodFam" msprop:Generator_ColumnVarNameInTable="columnCodFam" msprop:Generator_ColumnPropNameInRow="CodFam" msprop:Generator_ColumnPropNameInTable="CodFamColumn" msprop:Generator_UserColumnName="CodFam">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
@@ -263,7 +316,13 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="idxESM" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidxESM" msprop:Generator_ColumnPropNameInRow="idxESM" msprop:Generator_ColumnPropNameInTable="idxESMColumn" msprop:Generator_UserColumnName="idxESM" type="xs:int" />
|
||||
<xs:element name="Matricola" msprop:Generator_ColumnVarNameInTable="columnMatricola" msprop:Generator_ColumnPropNameInRow="Matricola" msprop:Generator_ColumnPropNameInTable="MatricolaColumn" msprop:Generator_UserColumnName="Matricola" type="xs:int" />
|
||||
<xs:element name="Matricola" msprop:Generator_ColumnVarNameInTable="columnMatricola" msprop:Generator_ColumnPropNameInRow="Matricola" msprop:Generator_ColumnPropNameInTable="MatricolaColumn" msprop:Generator_UserColumnName="Matricola">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodScheda" msprop:Generator_ColumnVarNameInTable="columnCodScheda" msprop:Generator_ColumnPropNameInRow="CodScheda" msprop:Generator_ColumnPropNameInTable="CodSchedaColumn" msprop:Generator_UserColumnName="CodScheda">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
@@ -299,7 +358,6 @@ SELECT idxESM, Matricola, CodScheda, Descrizione FROM ElencoSchedeMacchina WHERE
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<msdata:Relationship name="FK_ElencoSchedeMacchina_ElencoMacchineCN" msdata:parent="ElencoMacchineCN" msdata:child="ElencoSchedeMacchina" msdata:parentkey="Matricola" msdata:childkey="Matricola" msprop:Generator_UserChildTable="ElencoSchedeMacchina" msprop:Generator_ChildPropName="GetElencoSchedeMacchinaRows" msprop:Generator_UserRelationName="FK_ElencoSchedeMacchina_ElencoMacchineCN" msprop:Generator_ParentPropName="ElencoMacchineCNRow" msprop:Generator_RelationVarName="relationFK_ElencoSchedeMacchina_ElencoMacchineCN" msprop:Generator_UserParentTable="ElencoMacchineCN" />
|
||||
<msdata:Relationship name="ElencoFamMacc_ElencoMacchineCN" msdata:parent="ElencoFamMacc" msdata:child="ElencoMacchineCN" msdata:parentkey="CodFam" msdata:childkey="CodFam" msprop:Generator_UserChildTable="ElencoMacchineCN" msprop:Generator_ChildPropName="GetElencoMacchineCNRows" msprop:Generator_UserRelationName="ElencoFamMacc_ElencoMacchineCN" msprop:Generator_ParentPropName="ElencoFamMaccRow" msprop:Generator_RelationVarName="relationElencoFamMacc_ElencoMacchineCN" msprop:Generator_UserParentTable="ElencoFamMacc" />
|
||||
</xs:appinfo>
|
||||
</xs:annotation>
|
||||
</xs:schema>
|
||||
@@ -6,32 +6,20 @@
|
||||
</autogenerated>-->
|
||||
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="0" ViewPortY="0" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||
<Shapes>
|
||||
<Shape ID="DesignTable:ElencoFamMacc" ZOrder="5" X="138" Y="240" Height="172" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:ElencoMacchineCN" ZOrder="4" X="498" Y="255" Height="153" Width="255" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
<Shape ID="DesignTable:ElencoSchedeMacchina" ZOrder="3" X="852" Y="207" Height="153" Width="279" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
<Shape ID="DesignTable:ElencoFamMacc" ZOrder="4" X="57" Y="249" Height="172" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||
<Shape ID="DesignTable:ElencoMacchineCN" ZOrder="3" X="454" Y="232" Height="210" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
<Shape ID="DesignTable:ElencoSchedeMacchina" ZOrder="2" X="890" Y="222" Height="153" Width="279" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
</Shapes>
|
||||
<Connectors>
|
||||
<Connector ID="DesignRelation:FK_ElencoSchedeMacchina_ElencoMacchineCN" ZOrder="2" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_ElencoSchedeMacchina_ElencoMacchineCN" ZOrder="1" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>753</X>
|
||||
<Y>277</Y>
|
||||
<X>754</X>
|
||||
<Y>267</Y>
|
||||
</Point>
|
||||
<Point>
|
||||
<X>852</X>
|
||||
<Y>277</Y>
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:ElencoFamMacc_ElencoMacchineCN" ZOrder="1" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>438</X>
|
||||
<Y>305</Y>
|
||||
</Point>
|
||||
<Point>
|
||||
<X>498</X>
|
||||
<Y>305</Y>
|
||||
<X>890</X>
|
||||
<Y>267</Y>
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,7 +1,18 @@
|
||||
<%@ Page Title="" Language="C#" MasterPageFile="~/Bootstrap.Master" AutoEventWireup="true" CodeBehind="AnagMatricole.aspx.cs" Inherits="CMS_SC.AnagMatricole" %>
|
||||
|
||||
<%@ Register Src="~/WebUserControls/mod_anagMatricole.ascx" TagName="mod_anagMatricole" TagPrefix="uc1" %>
|
||||
<%@ Register Src="~/WebUserControls/mod_righePag.ascx" TagName="mod_righePag" TagPrefix="uc2" %>
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
|
||||
</asp:Content>
|
||||
<asp:Content ID="Content2" ContentPlaceHolderID="FeaturedContent" runat="server">
|
||||
</asp:Content>
|
||||
<asp:Content ID="Content3" ContentPlaceHolderID="MainContent" runat="server">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<uc1:mod_anagMatricole ID="mod_anagMatricole" runat="server" />
|
||||
<uc2:mod_righePag ID="mod_righePag" runat="server" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</asp:Content>
|
||||
|
||||
@@ -11,7 +11,18 @@ namespace CMS_SC
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
if (!Page.IsPostBack)
|
||||
{
|
||||
((Bootstrap)this.Master).showSearch = true;
|
||||
mod_righePag.numRowPag = 20;
|
||||
mod_anagMatricole.pageSize = mod_righePag.numRowPag;
|
||||
}
|
||||
mod_righePag.eh_newNum += mod_righePag_eh_newNum;
|
||||
}
|
||||
|
||||
void mod_righePag_eh_newNum(object sender, EventArgs e)
|
||||
{
|
||||
mod_anagMatricole.pageSize = mod_righePag.numRowPag;
|
||||
}
|
||||
}
|
||||
}
|
||||
Generated
+23
-7
@@ -3,15 +3,31 @@
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace CMS_SC
|
||||
{
|
||||
|
||||
|
||||
public partial class AnagMatricole
|
||||
{
|
||||
namespace CMS_SC {
|
||||
|
||||
|
||||
public partial class AnagMatricole {
|
||||
|
||||
/// <summary>
|
||||
/// mod_anagMatricole control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::CMS_SC.WebUserControls.mod_anagMatricole mod_anagMatricole;
|
||||
|
||||
/// <summary>
|
||||
/// mod_righePag control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::mod_righePag mod_righePag;
|
||||
}
|
||||
}
|
||||
|
||||
+8
-17
@@ -147,7 +147,6 @@
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="About.aspx" />
|
||||
<Content Include="Account\Login.aspx" />
|
||||
<Content Include="Account\Manage.aspx" />
|
||||
<Content Include="Account\OpenAuthProviders.ascx" />
|
||||
@@ -159,7 +158,6 @@
|
||||
<Content Include="AnagMisure.aspx" />
|
||||
<Content Include="AnagSchedeColl.aspx" />
|
||||
<Content Include="App_Readme\Elmah.txt" />
|
||||
<Content Include="Contact.aspx" />
|
||||
<Content Include="Content\bootstrap.css" />
|
||||
<Content Include="Content\bootstrap.min.css" />
|
||||
<Content Include="Content\bootswatch.css">
|
||||
@@ -267,6 +265,7 @@
|
||||
<Content Include="UserAdmin.aspx" />
|
||||
<Content Include="Vocabolario.aspx" />
|
||||
<Content Include="WebUserControls\mod_AnagFamMacc.ascx" />
|
||||
<Content Include="WebUserControls\mod_anagMatricole.ascx" />
|
||||
<Content Include="WebUserControls\mod_elencoRichResetUtenti.ascx" />
|
||||
<Content Include="WebUserControls\mod_enrollByAuthKey.ascx" />
|
||||
<Content Include="WebUserControls\mod_enrollByEmail.ascx" />
|
||||
@@ -379,14 +378,6 @@
|
||||
<DependentUpon>AnagSchedeColl.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="App_Start\BundleConfig.cs" />
|
||||
<Compile Include="App_Start\AuthConfig.cs" />
|
||||
<Compile Include="About.aspx.cs">
|
||||
<DependentUpon>About.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="About.aspx.designer.cs">
|
||||
<DependentUpon>About.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Account\Login.aspx.cs">
|
||||
<DependentUpon>Login.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
@@ -431,13 +422,6 @@
|
||||
<DependentUpon>Bootstrap.Master</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="CMS_SC.cs" />
|
||||
<Compile Include="Contact.aspx.cs">
|
||||
<DependentUpon>Contact.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Contact.aspx.designer.cs">
|
||||
<DependentUpon>Contact.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Default.aspx.cs">
|
||||
<DependentUpon>Default.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
@@ -505,6 +489,13 @@
|
||||
<Compile Include="WebUserControls\mod_AnagFamMacc.ascx.designer.cs">
|
||||
<DependentUpon>mod_AnagFamMacc.ascx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="WebUserControls\mod_anagMatricole.ascx.cs">
|
||||
<DependentUpon>mod_anagMatricole.ascx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="WebUserControls\mod_anagMatricole.ascx.designer.cs">
|
||||
<DependentUpon>mod_anagMatricole.ascx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="WebUserControls\mod_elencoRichResetUtenti.ascx.cs">
|
||||
<DependentUpon>mod_elencoRichResetUtenti.ascx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
|
||||
@@ -224,12 +224,12 @@ a:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
.subnavbar .mainnav > li.active > a {
|
||||
background: #333;
|
||||
color: #F90;
|
||||
background: #333333;
|
||||
color: #33AFFF;
|
||||
}
|
||||
.subnavbar .mainnav > li.active > a .caret {
|
||||
border-top-color: #ff9900;
|
||||
border-bottom-color: #ff9900;
|
||||
border-top-color: #33AFFF;
|
||||
border-bottom-color: #33AFFF;
|
||||
}
|
||||
.subnavbar .dropdown > .dropdown-menu {
|
||||
top: 97%;
|
||||
|
||||
@@ -274,13 +274,13 @@ a {
|
||||
}
|
||||
|
||||
.subnavbar .mainnav > li.active > a {
|
||||
background: #333;
|
||||
color: #F90;
|
||||
background: #333333;
|
||||
color: #33AFFF;
|
||||
}
|
||||
|
||||
.subnavbar .mainnav > li.active > a .caret {
|
||||
border-top-color: #ff9900;
|
||||
border-bottom-color: #ff9900;
|
||||
border-top-color: #33AFFF;
|
||||
border-bottom-color: #33AFFF;
|
||||
}
|
||||
|
||||
.subnavbar .dropdown > .dropdown-menu {
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -15,7 +15,6 @@ namespace CMS_SC
|
||||
{
|
||||
// Code that runs on application startup
|
||||
BundleConfig.RegisterBundles(BundleTable.Bundles);
|
||||
AuthConfig.RegisterOpenAuth();
|
||||
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_anagMatricole.ascx.cs" Inherits="CMS_SC.WebUserControls.mod_anagMatricole" %>
|
||||
<asp:GridView ID="grView" runat="server" AutoGenerateColumns="False" DataKeyNames="Matricola" DataSourceID="ods" CssClass="table table-striped table-hover" AllowPaging="True" AllowSorting="True">
|
||||
<PagerStyle CssClass="info" />
|
||||
<Columns>
|
||||
<asp:BoundField DataField="Matricola" HeaderText="Matricola" ReadOnly="True" SortExpression="Matricola" />
|
||||
<asp:BoundField DataField="Descrizione" HeaderText="Descrizione" SortExpression="Descrizione" />
|
||||
<asp:BoundField DataField="Cliente" HeaderText="Cliente" SortExpression="Cliente" />
|
||||
<asp:BoundField DataField="CodFam" HeaderText="CodFam" SortExpression="CodFam" />
|
||||
</Columns>
|
||||
</asp:GridView>
|
||||
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="GetData" TypeName="CMS_SC_Data.DS_ApplicazioneTableAdapters.ElencoMacchineCNTableAdapter" FilterExpression=" Matricola LIKE '%{0}%' OR Descrizione LIKE '%{0}%' OR Cliente LIKE '%{0}%' OR CodFam LIKE '%{0}%'">
|
||||
<FilterParameters>
|
||||
<asp:SessionParameter DefaultValue="*" Name="ricerca" SessionField="searchVal" />
|
||||
</FilterParameters>
|
||||
</asp:ObjectDataSource>
|
||||
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
|
||||
namespace CMS_SC.WebUserControls
|
||||
{
|
||||
public partial class mod_anagMatricole : System.Web.UI.UserControl
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// dimensione pagina grid view
|
||||
/// </summary>
|
||||
public int pageSize
|
||||
{
|
||||
get
|
||||
{
|
||||
return grView.PageSize;
|
||||
}
|
||||
set
|
||||
{
|
||||
grView.PageSize = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace CMS_SC.WebUserControls {
|
||||
|
||||
|
||||
public partial class mod_anagMatricole {
|
||||
|
||||
/// <summary>
|
||||
/// grView control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.GridView grView;
|
||||
|
||||
/// <summary>
|
||||
/// ods control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.ObjectDataSource ods;
|
||||
}
|
||||
}
|
||||
@@ -31,7 +31,7 @@
|
||||
<span>Home</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class='<%: "dropdown " + liClass("Anag01 Anag02 Anag03")%>'>
|
||||
<li class='<%: "dropdown " + liClass("AnagFamMacchine AnagMatricole AnagFasi AnagMisure AnagSchedeColl")%>'>
|
||||
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown">
|
||||
<i class="fa fa-th"></i>
|
||||
<span>Anagrafiche</span>
|
||||
@@ -71,7 +71,7 @@
|
||||
<li><a href="ReportCliente"><%: traduci("ReportCliente") %></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class='<%: "dropdown " + liClass("Settings")%>'>
|
||||
<li class='<%: "dropdown " + liClass("Settings Vocabolario ListValues UserAdmin UpdateVoc")%>'>
|
||||
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown">
|
||||
<i class="fa fa-cog"></i>
|
||||
<span>Settings</span>
|
||||
@@ -80,7 +80,6 @@
|
||||
<ul class="dropdown-menu">
|
||||
<li runat="server" id="liGestVoc"><a href="Vocabolario"><%: traduci("GestVoc") %></a></li>
|
||||
<li runat="server" id="liListValues"><a href="ListValues"><%: traduci("ListValuesMgmt") %></a></li>
|
||||
<%--<li runat="server" id="liImport"><a href="Import"><%: traduci("ImportData") %></a></li>--%>
|
||||
<li runat="server" id="liUserAdmin"><a href="UserAdmin"><%: traduci("UserAdmin") %></a></li>
|
||||
<li runat="server" id="liDivider" class="divider"></li>
|
||||
<li runat="server" id="liUpdateVoc"><a href="UpdateVoc"><%: traduci("UpdateVoc") %></a></li>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user