전자실 자료 입력화면 dialog 방식 해제
This commit is contained in:
46
SubProject/FPJ0000/dsReport.Designer.cs
generated
46
SubProject/FPJ0000/dsReport.Designer.cs
generated
@@ -1640,6 +1640,8 @@ namespace FPJ0000 {
|
||||
|
||||
private global::System.Data.DataColumn columnamt;
|
||||
|
||||
private global::System.Data.DataColumn columnamtn;
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||
public PartSummaryDataTable() {
|
||||
@@ -1705,6 +1707,14 @@ namespace FPJ0000 {
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||
public global::System.Data.DataColumn amtnColumn {
|
||||
get {
|
||||
return this.columnamtn;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||
[global::System.ComponentModel.Browsable(false)]
|
||||
@@ -1742,13 +1752,14 @@ namespace FPJ0000 {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||
public PartSummaryRow AddPartSummaryRow(string ItemGroup, string option1, string ItemSupply, decimal amt) {
|
||||
public PartSummaryRow AddPartSummaryRow(string ItemGroup, string option1, string ItemSupply, decimal amt, decimal amtn) {
|
||||
PartSummaryRow rowPartSummaryRow = ((PartSummaryRow)(this.NewRow()));
|
||||
object[] columnValuesArray = new object[] {
|
||||
ItemGroup,
|
||||
option1,
|
||||
ItemSupply,
|
||||
amt};
|
||||
amt,
|
||||
amtn};
|
||||
rowPartSummaryRow.ItemArray = columnValuesArray;
|
||||
this.Rows.Add(rowPartSummaryRow);
|
||||
return rowPartSummaryRow;
|
||||
@@ -1775,6 +1786,7 @@ namespace FPJ0000 {
|
||||
this.columnoption1 = base.Columns["option1"];
|
||||
this.columnItemSupply = base.Columns["ItemSupply"];
|
||||
this.columnamt = base.Columns["amt"];
|
||||
this.columnamtn = base.Columns["amtn"];
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -1788,6 +1800,8 @@ namespace FPJ0000 {
|
||||
base.Columns.Add(this.columnItemSupply);
|
||||
this.columnamt = new global::System.Data.DataColumn("amt", typeof(decimal), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnamt);
|
||||
this.columnamtn = new global::System.Data.DataColumn("amtn", typeof(decimal), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnamtn);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -2415,6 +2429,22 @@ namespace FPJ0000 {
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||
public decimal amtn {
|
||||
get {
|
||||
if (this.IsamtnNull()) {
|
||||
return 0m;
|
||||
}
|
||||
else {
|
||||
return ((decimal)(this[this.tablePartSummary.amtnColumn]));
|
||||
}
|
||||
}
|
||||
set {
|
||||
this[this.tablePartSummary.amtnColumn] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||
public bool IsItemGroupNull() {
|
||||
@@ -2462,6 +2492,18 @@ namespace FPJ0000 {
|
||||
public void SetamtNull() {
|
||||
this[this.tablePartSummary.amtColumn] = global::System.Convert.DBNull;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||
public bool IsamtnNull() {
|
||||
return this.IsNull(this.tablePartSummary.amtnColumn);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||
public void SetamtnNull() {
|
||||
this[this.tablePartSummary.amtnColumn] = global::System.Convert.DBNull;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user