diff --git a/AppData/DS_Report.Designer.cs b/AppData/DS_Report.Designer.cs index 55c0bcb..ff9d154 100644 --- a/AppData/DS_Report.Designer.cs +++ b/AppData/DS_Report.Designer.cs @@ -4745,6 +4745,12 @@ namespace AppData { private global::System.Data.DataColumn columnReqDate; + private global::System.Data.DataColumn columnCartDtmx; + + private global::System.Data.DataColumn columnModelCod; + + private global::System.Data.DataColumn columnDestPlant; + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public stp_prt_SpecialPartDataTable() { @@ -4858,6 +4864,30 @@ namespace AppData { } } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn CartDtmxColumn { + get { + return this.columnCartDtmx; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn ModelCodColumn { + get { + return this.columnModelCod; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public global::System.Data.DataColumn DestPlantColumn { + get { + return this.columnDestPlant; + } + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Browsable(false)] @@ -4895,7 +4925,7 @@ namespace AppData { [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] - public stp_prt_SpecialPartRow Addstp_prt_SpecialPartRow(string DocID, string DocDtmx, string ItemExtCode, string ItemDesc, System.DateTime DueDate, int TotItem, string PathImageFull, string QRCodeBaseUrl, string OrdParent, System.DateTime ReqDate) { + public stp_prt_SpecialPartRow Addstp_prt_SpecialPartRow(string DocID, string DocDtmx, string ItemExtCode, string ItemDesc, System.DateTime DueDate, int TotItem, string PathImageFull, string QRCodeBaseUrl, string OrdParent, System.DateTime ReqDate, string CartDtmx, string ModelCod, string DestPlant) { stp_prt_SpecialPartRow rowstp_prt_SpecialPartRow = ((stp_prt_SpecialPartRow)(this.NewRow())); object[] columnValuesArray = new object[] { DocID, @@ -4907,7 +4937,10 @@ namespace AppData { PathImageFull, QRCodeBaseUrl, OrdParent, - ReqDate}; + ReqDate, + CartDtmx, + ModelCod, + DestPlant}; rowstp_prt_SpecialPartRow.ItemArray = columnValuesArray; this.Rows.Add(rowstp_prt_SpecialPartRow); return rowstp_prt_SpecialPartRow; @@ -4947,6 +4980,9 @@ namespace AppData { this.columnQRCodeBaseUrl = base.Columns["QRCodeBaseUrl"]; this.columnOrdParent = base.Columns["OrdParent"]; this.columnReqDate = base.Columns["ReqDate"]; + this.columnCartDtmx = base.Columns["CartDtmx"]; + this.columnModelCod = base.Columns["ModelCod"]; + this.columnDestPlant = base.Columns["DestPlant"]; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -4972,6 +5008,12 @@ namespace AppData { base.Columns.Add(this.columnOrdParent); this.columnReqDate = new global::System.Data.DataColumn("ReqDate", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnReqDate); + this.columnCartDtmx = new global::System.Data.DataColumn("CartDtmx", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnCartDtmx); + this.columnModelCod = new global::System.Data.DataColumn("ModelCod", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnModelCod); + this.columnDestPlant = new global::System.Data.DataColumn("DestPlant", typeof(string), null, global::System.Data.MappingType.Element); + base.Columns.Add(this.columnDestPlant); this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] { this.columnDocID}, true)); this.columnDocID.AllowDBNull = false; @@ -4993,6 +5035,11 @@ namespace AppData { this.columnOrdParent.AllowDBNull = false; this.columnOrdParent.MaxLength = 50; this.columnReqDate.AllowDBNull = false; + this.columnCartDtmx.MaxLength = 10; + this.columnModelCod.AllowDBNull = false; + this.columnModelCod.MaxLength = 50; + this.columnDestPlant.AllowDBNull = false; + this.columnDestPlant.MaxLength = 50; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -7290,6 +7337,44 @@ namespace AppData { } } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string CartDtmx { + get { + try { + return ((string)(this[this.tablestp_prt_SpecialPart.CartDtmxColumn])); + } + catch (global::System.InvalidCastException e) { + throw new global::System.Data.StrongTypingException("The value for column \'CartDtmx\' in table \'stp_prt_SpecialPart\' is DBNull.", e); + } + } + set { + this[this.tablestp_prt_SpecialPart.CartDtmxColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string ModelCod { + get { + return ((string)(this[this.tablestp_prt_SpecialPart.ModelCodColumn])); + } + set { + this[this.tablestp_prt_SpecialPart.ModelCodColumn] = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public string DestPlant { + get { + return ((string)(this[this.tablestp_prt_SpecialPart.DestPlantColumn])); + } + set { + this[this.tablestp_prt_SpecialPart.DestPlantColumn] = value; + } + } + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsDocDtmxNull() { @@ -7337,6 +7422,18 @@ namespace AppData { public void SetQRCodeBaseUrlNull() { this[this.tablestp_prt_SpecialPart.QRCodeBaseUrlColumn] = global::System.Convert.DBNull; } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public bool IsCartDtmxNull() { + return this.IsNull(this.tablestp_prt_SpecialPart.CartDtmxColumn); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] + public void SetCartDtmxNull() { + this[this.tablestp_prt_SpecialPart.CartDtmxColumn] = global::System.Convert.DBNull; + } } /// @@ -10869,6 +10966,9 @@ SELECT codPostazione, stampante, note FROM ElencoPostazioni WHERE (codPostazione tableMapping.ColumnMappings.Add("QRCodeBaseUrl", "QRCodeBaseUrl"); tableMapping.ColumnMappings.Add("OrdParent", "OrdParent"); tableMapping.ColumnMappings.Add("ReqDate", "ReqDate"); + tableMapping.ColumnMappings.Add("CartDtmx", "CartDtmx"); + tableMapping.ColumnMappings.Add("ModelCod", "ModelCod"); + tableMapping.ColumnMappings.Add("DestPlant", "DestPlant"); this._adapter.TableMappings.Add(tableMapping); } diff --git a/AppData/DS_Report.xsd b/AppData/DS_Report.xsd index c3b4c1a..455687d 100644 --- a/AppData/DS_Report.xsd +++ b/AppData/DS_Report.xsd @@ -539,6 +539,9 @@ SELECT codPostazione, stampante, note FROM ElencoPostazioni WHERE (codPostazione + + + @@ -1060,51 +1063,72 @@ SELECT codPostazione, stampante, note FROM ElencoPostazioni WHERE (codPostazione - + - + - + - - - + + + - + - + + + + + + + + + + + + + + + + + + + + + + + - diff --git a/AppData/DS_Report.xss b/AppData/DS_Report.xss index 8dc65e5..994ad10 100644 --- a/AppData/DS_Report.xss +++ b/AppData/DS_Report.xss @@ -4,7 +4,7 @@ Changes to this file may cause incorrect behavior and will be lost if the code is regenerated. --> - + @@ -17,7 +17,7 @@ - + \ No newline at end of file diff --git a/NKC_WF/Reports/Bin.rdlc b/NKC_WF/Reports/Bin.rdlc index 7e42b1d..864331a 100644 --- a/NKC_WF/Reports/Bin.rdlc +++ b/NKC_WF/Reports/Bin.rdlc @@ -224,7 +224,10 @@ ' https://qrcode.steamware.net/HOME/QR_site/JSON?val={'baseUrl':'{0}','parameters':['QRCODEVALUE']} -'https://qrcode.steamware.net/HOME/QR_site/JSON?val={'baseUrl':'http://10.74.82.219/StockMan/STEA/Items/Details/{0}?StockItemID={0}','parameters':['VARIABILE']} +'https://qrcode.steamware.net/HOME/QR_site/JSON?val={'baseUrl':'http://10.74.82.219/StockMan/STEA/Items/Details/{0}?StockItemID={0}','parameters':['VARIABILE']} + +' 2022 https locale +'https://iis01.egalware.com/zcode/HOME/QR_site/JSON?val={'baseUrl':'{0}','parameters':['QRCODEVALUE']} FitProportional 0.41131cm 5.44271in @@ -467,7 +470,7 @@ Integer - 615 + 7985 Bin ID diff --git a/NKC_WF/Reports/BunkGroup.rdlc b/NKC_WF/Reports/BunkGroup.rdlc index e18cc16..0ec6b5a 100644 --- a/NKC_WF/Reports/BunkGroup.rdlc +++ b/NKC_WF/Reports/BunkGroup.rdlc @@ -11,12 +11,187 @@ - 2.68907in + 2.86875in + + + + true + true + + + + + MATERIAL LIST FROM + + + + + + + + + TOP OF BUNK TO BOTTOM + + + + + + + StackIndex + 1.35098cm + 0.6in + 5.41082in + + + + + 0.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + 1.45138in + + + + + 0.3in + + + + + true + true + + + + + CONFIRMED BY + + + + + + + Textbox14 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.3in + + + + + true + true + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + After + + + + + + + 15.27086cm + 0.6in + 1.45138in + 1 + + + + + + true + 1.45669in + 0.00522in + 0.6in + 7.46353in + + 0.5pt + + + @@ -224,7 +399,7 @@ - CONFIRMED BY + BUNK BUILD BY @@ -521,56 +697,6 @@ - - true - true - - - - - MATERIAL LIST FROM - - - - - - - - - TOP OF BUNK TO BOTTOM - - - - - - - StackIndex - 3.75576cm - 0.01322cm - 0.59292in - 7.46354in - 1 - - 0.5pt - - 2pt - 2pt - 2pt - 2pt - - @@ -698,7 +824,7 @@ 0.1618in 0.00522in 1.1in - 5.65103in + 5.67187in 2 - 3.22532in + 3.37375in @@ -433,56 +433,6 @@ - - true - true - - - - - MATERIAL LIST FROM - - - - - - - - - TOP OF BUNK TO BOTTOM - - - - - - - StackIndex - 3.75576cm - 0.01322cm - 0.59292in - 7.46354in - 1 - - 0.5pt - - 2pt - 2pt - 2pt - 2pt - - @@ -610,8 +560,8 @@ 0.1618in 0.00522in 1.1in - 5.65103in - 2 + 5.67186in + 1 @@ -646,13 +596,189 @@ 6.07812in 1.1in 1.1in - 3 + 2 + + + + true + true + + + + + MATERIAL LIST FROM + + + + + + + + + TOP OF BUNK TO BOTTOM + + + + + + + StackIndex + 1.35098cm + 0.6in + 5.41082in + + + + + 0.5pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + 1.45138in + + + + + 0.3in + + + + + true + true + + + + + CONFIRMED BY + + + + + + + Textbox14 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.3in + + + + + true + true + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + After + + + + + + + 15.27086cm + 0.6in + 1.45138in + 1 + + + + + + true + 1.45079in + 0.00522in + 0.6in + 7.46353in + 3 + + 0.5pt + + + true @@ -763,6 +763,43 @@ + + true + true + + + + + =Replace(Fields!QRCodeBaseUrl.Value.ToString(),"QRCODEVALUE",Fields!CartDtmx.Value.ToString()) + +' la stringa nel parametro di default è https://qrcode.steamware.net/HOME/QR_site/JSON?val={'baseUrl':'{0}','parameters':\['QRCODEVALUE'\]} +' dove la \ prima della [ serve perchè è una stringa quindi si trasforma poi in +' https://qrcode.steamware.net/HOME/QR_site/JSON?val={'baseUrl':'{0}','parameters':['QRCODEVALUE']} + + +'https://qrcode.steamware.net/HOME/QR_site/JSON?val={'baseUrl':'http://10.74.82.219/StockMan/STEA/Items/Details/{0}?StockItemID={0}','parameters':['VARIABILE']} + + + 2pt + 2pt + 2pt + 2pt + + true @@ -32,216 +33,343 @@ - - true - true - - - - - =First(Fields!DocID.Value) - - - - - - - BinIndexChar - 0.45297cm - 1.7086in - 2.27083in - - - Top - 2pt - 2pt - 2pt - 2pt - - - - true - true - - - - - =First(Fields!DocID.Value) - - - - + + + + + + Textbox21 + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.55048in + + + + + true + true + + + + + =Fields!ReqDate.Value + + + + + + + ReqDate + + + + Black + + 1pt + + + Black + + 1pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.25in + + + + + true + true + + + + + Model + + + + + + + Textbox28 + + + + Black + + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kit Qty + + + + + + + Textbox34 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.53125in + + + + + true + true + + + + + =Fields!ModelCod.Value + + + + + + + ModelCod + + + + Black + + 1pt + + + Black + + 1pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + =First(Fields!TotItem.Value) + + + + + + + TotItem + + + + Black + + 1pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + Before + + + + stp_prt_SpecialPart + 0.12687in + 0.17161in + 1.58173in + 3.6005in + - 2pt - 2pt - 2pt - 2pt + + Black + + 1pt + + + Black + + 1pt + + + Black + + 1pt + + + Black + + 1pt + - - - true - true - - - - - =First(Fields!ItemExtCode.Value) - - - - - - 2pt - 2pt - 2pt - 2pt - - - - true - true - - - - - =First(Fields!TotItem.Value) - - - - - - - BinDtmxProc - 0.7in - 0.25in - 2.97049in - 2 - - - 2pt - 2pt - 2pt - 2pt - - - - true - true - - - - - =First(Fields!ItemDesc.Value) - - - - - - 2pt - 2pt - 2pt - 2pt - - - - true - true - - - - - =First(Fields!OrdParent.Value) - - - - - - 2pt - 2pt - 2pt - 2pt - - + true - 0.17833in - 2.40278in + 0.1638in + 3.28643in 1.7086in - 2.97049in - 1 + 3.92161in @@ -259,24 +387,338 @@ 'https://qrcode.steamware.net/HOME/QR_site/JSON?val={'baseUrl':'http://10.74.82.219/StockMan/STEA/Items/Details/{0}?StockItemID={0}','parameters':['VARIABILE']} FitProportional - 0.4113cm - 5.44271in - 1.725in - 1.93333in - 2 + 0.0938cm + 0.25691in + 2.6in + 2.6in + 1 + + true + true + + + + + =First(Fields!CartDtmx.Value) + + + + + + + CartDtmx + 2.66471in + 0.65256cm + 0.25in + 2.6in + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Fields!PathImageFull.Value + + + 2pt + 2pt + 2pt + 2pt + + true - 0.26993in - 0.00001cm - 2.08333in + 0.01993in + 0.00445cm + 2.91471in 7.37604in 1 + + + + + + true + + + + + + =First(Fields!DocID.Value) + + + + + + + DueDate + 3in + 0.02203cm + 2.96896in + 7.3622in + 2 + + + Top + 2pt + 2pt + 2pt + 2pt + + + + + + + 2.80208in + + + 2.90366in + + + + + 0.21875in + + + + + true + true + + + + + Part number + + + + + + + Textbox11 + + + + Black + + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Plant destination + + + + + + + Textbox12 + + + + Black + + 1pt + + + Black + + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.58681in + + + + + true + true + + + + + =Fields!ItemExtCode.Value + + + + + + + ItemExtCode + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DestPlant.Value + + + + + + + DestPlant + + + + Black + + 1pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + After + + + + + + + stp_prt_SpecialPart + 9.15in + 0.82in + 0.80556in + 5.70574in + 3 @@ -302,43 +744,7 @@ 1pt - - - true - true - - - - - =First(Fields!DueDate.Value) - - - - - - - DueDate - 2.49987in - 0.97917in - 7.3622in - 2 - - - 2pt - 2pt - 2pt - 2pt - - + true - 9.5in + 10in @@ -763,6 +763,43 @@ + + true + true + + + + + =Replace(Fields!QRCodeBaseUrl.Value.ToString(),"QRCODEVALUE",Fields!CartDtmx.Value.ToString()) + +' la stringa nel parametro di default è https://qrcode.steamware.net/HOME/QR_site/JSON?val={'baseUrl':'{0}','parameters':\['QRCODEVALUE'\]} +' dove la \ prima della [ serve perchè è una stringa quindi si trasforma poi in +' https://qrcode.steamware.net/HOME/QR_site/JSON?val={'baseUrl':'{0}','parameters':['QRCODEVALUE']} + + +'https://qrcode.steamware.net/HOME/QR_site/JSON?val={'baseUrl':'http://10.74.82.219/StockMan/STEA/Items/Details/{0}?StockItemID={0}','parameters':['VARIABILE']} + + + 2pt + 2pt + 2pt + 2pt + + true + + + + + true + true + + + + + ="C " & Fields!CartIndex.Value + + + + + + + 7.86978cm + 3.45027in + 7.46875in + 1 + + + Top + 2pt + 2pt + 1pt + 1pt + + + + + + + 4.57812in + + + 2.65104in + + + + + 0.28646in + + + + + true + true + + + + + Work Order Number + + + + + + + Textbox8 + + + + Black + + 1pt + + + Black + + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kit Qty + + + + + + + Textbox12 + + + + Black + + 1pt + + + Black + + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.68229in + + + + + true + true + + + + + =Fields!OrderExtCode.Value + + + + + + + OrderExtCode + + + + Black + + 1pt + + + Black + + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!TotKit.Value + + + + + + + TotKit + + + + Black + + + + Black + + + + Black + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.3125in + + + + + true + true + + + + + Parent Number + + + + + + + Textbox6 + + + + Black + + + + Black + + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Model + + + + + + + Textbox6 + + + + Black + + + + Black + + 1pt + + + Black + + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.68875in + + + + + true + true + + + + + =Fields!OrdParent.Value + + + + + + + OrdParent + + + + Black + + + Black + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!FamilyCode.Value + + + + + + + FamilyCode + + + + Black + + + + Black + + + Black + + 1pt + + + Black + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.3125in + + + + + true + true + + + + + ATO REQUIRED DATE + + + + + + + Textbox5 + + + + Black + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.68229in + + + + + true + true + + + + + =Fields!AtoReqDate.Value + + + + + + + Textbox10 + + + + Black + + + Black + + + Black + + Middle + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + + + + + + + + + + + After + + + + + + + + + + + + + + stp_prt_Cart + 6.58in + 0.125in + 2.96479in + 7.22916in + 2 + + + + Black + + 1pt + + + Black + + 1pt + + + Black + + 1pt + + + Black + + 1pt + + + + + true + true + + + + + =Fields!CartDtmx.Value.ToString() + + + + + + + Textbox3 + 2.77222in + 0.23438in + 0.25in + 2.80833in + 3 + + + 2pt + 2pt + 2pt + 2pt + + + + + + true + + + + + =First(Fields!DueDate.Value) + + + + + + + DueDate + 0.37375in + 0.77208in + 3.845in + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + MRP FRAMING KIT REQUIRED DATE + + + + + + + Textbox4 + 0.07167in + 0.30208in + 3.845in + 1 + + + + Black + + 1pt + + + Black + + 1pt + + + Black + + 1pt + + + Black + + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + true + 0.6782in + 3.50916in + 1.25in + 3.845in + 4 + + + + + + true + + + + 9.92027in + + textbox1 + Report1 + true + 0.36in + + + + + + + PlaceCod + =Fields!PlaceCod.Value + true + 0.27in + + + 0.5in + + textbox2 + Data Ora Rif + true + 0.22in + 1in + + + + + + + + textbox3 + Itm Prod + true + 0.22in + 1in + + + + + + + + textbox4 + Itm Scrap + true + 0.22in + 1in + + + + + + + + textbox5 + Min Green + true + 0.22in + 1in + + + + + 0.22in + + + +
+ + + + + + + + DataOraRif + =Fields!DataOraRif.Value + DataSet1 + true + 0.21in + 1in + + + + + + + + ItmProd + =Fields!ItmProd.Value + true + 0.21in + 1in + + + + + + + + ItmScrap + =Fields!ItmScrap.Value + true + 0.21in + 1in + + + + + + + + MinGreen + =Fields!MinGreen.Value + true + 0.21in + 1in + + + + + 0.21in + + +
+ + + 1in + + + 1in + + + 1in + + + 1in + + + DataSet1 + + + + + =Fields!DataOraRif.Value + + + + + =Fields!DataOraRif.Value + + +
+ + + + + + + + textbox6 + Total + true + 0.21in + 1in + + + + + + + + textbox7 + =Sum(Fields!ItmProd.Value) + true + 0.21in + 1in + + + + + + + + textbox8 + =Sum(Fields!ItmScrap.Value) + true + 0.21in + 1in + + + + + + + + textbox9 + =Sum(Fields!MinGreen.Value) + true + 0.21in + 1in + + + + + 0.21in + + +
+
+
+
+
+ + + =Fields!PlaceCod.Value + + true + + + + =Fields!PlaceCod.Value + + + 0.36in + DataSet1 +
+ + + en-US + 1in + 1in + 1in + 1in + 8.5in + 11in + + + + + PlaceCod + System.String + + + DataOraRif + System.DateTime + + + ItmProd + System.Int32 + + + ItmScrap + System.Int32 + + + MinGreen + System.Int64 + + + + Sauder_NKC + Text + EXEC prt.stp_prt_MachineProductionDateHour @dtstart, @DtEnd + true + + + =Parameters!dtstart.Value + + + =Parameters!DtEnd.Value + + + 0 + + + + + + String + dtstart + + + String + Dt End + + + \ No newline at end of file diff --git a/ReportProject/Sauder/Sauder.rptproj b/ReportProject/Sauder/Sauder.rptproj index 78e5789..329d62a 100644 --- a/ReportProject/Sauder/Sauder.rptproj +++ b/ReportProject/Sauder/Sauder.rptproj @@ -50,8 +50,8 @@ BunkList_ver_1.1.1.rdl - Cart.rdl - Cart.rdl + Cart_ver_1.4.1.rdl + Cart_ver_1.4.1.rdl Cart_ver_1.1.1.rdl @@ -105,6 +105,10 @@ Remnant.rdl Remnant.rdl + + SpecialParts_v_1.2.1.rdl + SpecialParts_v_1.2.1.rdl + SpecialParts_v_1.1.1.rdl SpecialParts_v_1.1.1.rdl @@ -113,6 +117,10 @@ SpecialParts.rdl SpecialParts.rdl + + Cart.rdl + Cart.rdl + diff --git a/ReportProject/Sauder/SpecialParts.rdl b/ReportProject/Sauder/SpecialParts.rdl index f421338..41a8ffb 100644 --- a/ReportProject/Sauder/SpecialParts.rdl +++ b/ReportProject/Sauder/SpecialParts.rdl @@ -6,12 +6,12 @@ - 7.37604in + 7.37954in - 8.86829in + 9.9907in @@ -21,9 +21,10 @@ External =Fields!PathImageFull.Value & First(Fields!ItemExtCode.Value, "list1_Index") & ".png" FitProportional - 3.6in - 132mm - 187mm + 6in + 0.02648cm + 78.24611mm + 187.17581mm @@ -32,216 +33,343 @@ - - true - true - - - - - =First(Fields!DocID.Value) - - - - - - - BinIndexChar - 0.45297cm - 1.7086in - 2.27083in - - - Top - 2pt - 2pt - 2pt - 2pt - - - - true - true - - - - - =First(Fields!DocID.Value) - - - - + + + + + + Textbox21 + + + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.55048in + + + + + true + true + + + + + =Fields!ReqDate.Value + + + + + + + ReqDate + + + + Black + + 1pt + + + Black + + 1pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + 2 + + + + + + + 0.25in + + + + + true + true + + + + + Model + + + + + + + Textbox28 + + + + Black + + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Kit Qty + + + + + + + Textbox34 + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.53125in + + + + + true + true + + + + + =Fields!ModelCod.Value + + + + + + + ModelCod + + + + Black + + 1pt + + + Black + + 1pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + =First(Fields!TotItem.Value) + + + + + + + TotItem + + + + Black + + 1pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + After + + + + + + Before + + + Before + + + + stp_prt_SpecialPart + 0.12687in + 0.17161in + 1.58173in + 3.6005in + - 2pt - 2pt - 2pt - 2pt + + Black + + 1pt + + + Black + + 1pt + + + Black + + 1pt + + + Black + + 1pt + - - - true - true - - - - - =First(Fields!ItemExtCode.Value) - - - - - - 2pt - 2pt - 2pt - 2pt - - - - true - true - - - - - =First(Fields!TotItem.Value) - - - - - - - BinDtmxProc - 0.7in - 0.25in - 2.97049in - 2 - - - 2pt - 2pt - 2pt - 2pt - - - - true - true - - - - - =First(Fields!ItemDesc.Value) - - - - - - 2pt - 2pt - 2pt - 2pt - - - - true - true - - - - - =First(Fields!OrdParent.Value) - - - - - - 2pt - 2pt - 2pt - 2pt - - + true - 0.17833in - 2.40278in + 0.1638in + 3.28643in 1.7086in - 2.97049in - 1 + 3.92161in @@ -259,24 +387,338 @@ 'https://qrcode.steamware.net/HOME/QR_site/JSON?val={'baseUrl':'http://10.74.82.219/StockMan/STEA/Items/Details/{0}?StockItemID={0}','parameters':['VARIABILE']} FitProportional - 0.4113cm - 5.44271in - 1.725in - 1.93333in - 2 + 0.0938cm + 0.25691in + 2.6in + 2.6in + 1 + + true + true + + + + + =First(Fields!CartDtmx.Value) + + + + + + + CartDtmx + 2.66471in + 0.65256cm + 0.25in + 2.6in + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Fields!PathImageFull.Value + + + 2pt + 2pt + 2pt + 2pt + + true - 0.26993in - 0.00001cm - 2.08333in + 0.01993in + 0.00445cm + 2.91471in 7.37604in 1 + + + + + + true + + + + + + =First(Fields!DocID.Value) + + + + + + + DueDate + 3in + 0.02203cm + 2.96896in + 7.3622in + 2 + + + Top + 2pt + 2pt + 2pt + 2pt + + + + + + + 2.80208in + + + 2.90366in + + + + + 0.21875in + + + + + true + true + + + + + Part number + + + + + + + Textbox11 + + + + Black + + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Plant destination + + + + + + + Textbox12 + + + + Black + + 1pt + + + Black + + 1pt + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 0.58681in + + + + + true + true + + + + + =Fields!ItemExtCode.Value + + + + + + + ItemExtCode + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!DestPlant.Value + + + + + + + DestPlant + + + + Black + + 1pt + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + After + + + + + + + stp_prt_SpecialPart + 9.15in + 0.82in + 0.80556in + 5.70574in + 3 @@ -302,43 +744,7 @@ 1pt - - - true - true - - - - - =First(Fields!DueDate.Value) - - - - - - - DueDate - 2.49987in - 0.97917in - 7.3622in - 2 - - - 2pt - 2pt - 2pt - 2pt - - + true - 9.5in + 10in + + + + + + + true + true + + + + + =First(Fields!DocID.Value) + + + + + + + BinIndexChar + 0.45297cm + 1.7086in + 2.27083in + + + Top + 2pt + 2pt + 2pt + 2pt + + + + + + true + true + + + + + =First(Fields!DocID.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =First(Fields!ItemExtCode.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =First(Fields!TotItem.Value) + + + + + + + BinDtmxProc + 0.7in + 0.25in + 2.97049in + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =First(Fields!ItemDesc.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =First(Fields!OrdParent.Value) + + + + + + 2pt + 2pt + 2pt + 2pt + + + + true + 0.17833in + 2.40278in + 1.7086in + 2.97049in + 1 + + + + + + External + =Replace(Fields!QRCodeBaseUrl.Value.ToString(),"QRCODEVALUE",Fields!DocDtmx.Value.ToString()) + +' la stringa nel Campo è https://qrcode.steamware.net/HOME/QR_site/JSON?val={'baseUrl':'{0}','parameters':\['QRCODEVALUE'\]} +' dove la \ prima della [ serve perchè è una stringa quindi si trasforma poi in +' https://qrcode.steamware.net/HOME/QR_site/JSON?val={'baseUrl':'{0}','parameters':['QRCODEVALUE']} + + +'https://qrcode.steamware.net/HOME/QR_site/JSON?val={'baseUrl':'http://10.74.82.219/StockMan/STEA/Items/Details/{0}?StockItemID={0}','parameters':['VARIABILE']} + FitProportional + 0.4113cm + 5.44271in + 1.725in + 1.93333in + 2 + + + + + + true + 0.26993in + 0.00001cm + 2.08333in + 7.37604in + 1 + + + + Black + + 1pt + + + Black + + 1pt + + + Black + + 1pt + + + Black + + 1pt + + + + + true + true + + + + + =First(Fields!DueDate.Value) + + + + + + + DueDate + 2.49987in + 0.97917in + 7.3622in + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + + + + + + + + + + + + + + + + + =Fields!ItemExtCode.Value + + + Output + true + + + + stp_prt_SpecialPart + + End + + 0.0093in + 0.00001cm + 8.86829in + 7.37604in + + + + 9.5in +