diff --git a/AppData/DS_Report.Designer.cs b/AppData/DS_Report.Designer.cs
index 8be44be..55c0bcb 100644
--- a/AppData/DS_Report.Designer.cs
+++ b/AppData/DS_Report.Designer.cs
@@ -4741,6 +4741,10 @@ namespace AppData {
private global::System.Data.DataColumn columnQRCodeBaseUrl;
+ private global::System.Data.DataColumn columnOrdParent;
+
+ private global::System.Data.DataColumn columnReqDate;
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public stp_prt_SpecialPartDataTable() {
@@ -4838,6 +4842,22 @@ namespace AppData {
}
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
+ public global::System.Data.DataColumn OrdParentColumn {
+ get {
+ return this.columnOrdParent;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
+ public global::System.Data.DataColumn ReqDateColumn {
+ get {
+ return this.columnReqDate;
+ }
+ }
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
[global::System.ComponentModel.Browsable(false)]
@@ -4875,7 +4895,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) {
+ 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) {
stp_prt_SpecialPartRow rowstp_prt_SpecialPartRow = ((stp_prt_SpecialPartRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
DocID,
@@ -4885,7 +4905,9 @@ namespace AppData {
DueDate,
TotItem,
PathImageFull,
- QRCodeBaseUrl};
+ QRCodeBaseUrl,
+ OrdParent,
+ ReqDate};
rowstp_prt_SpecialPartRow.ItemArray = columnValuesArray;
this.Rows.Add(rowstp_prt_SpecialPartRow);
return rowstp_prt_SpecialPartRow;
@@ -4923,6 +4945,8 @@ namespace AppData {
this.columnTotItem = base.Columns["TotItem"];
this.columnPathImageFull = base.Columns["PathImageFull"];
this.columnQRCodeBaseUrl = base.Columns["QRCodeBaseUrl"];
+ this.columnOrdParent = base.Columns["OrdParent"];
+ this.columnReqDate = base.Columns["ReqDate"];
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -4944,6 +4968,10 @@ namespace AppData {
base.Columns.Add(this.columnPathImageFull);
this.columnQRCodeBaseUrl = new global::System.Data.DataColumn("QRCodeBaseUrl", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnQRCodeBaseUrl);
+ this.columnOrdParent = new global::System.Data.DataColumn("OrdParent", typeof(string), null, global::System.Data.MappingType.Element);
+ 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.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
this.columnDocID}, true));
this.columnDocID.AllowDBNull = false;
@@ -4962,6 +4990,9 @@ namespace AppData {
this.columnPathImageFull.MaxLength = 4000;
this.columnQRCodeBaseUrl.ReadOnly = true;
this.columnQRCodeBaseUrl.MaxLength = 400;
+ this.columnOrdParent.AllowDBNull = false;
+ this.columnOrdParent.MaxLength = 50;
+ this.columnReqDate.AllowDBNull = false;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -7237,6 +7268,28 @@ namespace AppData {
}
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
+ public string OrdParent {
+ get {
+ return ((string)(this[this.tablestp_prt_SpecialPart.OrdParentColumn]));
+ }
+ set {
+ this[this.tablestp_prt_SpecialPart.OrdParentColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
+ public System.DateTime ReqDate {
+ get {
+ return ((global::System.DateTime)(this[this.tablestp_prt_SpecialPart.ReqDateColumn]));
+ }
+ set {
+ this[this.tablestp_prt_SpecialPart.ReqDateColumn] = value;
+ }
+ }
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool IsDocDtmxNull() {
@@ -10814,6 +10867,8 @@ SELECT codPostazione, stampante, note FROM ElencoPostazioni WHERE (codPostazione
tableMapping.ColumnMappings.Add("TotItem", "TotItem");
tableMapping.ColumnMappings.Add("PathImageFull", "PathImageFull");
tableMapping.ColumnMappings.Add("QRCodeBaseUrl", "QRCodeBaseUrl");
+ tableMapping.ColumnMappings.Add("OrdParent", "OrdParent");
+ tableMapping.ColumnMappings.Add("ReqDate", "ReqDate");
this._adapter.TableMappings.Add(tableMapping);
}
diff --git a/AppData/DS_Report.xsd b/AppData/DS_Report.xsd
index bc58736..c3b4c1a 100644
--- a/AppData/DS_Report.xsd
+++ b/AppData/DS_Report.xsd
@@ -537,6 +537,8 @@ SELECT codPostazione, stampante, note FROM ElencoPostazioni WHERE (codPostazione
+
+
@@ -1048,53 +1050,61 @@ SELECT codPostazione, stampante, note FROM ElencoPostazioni WHERE (codPostazione
-
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
-
+
+
+
+
+
+
+
+
+
diff --git a/AppData/DS_Report.xss b/AppData/DS_Report.xss
index b965dc6..8dc65e5 100644
--- a/AppData/DS_Report.xss
+++ b/AppData/DS_Report.xss
@@ -4,20 +4,20 @@
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
-->
-
+
-
+
-
-
-
-
-
+
+
+
+
+
\ No newline at end of file