Aggiunta modifica x mostrare operatore che FA il setup

This commit is contained in:
Samuele E. Locatelli
2018-09-19 18:23:00 +02:00
parent cc99a6472f
commit ef44ea2fe1
6 changed files with 83 additions and 28 deletions
+48 -2
View File
@@ -1408,6 +1408,8 @@ namespace MapoDb {
private global::System.Data.DataColumn columnPzPallet;
private global::System.Data.DataColumn columnOperSetup;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public ODLDataTable() {
@@ -1585,6 +1587,14 @@ namespace MapoDb {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public global::System.Data.DataColumn OperSetupColumn {
get {
return this.columnOperSetup;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
[global::System.ComponentModel.Browsable(false)]
@@ -1639,7 +1649,8 @@ namespace MapoDb {
decimal TCRichAttr,
bool ToAs400,
string CommessaAs400,
int PzPallet) {
int PzPallet,
string OperSetup) {
ODLRow rowODLRow = ((ODLRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
null,
@@ -1659,7 +1670,8 @@ namespace MapoDb {
TCRichAttr,
ToAs400,
CommessaAs400,
PzPallet};
PzPallet,
OperSetup};
rowODLRow.ItemArray = columnValuesArray;
this.Rows.Add(rowODLRow);
return rowODLRow;
@@ -1707,6 +1719,7 @@ namespace MapoDb {
this.columnToAs400 = base.Columns["ToAs400"];
this.columnCommessaAs400 = base.Columns["CommessaAs400"];
this.columnPzPallet = base.Columns["PzPallet"];
this.columnOperSetup = base.Columns["OperSetup"];
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -1748,6 +1761,8 @@ namespace MapoDb {
base.Columns.Add(this.columnCommessaAs400);
this.columnPzPallet = new global::System.Data.DataColumn("PzPallet", typeof(int), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnPzPallet);
this.columnOperSetup = new global::System.Data.DataColumn("OperSetup", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnOperSetup);
this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
this.columnIdxODL}, true));
this.columnIdxODL.AutoIncrement = true;
@@ -1771,6 +1786,8 @@ namespace MapoDb {
this.columnCommessaAs400.AllowDBNull = false;
this.columnCommessaAs400.MaxLength = 50;
this.columnPzPallet.AllowDBNull = false;
this.columnOperSetup.ReadOnly = true;
this.columnOperSetup.MaxLength = 101;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -10116,6 +10133,22 @@ namespace MapoDb {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public string OperSetup {
get {
try {
return ((string)(this[this.tableODL.OperSetupColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("Il valore della colonna \'OperSetup\' nella tabella \'ODL\' è DBNull.", e);
}
}
set {
this[this.tableODL.OperSetupColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public bool IsIdxMacchinaNull() {
@@ -10235,6 +10268,18 @@ namespace MapoDb {
public void SetTCRichAttrNull() {
this[this.tableODL.TCRichAttrColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public bool IsOperSetupNull() {
return this.IsNull(this.tableODL.OperSetupColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")]
public void SetOperSetupNull() {
this[this.tableODL.OperSetupColumn] = global::System.Convert.DBNull;
}
}
/// <summary>
@@ -16244,6 +16289,7 @@ SELECT IdxMacchina, CodArticolo, DataOraRif, TCMedio, PzProd FROM TempiCicloRile
tableMapping.ColumnMappings.Add("ToAs400", "ToAs400");
tableMapping.ColumnMappings.Add("CommessaAs400", "CommessaAs400");
tableMapping.ColumnMappings.Add("PzPallet", "PzPallet");
tableMapping.ColumnMappings.Add("OperSetup", "OperSetup");
this._adapter.TableMappings.Add(tableMapping);
}