diff --git a/AppData/DS_App.Designer.cs b/AppData/DS_App.Designer.cs index 8417af1..00cf02f 100644 --- a/AppData/DS_App.Designer.cs +++ b/AppData/DS_App.Designer.cs @@ -4315,6 +4315,16 @@ namespace AppData { private global::System.Data.DataColumn columnPainted; + private global::System.Data.DataColumn columnKittingStart; + + private global::System.Data.DataColumn columnKittingEnd; + + private global::System.Data.DataColumn columnKitting; + + private global::System.Data.DataColumn columnKitted; + + private global::System.Data.DataColumn columnItemExtCode; + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] public BinsDataTable() { @@ -4444,6 +4454,46 @@ namespace AppData { } } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public global::System.Data.DataColumn KittingStartColumn { + get { + return this.columnKittingStart; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public global::System.Data.DataColumn KittingEndColumn { + get { + return this.columnKittingEnd; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public global::System.Data.DataColumn KittingColumn { + get { + return this.columnKitting; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public global::System.Data.DataColumn KittedColumn { + get { + return this.columnKitted; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public global::System.Data.DataColumn ItemExtCodeColumn { + get { + return this.columnItemExtCode; + } + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] [global::System.ComponentModel.Browsable(false)] @@ -4481,7 +4531,23 @@ namespace AppData { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] - public BinsRow AddBinsRow(int BinIndex, string BinDtmx, string BinDtmxProc, System.DateTime CreationDate, int BatchID, int TotItem, int TotItemLoad, System.DateTime PaintDate, int Fillup, int Complete, int Painted) { + public BinsRow AddBinsRow( + int BinIndex, + string BinDtmx, + string BinDtmxProc, + System.DateTime CreationDate, + int BatchID, + int TotItem, + int TotItemLoad, + System.DateTime PaintDate, + int Fillup, + int Complete, + int Painted, + System.DateTime KittingStart, + System.DateTime KittingEnd, + int Kitting, + int Kitted, + string ItemExtCode) { BinsRow rowBinsRow = ((BinsRow)(this.NewRow())); object[] columnValuesArray = new object[] { null, @@ -4495,7 +4561,12 @@ namespace AppData { PaintDate, Fillup, Complete, - Painted}; + Painted, + KittingStart, + KittingEnd, + Kitting, + Kitted, + ItemExtCode}; rowBinsRow.ItemArray = columnValuesArray; this.Rows.Add(rowBinsRow); return rowBinsRow; @@ -4537,6 +4608,11 @@ namespace AppData { this.columnFillup = base.Columns["Fillup"]; this.columnComplete = base.Columns["Complete"]; this.columnPainted = base.Columns["Painted"]; + this.columnKittingStart = base.Columns["KittingStart"]; + this.columnKittingEnd = base.Columns["KittingEnd"]; + this.columnKitting = base.Columns["Kitting"]; + this.columnKitted = base.Columns["Kitted"]; + this.columnItemExtCode = base.Columns["ItemExtCode"]; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -4566,6 +4642,16 @@ namespace AppData { base.Columns.Add(this.columnComplete); this.columnPainted = new global::System.Data.DataColumn("Painted", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnPainted); + this.columnKittingStart = new global::System.Data.DataColumn("KittingStart", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnKittingStart); + this.columnKittingEnd = new global::System.Data.DataColumn("KittingEnd", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnKittingEnd); + this.columnKitting = new global::System.Data.DataColumn("Kitting", typeof(int), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnKitting); + this.columnKitted = new global::System.Data.DataColumn("Kitted", typeof(int), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnKitted); + this.columnItemExtCode = new global::System.Data.DataColumn("ItemExtCode", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnItemExtCode); this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] { this.columnBinID}, true)); this.columnBinID.AutoIncrement = true; @@ -4588,6 +4674,10 @@ namespace AppData { this.columnFillup.ReadOnly = true; this.columnComplete.ReadOnly = true; this.columnPainted.ReadOnly = true; + this.columnKitting.ReadOnly = true; + this.columnKitted.ReadOnly = true; + this.columnItemExtCode.AllowDBNull = false; + this.columnItemExtCode.MaxLength = 250; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -11398,6 +11488,81 @@ namespace AppData { } } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public System.DateTime KittingStart { + get { + try { + return ((global::System.DateTime)(this[this.tableBins.KittingStartColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("Il valore della colonna \'KittingStart\' nella tabella \'Bins\' è DBNull.", e); + } + } + set { + this[this.tableBins.KittingStartColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public System.DateTime KittingEnd { + get { + try { + return ((global::System.DateTime)(this[this.tableBins.KittingEndColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("Il valore della colonna \'KittingEnd\' nella tabella \'Bins\' è DBNull.", e); + } + } + set { + this[this.tableBins.KittingEndColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public int Kitting { + get { + try { + return ((int)(this[this.tableBins.KittingColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("Il valore della colonna \'Kitting\' nella tabella \'Bins\' è DBNull.", e); + } + } + set { + this[this.tableBins.KittingColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public int Kitted { + get { + try { + return ((int)(this[this.tableBins.KittedColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("Il valore della colonna \'Kitted\' nella tabella \'Bins\' è DBNull.", e); + } + } + set { + this[this.tableBins.KittedColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public string ItemExtCode { + get { + return ((string)(this[this.tableBins.ItemExtCodeColumn])); + } + set { + this[this.tableBins.ItemExtCodeColumn] = value; + } + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] public bool IsBinDtmxNull() { @@ -11482,6 +11647,54 @@ namespace AppData { this[this.tableBins.PaintedColumn] = global::System.Convert.DBNull; } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public bool IsKittingStartNull() { + return this.IsNull(this.tableBins.KittingStartColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public void SetKittingStartNull() { + this[this.tableBins.KittingStartColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public bool IsKittingEndNull() { + return this.IsNull(this.tableBins.KittingEndColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public void SetKittingEndNull() { + this[this.tableBins.KittingEndColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public bool IsKittingNull() { + return this.IsNull(this.tableBins.KittingColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public void SetKittingNull() { + this[this.tableBins.KittingColumn] = global::System.Convert.DBNull; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public bool IsKittedNull() { + return this.IsNull(this.tableBins.KittedColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] + public void SetKittedNull() { + this[this.tableBins.KittedColumn] = global::System.Convert.DBNull; + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] public BinListRow[] GetBinListRows() { @@ -18050,6 +18263,11 @@ SELECT MatID, MatExtCode, MatDesc, ApprovDate, ApprovUser, L_mm, W_mm, T_mm, Mat tableMapping.ColumnMappings.Add("Fillup", "Fillup"); tableMapping.ColumnMappings.Add("Complete", "Complete"); tableMapping.ColumnMappings.Add("Painted", "Painted"); + tableMapping.ColumnMappings.Add("KittingStart", "KittingStart"); + tableMapping.ColumnMappings.Add("KittingEnd", "KittingEnd"); + tableMapping.ColumnMappings.Add("Kitting", "Kitting"); + tableMapping.ColumnMappings.Add("Kitted", "Kitted"); + tableMapping.ColumnMappings.Add("ItemExtCode", "ItemExtCode"); this._adapter.TableMappings.Add(tableMapping); } @@ -18094,6 +18312,7 @@ SELECT MatID, MatExtCode, MatDesc, ApprovDate, ApprovUser, L_mm, W_mm, T_mm, Mat this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Fillup", global::System.Data.SqlDbType.Bit, 1, global::System.Data.ParameterDirection.Input, 1, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Complete", global::System.Data.SqlDbType.Bit, 1, global::System.Data.ParameterDirection.Input, 1, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Painted", global::System.Data.SqlDbType.Bit, 1, global::System.Data.ParameterDirection.Input, 1, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); + this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OnKitStation", global::System.Data.SqlDbType.Bit, 1, global::System.Data.ParameterDirection.Input, 1, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[5] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[5].Connection = this.Connection; this._commandCollection[5].CommandText = "dbo.stp_BIN_insert"; @@ -18188,7 +18407,7 @@ SELECT MatID, MatExtCode, MatDesc, ApprovDate, ApprovUser, L_mm, W_mm, T_mm, Mat [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)] - public virtual DS_App.BinsDataTable getByStatus(global::System.Nullable Fillup, global::System.Nullable Complete, global::System.Nullable Painted) { + public virtual DS_App.BinsDataTable getByStatus(global::System.Nullable Fillup, global::System.Nullable Complete, global::System.Nullable Painted, global::System.Nullable OnKitStation) { this.Adapter.SelectCommand = this.CommandCollection[4]; if ((Fillup.HasValue == true)) { this.Adapter.SelectCommand.Parameters[1].Value = ((bool)(Fillup.Value)); @@ -18208,6 +18427,12 @@ SELECT MatID, MatExtCode, MatDesc, ApprovDate, ApprovUser, L_mm, W_mm, T_mm, Mat else { this.Adapter.SelectCommand.Parameters[3].Value = global::System.DBNull.Value; } + if ((OnKitStation.HasValue == true)) { + this.Adapter.SelectCommand.Parameters[4].Value = ((bool)(OnKitStation.Value)); + } + else { + this.Adapter.SelectCommand.Parameters[4].Value = global::System.DBNull.Value; + } DS_App.BinsDataTable dataTable = new DS_App.BinsDataTable(); this.Adapter.Fill(dataTable); return dataTable; diff --git a/AppData/DS_App.xsd b/AppData/DS_App.xsd index 30c38a4..b382232 100644 --- a/AppData/DS_App.xsd +++ b/AppData/DS_App.xsd @@ -1076,6 +1076,11 @@ FROM v_BinDetail + + + + + @@ -1120,6 +1125,7 @@ FROM v_BinDetail + @@ -2520,6 +2526,17 @@ SELECT RemnantID, BatchID, MatID, SheetID, DimX, DimY, Available FROM Remnants W + + + + + + + + + + + diff --git a/AppData/DS_App.xss b/AppData/DS_App.xss index 2453ac3..d0edd2b 100644 --- a/AppData/DS_App.xss +++ b/AppData/DS_App.xss @@ -4,31 +4,31 @@ Changes to this file may cause incorrect behavior and will be lost if the code is regenerated. --> - + - - - + + + - + - - - + + + - - - - - - - - - - - + + + + + + + + + + + @@ -115,7 +115,7 @@ - + 1129 @@ -127,7 +127,7 @@ - + 1380 @@ -139,7 +139,7 @@ - + 1161 @@ -151,7 +151,7 @@ - + 131 @@ -163,7 +163,7 @@ - + 352 diff --git a/NKC_WF/NKC_WF.csproj b/NKC_WF/NKC_WF.csproj index 1dd512a..5857bee 100644 --- a/NKC_WF/NKC_WF.csproj +++ b/NKC_WF/NKC_WF.csproj @@ -390,6 +390,8 @@ + + @@ -881,6 +883,20 @@ cmp_kitting.ascx + + cmp_kittingBin.ascx + ASPXCodeBehind + + + cmp_kittingBin.ascx + + + cmp_kittingCart.ascx + ASPXCodeBehind + + + cmp_kittingCart.ascx + cmp_login.ascx ASPXCodeBehind diff --git a/NKC_WF/WebUserControls/cmp_kitting.ascx b/NKC_WF/WebUserControls/cmp_kitting.ascx index c8e499f..3624a5c 100644 --- a/NKC_WF/WebUserControls/cmp_kitting.ascx +++ b/NKC_WF/WebUserControls/cmp_kitting.ascx @@ -1,15 +1,29 @@ <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_kitting.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_kitting" %> +<%@ Register Src="~/WebUserControls/cmp_kittingBin.ascx" TagPrefix="uc1" TagName="cmp_kittingBin" %> +<%@ Register Src="~/WebUserControls/cmp_kittingCart.ascx" TagPrefix="uc1" TagName="cmp_kittingCart" %> -
-
-

BIN LIST

- elenco BIN (small) + + +
+

<%: traduci("BinList") %>

+
+
+
+ +
+
-
-
-

CART LIST

- elenco cart + +
+

<%: traduci("CartList") %>

+
+
+
+ +
+
-
\ No newline at end of file +
+ diff --git a/NKC_WF/WebUserControls/cmp_kitting.ascx.cs b/NKC_WF/WebUserControls/cmp_kitting.ascx.cs index 9ca5066..7db889e 100644 --- a/NKC_WF/WebUserControls/cmp_kitting.ascx.cs +++ b/NKC_WF/WebUserControls/cmp_kitting.ascx.cs @@ -7,7 +7,7 @@ using System.Web.UI.WebControls; namespace NKC_WF.WebUserControls { - public partial class cmp_kitting : System.Web.UI.UserControl + public partial class cmp_kitting : BaseUserControl { protected void Page_Load(object sender, EventArgs e) { diff --git a/NKC_WF/WebUserControls/cmp_kitting.ascx.designer.cs b/NKC_WF/WebUserControls/cmp_kitting.ascx.designer.cs index 63e5551..28dc97e 100644 --- a/NKC_WF/WebUserControls/cmp_kitting.ascx.designer.cs +++ b/NKC_WF/WebUserControls/cmp_kitting.ascx.designer.cs @@ -13,5 +13,23 @@ namespace NKC_WF.WebUserControls public partial class cmp_kitting { + + /// + /// Controllo cmp_kittingBin. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::NKC_WF.WebUserControls.cmp_kittingBin cmp_kittingBin; + + /// + /// Controllo cmp_kittingCart. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::NKC_WF.WebUserControls.cmp_kittingCart cmp_kittingCart; } } diff --git a/NKC_WF/WebUserControls/cmp_kittingBin.ascx b/NKC_WF/WebUserControls/cmp_kittingBin.ascx new file mode 100644 index 0000000..9f21fb5 --- /dev/null +++ b/NKC_WF/WebUserControls/cmp_kittingBin.ascx @@ -0,0 +1,62 @@ +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_kittingBin.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_kittingBin" %> + + +
+ + +
+ +
+
+
+ + + + + + + + +
diff --git a/NKC_WF/WebUserControls/cmp_kittingBin.ascx.cs b/NKC_WF/WebUserControls/cmp_kittingBin.ascx.cs new file mode 100644 index 0000000..997a71e --- /dev/null +++ b/NKC_WF/WebUserControls/cmp_kittingBin.ascx.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace NKC_WF.WebUserControls +{ + public partial class cmp_kittingBin : System.Web.UI.UserControl + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/NKC_WF/WebUserControls/cmp_kittingBin.ascx.designer.cs b/NKC_WF/WebUserControls/cmp_kittingBin.ascx.designer.cs new file mode 100644 index 0000000..a49f5a3 --- /dev/null +++ b/NKC_WF/WebUserControls/cmp_kittingBin.ascx.designer.cs @@ -0,0 +1,35 @@ +//------------------------------------------------------------------------------ +// +// Codice generato da uno strumento. +// +// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se +// il codice viene rigenerato. +// +//------------------------------------------------------------------------------ + +namespace NKC_WF.WebUserControls +{ + + + public partial class cmp_kittingBin + { + + /// + /// Controllo repBins. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.Repeater repBins; + + /// + /// Controllo ods. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.ObjectDataSource ods; + } +} diff --git a/NKC_WF/WebUserControls/cmp_kittingCart.ascx b/NKC_WF/WebUserControls/cmp_kittingCart.ascx new file mode 100644 index 0000000..88a8f4a --- /dev/null +++ b/NKC_WF/WebUserControls/cmp_kittingCart.ascx @@ -0,0 +1,68 @@ +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_kittingCart.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_kittingCart" %> + + +REPEATER elenco cart + + +
+
+ +
+ + + +
+ + +<%-- + + + + + +--%> \ No newline at end of file diff --git a/NKC_WF/WebUserControls/cmp_kittingCart.ascx.cs b/NKC_WF/WebUserControls/cmp_kittingCart.ascx.cs new file mode 100644 index 0000000..9bdeefe --- /dev/null +++ b/NKC_WF/WebUserControls/cmp_kittingCart.ascx.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace NKC_WF.WebUserControls +{ + public partial class cmp_kittingCart : System.Web.UI.UserControl + { + protected void Page_Load(object sender, EventArgs e) + { + + } + + public string getCss(object val) + { + return ""; + } + public string getTitle(object val) + { + return ""; + } + } +} \ No newline at end of file diff --git a/NKC_WF/WebUserControls/cmp_kittingCart.ascx.designer.cs b/NKC_WF/WebUserControls/cmp_kittingCart.ascx.designer.cs new file mode 100644 index 0000000..57ee132 --- /dev/null +++ b/NKC_WF/WebUserControls/cmp_kittingCart.ascx.designer.cs @@ -0,0 +1,98 @@ +//------------------------------------------------------------------------------ +// +// Codice generato da uno strumento. +// +// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se +// il codice viene rigenerato. +// +//------------------------------------------------------------------------------ + +namespace NKC_WF.WebUserControls +{ + + + public partial class cmp_kittingCart + { + + /// + /// Controllo divBlock. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.HtmlControls.HtmlGenericControl divBlock; + + /// + /// Controllo lblTitle. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.Label lblTitle; + + /// + /// Controllo MatExtCodeLabel. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.Label MatExtCodeLabel; + + /// + /// Controllo Label2. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.Label Label2; + + /// + /// Controllo Label1. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.Label Label1; + + /// + /// Controllo lblPartsTot. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.Label lblPartsTot; + + /// + /// Controllo lblWait. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.Label lblWait; + + /// + /// Controllo Label3. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.Label Label3; + + /// + /// Controllo Label4. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.Label Label4; + } +} diff --git a/NKC_WF/WebUserControls/cmp_paint_bins.ascx b/NKC_WF/WebUserControls/cmp_paint_bins.ascx index d2ee434..536d4f4 100644 --- a/NKC_WF/WebUserControls/cmp_paint_bins.ascx +++ b/NKC_WF/WebUserControls/cmp_paint_bins.ascx @@ -41,6 +41,7 @@ + diff --git a/NKC_WF/site/Kitting.aspx b/NKC_WF/site/Kitting.aspx index ead353d..86470d4 100644 --- a/NKC_WF/site/Kitting.aspx +++ b/NKC_WF/site/Kitting.aspx @@ -3,5 +3,7 @@ <%@ Register Src="~/WebUserControls/cmp_kitting.ascx" TagPrefix="uc1" TagName="cmp_kitting" %> - +
+ +