Merge branch 'develop'

This commit is contained in:
Samuele E. Locatelli
2020-02-18 19:10:55 +01:00
15 changed files with 637 additions and 38 deletions
+228 -3
View File
@@ -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<bool> Fillup, global::System.Nullable<bool> Complete, global::System.Nullable<bool> Painted) {
public virtual DS_App.BinsDataTable getByStatus(global::System.Nullable<bool> Fillup, global::System.Nullable<bool> Complete, global::System.Nullable<bool> Painted, global::System.Nullable<bool> 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;
+17
View File
@@ -1076,6 +1076,11 @@ FROM v_BinDetail</CommandText>
<Mapping SourceColumn="Fillup" DataSetColumn="Fillup" />
<Mapping SourceColumn="Complete" DataSetColumn="Complete" />
<Mapping SourceColumn="Painted" DataSetColumn="Painted" />
<Mapping SourceColumn="KittingStart" DataSetColumn="KittingStart" />
<Mapping SourceColumn="KittingEnd" DataSetColumn="KittingEnd" />
<Mapping SourceColumn="Kitting" DataSetColumn="Kitting" />
<Mapping SourceColumn="Kitted" DataSetColumn="Kitted" />
<Mapping SourceColumn="ItemExtCode" DataSetColumn="ItemExtCode" />
</Mappings>
<Sources>
<DbSource ConnectionRef="Sauder_NKCConnectionString (Settings)" DbObjectName="Sauder_NKC.dbo.stp_BIN_getByBatch" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByBatch" GetMethodModifier="Public" GetMethodName="getByBatch" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByBatch" UserSourceName="getByBatch">
@@ -1120,6 +1125,7 @@ FROM v_BinDetail</CommandText>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@Fillup" Precision="1" ProviderType="Bit" Scale="0" Size="1" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@Complete" Precision="1" ProviderType="Bit" Scale="0" Size="1" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@Painted" Precision="1" ProviderType="Bit" Scale="0" Size="1" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@OnKitStation" Precision="1" ProviderType="Bit" Scale="0" Size="1" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
@@ -2520,6 +2526,17 @@ SELECT RemnantID, BatchID, MatID, SheetID, DimX, DimY, Available FROM Remnants W
<xs:element name="Fillup" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnFillup" msprop:Generator_ColumnPropNameInRow="Fillup" msprop:Generator_ColumnPropNameInTable="FillupColumn" msprop:Generator_UserColumnName="Fillup" type="xs:int" minOccurs="0" />
<xs:element name="Complete" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnComplete" msprop:Generator_ColumnPropNameInRow="Complete" msprop:Generator_ColumnPropNameInTable="CompleteColumn" msprop:Generator_UserColumnName="Complete" type="xs:int" minOccurs="0" />
<xs:element name="Painted" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnPainted" msprop:Generator_ColumnPropNameInRow="Painted" msprop:Generator_ColumnPropNameInTable="PaintedColumn" msprop:Generator_UserColumnName="Painted" type="xs:int" minOccurs="0" />
<xs:element name="KittingStart" msprop:Generator_ColumnVarNameInTable="columnKittingStart" msprop:Generator_ColumnPropNameInRow="KittingStart" msprop:Generator_ColumnPropNameInTable="KittingStartColumn" msprop:Generator_UserColumnName="KittingStart" type="xs:dateTime" minOccurs="0" />
<xs:element name="KittingEnd" msprop:Generator_ColumnVarNameInTable="columnKittingEnd" msprop:Generator_ColumnPropNameInRow="KittingEnd" msprop:Generator_ColumnPropNameInTable="KittingEndColumn" msprop:Generator_UserColumnName="KittingEnd" type="xs:dateTime" minOccurs="0" />
<xs:element name="Kitting" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnKitting" msprop:Generator_ColumnPropNameInRow="Kitting" msprop:Generator_ColumnPropNameInTable="KittingColumn" msprop:Generator_UserColumnName="Kitting" type="xs:int" minOccurs="0" />
<xs:element name="Kitted" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnKitted" msprop:Generator_ColumnPropNameInRow="Kitted" msprop:Generator_ColumnPropNameInTable="KittedColumn" msprop:Generator_UserColumnName="Kitted" type="xs:int" minOccurs="0" />
<xs:element name="ItemExtCode" msprop:Generator_ColumnVarNameInTable="columnItemExtCode" msprop:Generator_ColumnPropNameInRow="ItemExtCode" msprop:Generator_ColumnPropNameInTable="ItemExtCodeColumn" msprop:Generator_UserColumnName="ItemExtCode">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
+24 -24
View File
@@ -4,31 +4,31 @@
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
</autogenerated>-->
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-16" ViewPortY="211" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="290" ViewPortY="9" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:BatchList" ZOrder="5" X="251" Y="375" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:StackList" ZOrder="17" X="584" Y="890" Height="343" Width="268" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="216" />
<Shape ID="DesignTable:SheetList" ZOrder="1" X="240" Y="793" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:BatchList" ZOrder="6" X="251" Y="375" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:StackList" ZOrder="18" X="584" Y="890" Height="343" Width="268" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="216" />
<Shape ID="DesignTable:SheetList" ZOrder="2" X="240" Y="793" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:OrderList" ZOrder="26" X="352" Y="29" Height="324" Width="198" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:BatchReqList" ZOrder="35" X="101" Y="100" Height="115" Width="220" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:ItemList" ZOrder="15" X="861" Y="19" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:ItemList" ZOrder="16" X="861" Y="19" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:Materials" ZOrder="33" X="1197" Y="37" Height="248" Width="198" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
<Shape ID="DesignTable:Bins" ZOrder="23" X="1265" Y="529" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:Carts" ZOrder="7" X="600" Y="340" Height="286" Width="187" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
<Shape ID="DesignTable:OfflineOrderList" ZOrder="2" X="939" Y="907" Height="267" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
<Shape ID="DesignTable:Bins" ZOrder="1" X="1265" Y="529" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:Carts" ZOrder="8" X="600" Y="340" Height="286" Width="187" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
<Shape ID="DesignTable:OfflineOrderList" ZOrder="3" X="939" Y="907" Height="267" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
<Shape ID="DesignTable:OffOrd2Item" ZOrder="31" X="1031" Y="660" Height="134" Width="219" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:KitList" ZOrder="29" X="604" Y="84" Height="229" Width="184" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
<Shape ID="DesignTable:Nesting" ZOrder="19" X="871" Y="458" Height="153" Width="228" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:ImportLog" ZOrder="18" X="576" Y="628" Height="248" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
<Shape ID="DesignTable:BinList" ZOrder="22" X="1264" Y="323" Height="134" Width="216" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:FinalKit" ZOrder="11" X="23" Y="457" Height="172" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:Order2FinalKit" ZOrder="14" X="13" Y="240" Height="134" Width="234" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:Counters" ZOrder="10" X="16" Y="706" Height="172" Width="196" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:ErrorsLog" ZOrder="9" X="-6" Y="928" Height="248" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
<Shape ID="DesignTable:ItemValidation" ZOrder="4" X="83" Y="1185" Height="172" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:PartValidPareto" ZOrder="8" X="365" Y="1187" Height="153" Width="236" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:UnloadStats" ZOrder="6" X="639" Y="1236" Height="172" Width="215" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
<Shape ID="DesignTable:Remnants" ZOrder="3" X="912" Y="1188" Height="248" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
<Shape ID="DesignTable:Nesting" ZOrder="20" X="871" Y="458" Height="153" Width="228" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:ImportLog" ZOrder="19" X="576" Y="628" Height="248" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
<Shape ID="DesignTable:BinList" ZOrder="23" X="1264" Y="323" Height="134" Width="216" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:FinalKit" ZOrder="12" X="23" Y="457" Height="172" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:Order2FinalKit" ZOrder="15" X="13" Y="240" Height="134" Width="234" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:Counters" ZOrder="11" X="16" Y="706" Height="172" Width="196" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:ErrorsLog" ZOrder="10" X="-6" Y="928" Height="248" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
<Shape ID="DesignTable:ItemValidation" ZOrder="5" X="83" Y="1185" Height="172" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:PartValidPareto" ZOrder="9" X="365" Y="1187" Height="153" Width="236" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:UnloadStats" ZOrder="7" X="639" Y="1236" Height="172" Width="215" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
<Shape ID="DesignTable:Remnants" ZOrder="4" X="912" Y="1188" Height="248" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
</Shapes>
<Connectors>
<Connector ID="DesignRelation:FK_BatchReqList_OrderList" ZOrder="34" LineWidth="11">
@@ -115,7 +115,7 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_OffOrd2Item_ItemList" ZOrder="16" LineWidth="11">
<Connector ID="DesignRelation:FK_OffOrd2Item_ItemList" ZOrder="17" LineWidth="11">
<RoutePoints>
<Point>
<X>1129</X>
@@ -127,7 +127,7 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_BinList_Bins" ZOrder="21" LineWidth="11">
<Connector ID="DesignRelation:FK_BinList_Bins" ZOrder="22" LineWidth="11">
<RoutePoints>
<Point>
<X>1380</X>
@@ -139,7 +139,7 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_BinList_ItemList" ZOrder="20" LineWidth="11">
<Connector ID="DesignRelation:FK_BinList_ItemList" ZOrder="21" LineWidth="11">
<RoutePoints>
<Point>
<X>1161</X>
@@ -151,7 +151,7 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_Order2FinalKit_FinalKit" ZOrder="13" LineWidth="11">
<Connector ID="DesignRelation:FK_Order2FinalKit_FinalKit" ZOrder="14" LineWidth="11">
<RoutePoints>
<Point>
<X>131</X>
@@ -163,7 +163,7 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_Order2FinalKit_OrderList" ZOrder="12" LineWidth="11">
<Connector ID="DesignRelation:FK_Order2FinalKit_OrderList" ZOrder="13" LineWidth="11">
<RoutePoints>
<Point>
<X>352</X>
+16
View File
@@ -390,6 +390,8 @@
<Content Include="WebUserControls\cmp_kitImpCheck.ascx" />
<Content Include="WebUserControls\cmp_kitList.ascx" />
<Content Include="WebUserControls\cmp_kitting.ascx" />
<Content Include="WebUserControls\cmp_kittingBin.ascx" />
<Content Include="WebUserControls\cmp_kittingCart.ascx" />
<Content Include="WebUserControls\cmp_login.ascx" />
<Content Include="WebUserControls\cmp_ML_ShDet.ascx" />
<Content Include="WebUserControls\cmp_MU_carts.ascx" />
@@ -881,6 +883,20 @@
<Compile Include="WebUserControls\cmp_kitting.ascx.designer.cs">
<DependentUpon>cmp_kitting.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\cmp_kittingBin.ascx.cs">
<DependentUpon>cmp_kittingBin.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\cmp_kittingBin.ascx.designer.cs">
<DependentUpon>cmp_kittingBin.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\cmp_kittingCart.ascx.cs">
<DependentUpon>cmp_kittingCart.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\cmp_kittingCart.ascx.designer.cs">
<DependentUpon>cmp_kittingCart.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\cmp_login.ascx.cs">
<DependentUpon>cmp_login.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
+23 -9
View File
@@ -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" %>
<div class="row border border-info rounded m-2 text-center">
<div class="col-12">
<h2>BIN LIST</h2>
elenco BIN (small)
<div class="card text-center" style="width: 100%;">
<h3 class="card-header bg-primary text-uppercase text-light"><%: traduci("BinList") %></h3>
<div class="card-body py-1">
<div class="row">
<div class="col-12 mb-2">
<uc1:cmp_kittingBin runat="server" id="cmp_kittingBin" />
</div>
</div>
</div>
</div>
<div class="row border border-success rounded m-2 text-center">
<div class="col-12">
<h2>CART LIST</h2>
elenco cart
<div class="card text-center my-2" style="width: 100%;">
<h3 class="card-header bg-success text-uppercase"><%: traduci("CartList") %></h3>
<div class="card-body py-1">
<div class="row">
<div class="col-12 mb-2">
<uc1:cmp_kittingCart runat="server" id="cmp_kittingCart" />
</div>
</div>
</div>
</div>
</div>
+1 -1
View File
@@ -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)
{
+18
View File
@@ -13,5 +13,23 @@ namespace NKC_WF.WebUserControls
public partial class cmp_kitting
{
/// <summary>
/// Controllo cmp_kittingBin.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::NKC_WF.WebUserControls.cmp_kittingBin cmp_kittingBin;
/// <summary>
/// Controllo cmp_kittingCart.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::NKC_WF.WebUserControls.cmp_kittingCart cmp_kittingCart;
}
}
@@ -0,0 +1,62 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_kittingBin.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_kittingBin" %>
<div class="row">
<asp:Repeater runat="server" ID="repBins" DataSourceID="ods">
<ItemTemplate>
<div class="col-2">
<div runat="server" id="divBlock" class="row small alert border-thick px-0 alert-primary border border-primary" role="alert">
<div class="col-12">
<h5>
<asp:Label runat="server" ID="lblTitle" Text='<%# $"<b>B{Eval("BinIndex")}</b> | {Eval("BinDtmx")}" %>' CssClass="text-uppercase" /></h5>
</div>
<div class="col-4 text-left">
CNC:
</div>
<div class="col-8 text-right">
<b>
<asp:Label ID="MatExtCodeLabel" runat="server" Text='<%# Eval("CreationDate","{0:yyyy-MM-dd HH:mm}") %>' /></b>
</div>
<div class="col-4 text-left">
Paint:
</div>
<div class="col-8 text-right">
<b>
<asp:Label ID="Label2" runat="server" Text='<%# Eval("PaintDate","{0:yyyy-MM-dd HH:mm}") %>' /></b>
</div>
<div class="col-4 text-left">
On Kitting:
</div>
<div class="col-8 text-right">
<b>
<asp:Label ID="Label3" runat="server" Text='<%# Eval("KittingStart","{0:yyyy-MM-dd HH:mm}") %>' /></b>
</div>
<div class="col-4 text-left">
Part:
</div>
<div class="col-8 text-right">
<b>
<asp:Label ID="Label1" runat="server" Text='<%# Eval("ItemExtCode") %>' /></b>
</div>
<div class="col-4 text-left">
Qty:
</div>
<div class="col-8 text-right"><asp:Label ID="lblTotItem" runat="server" Text='<%# Eval("TotItem") %>' />
/
<b>
<asp:Label ID="lblTotItemLoad" runat="server" Text='<%# Eval("TotItemLoad") %>' /></b>
</div>
</div>
</div>
</ItemTemplate>
</asp:Repeater>
<asp:ObjectDataSource runat="server" ID="ods" OldValuesParameterFormatString="original_{0}" SelectMethod="getByStatus" TypeName="AppData.DS_AppTableAdapters.BinsTableAdapter">
<SelectParameters>
<asp:Parameter DefaultValue="True" Name="Fillup" Type="Boolean" />
<asp:Parameter DefaultValue="True" Name="Complete" Type="Boolean" />
<asp:Parameter DefaultValue="True" Name="Painted" Type="Boolean" />
<asp:Parameter DefaultValue="True" Name="OnKitStation" Type="Boolean" />
</SelectParameters>
</asp:ObjectDataSource>
</div>
@@ -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)
{
}
}
}
+35
View File
@@ -0,0 +1,35 @@
//------------------------------------------------------------------------------
// <generato automaticamente>
// Codice generato da uno strumento.
//
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
// il codice viene rigenerato.
// </generato automaticamente>
//------------------------------------------------------------------------------
namespace NKC_WF.WebUserControls
{
public partial class cmp_kittingBin
{
/// <summary>
/// Controllo repBins.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.Repeater repBins;
/// <summary>
/// Controllo ods.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.ObjectDataSource ods;
}
}
@@ -0,0 +1,68 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_kittingCart.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_kittingCart" %>
REPEATER elenco cart
<div class="row">
<div class="col-2">
<div runat="server" id="divBlock" class="row small alert border-thick px-0 alert-success border border-success" role="alert">
<div class="col-12">
<h5>
<asp:Label runat="server" ID="lblTitle" Text="C1 CR000002A4" CssClass="text-uppercase" /></h5>
</div>
<div class="col-4 text-left">
Order:
</div>
<div class="col-8 text-right">
<b>
<asp:Label ID="MatExtCodeLabel" runat="server" Text='<%# Eval("OrdExtCode") %>' />81564.1</b>
</div>
<div class="col-4 text-left">
Model:
</div>
<div class="col-8 text-right">
<b>
<asp:Label ID="Label2" runat="server" Text='<%# Eval("KitNum") %>' />65Wb21</b>
</div>
<div class="col-4 text-left">
Kit #:
</div>
<div class="col-8 text-right">
<b>
<asp:Label ID="Label1" runat="server" Text='<%# Eval("KitNum") %>' />7</b>
</div>
<div class="col-4 text-left">
Parts #:
</div>
<div class="col-8 text-right">
<b>
<asp:Label ID="lblPartsTot" runat="server" Text='<%# Eval("QtaTot") %>' />50</b>
</div>
<div class="col-4 text-left">
Waiting: <asp:Label runat="server" ID="lblWait" CssClass="text-warning font-weight-bold" Text="5" />
</div>
<div class="col-4 text-center">
Ready: <asp:Label runat="server" ID="Label3" CssClass="text-primary font-weight-bold" Text="15" />
</div>
<div class="col-4 text-right">
Cart: <asp:Label runat="server" ID="Label4" CssClass="text-success font-weight-bold" Text="30" />
</div>
</div>
</div>
</div>
<%--<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByMLStatus" TypeName="AppData.DS_AppTableAdapters.SheetListTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="hfBatchID" DefaultValue="0" Name="BatchID" PropertyName="Value" Type="Int32" />
<asp:ControlParameter ControlID="hfStatus" DefaultValue="-1" Name="ShStatusStart" PropertyName="Value" Type="Int32" />
<asp:ControlParameter ControlID="hfStatusEnd" DefaultValue="-1" Name="ShStatusEnd" PropertyName="Value" Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>--%>
@@ -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 "";
}
}
}
+98
View File
@@ -0,0 +1,98 @@
//------------------------------------------------------------------------------
// <generato automaticamente>
// Codice generato da uno strumento.
//
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
// il codice viene rigenerato.
// </generato automaticamente>
//------------------------------------------------------------------------------
namespace NKC_WF.WebUserControls
{
public partial class cmp_kittingCart
{
/// <summary>
/// Controllo divBlock.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl divBlock;
/// <summary>
/// Controllo lblTitle.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblTitle;
/// <summary>
/// Controllo MatExtCodeLabel.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.Label MatExtCodeLabel;
/// <summary>
/// Controllo Label2.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.Label Label2;
/// <summary>
/// Controllo Label1.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.Label Label1;
/// <summary>
/// Controllo lblPartsTot.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblPartsTot;
/// <summary>
/// Controllo lblWait.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblWait;
/// <summary>
/// Controllo Label3.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.Label Label3;
/// <summary>
/// Controllo Label4.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.Label Label4;
}
}
@@ -41,6 +41,7 @@
<asp:Parameter DefaultValue="True" Name="Fillup" Type="Boolean" />
<asp:ControlParameter ControlID="hfShowComplete" DefaultValue="false" Name="Complete" PropertyName="Value" Type="Boolean" />
<asp:ControlParameter ControlID="hfShowPainted" DefaultValue="false" Name="Painted" PropertyName="Value" Type="Boolean" />
<asp:Parameter DefaultValue="False" Name="OnKitStation" Type="Boolean" />
</SelectParameters>
</asp:ObjectDataSource>
<asp:HiddenField ID="hfBatchID" runat="server" />
+3 -1
View File
@@ -3,5 +3,7 @@
<%@ Register Src="~/WebUserControls/cmp_kitting.ascx" TagPrefix="uc1" TagName="cmp_kitting" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<uc1:cmp_kitting runat="server" id="cmp_kitting" />
<div class="m-2">
<uc1:cmp_kitting runat="server" ID="cmp_kitting" />
</div>
</asp:Content>