휴가이력현황 report -> spread.net

This commit is contained in:
chi
2024-03-04 08:29:22 +09:00
parent 0546ec2723
commit 1c960d23ea
22 changed files with 1368 additions and 660 deletions

View File

@@ -414,6 +414,12 @@ namespace FBS0000 {
private global::System.Data.DataColumn columnDrDay;
private global::System.Data.DataColumn columnsdate;
private global::System.Data.DataColumn columnedate;
private global::System.Data.DataColumn columniwol;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public holydataDataTable() {
@@ -519,6 +525,30 @@ namespace FBS0000 {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public global::System.Data.DataColumn sdateColumn {
get {
return this.columnsdate;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public global::System.Data.DataColumn edateColumn {
get {
return this.columnedate;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public global::System.Data.DataColumn iwolColumn {
get {
return this.columniwol;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
[global::System.ComponentModel.Browsable(false)]
@@ -556,7 +586,7 @@ namespace FBS0000 {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public holydataRow AddholydataRow(string uid, string cate, double DrTime, double CrTime, string gcode, string Process, string name, double CrDay, double DrDay) {
public holydataRow AddholydataRow(string uid, string cate, double DrTime, double CrTime, string gcode, string Process, string name, double CrDay, double DrDay, System.DateTime sdate, System.DateTime edate, bool iwol) {
holydataRow rowholydataRow = ((holydataRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
uid,
@@ -567,7 +597,10 @@ namespace FBS0000 {
Process,
name,
CrDay,
DrDay};
DrDay,
sdate,
edate,
iwol};
rowholydataRow.ItemArray = columnValuesArray;
this.Rows.Add(rowholydataRow);
return rowholydataRow;
@@ -599,6 +632,9 @@ namespace FBS0000 {
this.columnname = base.Columns["name"];
this.columnCrDay = base.Columns["CrDay"];
this.columnDrDay = base.Columns["DrDay"];
this.columnsdate = base.Columns["sdate"];
this.columnedate = base.Columns["edate"];
this.columniwol = base.Columns["iwol"];
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -622,6 +658,12 @@ namespace FBS0000 {
base.Columns.Add(this.columnCrDay);
this.columnDrDay = new global::System.Data.DataColumn("DrDay", typeof(double), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnDrDay);
this.columnsdate = new global::System.Data.DataColumn("sdate", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnsdate);
this.columnedate = new global::System.Data.DataColumn("edate", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnedate);
this.columniwol = new global::System.Data.DataColumn("iwol", typeof(bool), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columniwol);
this.columnuid.MaxLength = 20;
this.columncate.MaxLength = 20;
this.columngcode.AllowDBNull = false;
@@ -785,6 +827,8 @@ namespace FBS0000 {
private global::System.Data.DataColumn columnjan;
private global::System.Data.DataColumn columniwol;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public Holydata_DayDataTable() :
@@ -923,6 +967,14 @@ namespace FBS0000 {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public global::System.Data.DataColumn iwolColumn {
get {
return this.columniwol;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
[global::System.ComponentModel.Browsable(false)]
@@ -960,7 +1012,7 @@ namespace FBS0000 {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public Holydata_DayRow AddHolydata_DayRow(System.DateTime sdate, string uid, string cate, double jun, double Dr, double Cr, string contents, string gcode, string name, string Process, double jan) {
public Holydata_DayRow AddHolydata_DayRow(System.DateTime sdate, string uid, string cate, double jun, double Dr, double Cr, string contents, string gcode, string name, string Process, double jan, bool iwol) {
Holydata_DayRow rowHolydata_DayRow = ((Holydata_DayRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
null,
@@ -974,7 +1026,8 @@ namespace FBS0000 {
gcode,
name,
Process,
jan};
jan,
iwol};
rowHolydata_DayRow.ItemArray = columnValuesArray;
this.Rows.Add(rowHolydata_DayRow);
return rowHolydata_DayRow;
@@ -982,7 +1035,7 @@ namespace FBS0000 {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public Holydata_DayRow AddHolydata_DayRow(System.DateTime sdate, string uid, string cate, double jun, double Dr, double Cr, string contents, string gcode, string name, string Process) {
public Holydata_DayRow AddHolydata_DayRow(System.DateTime sdate, string uid, string cate, double jun, double Dr, double Cr, string contents, string gcode, string name, string Process, bool iwol) {
Holydata_DayRow rowHolydata_DayRow = ((Holydata_DayRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
null,
@@ -996,7 +1049,8 @@ namespace FBS0000 {
gcode,
name,
Process,
null};
null,
iwol};
rowHolydata_DayRow.ItemArray = columnValuesArray;
this.Rows.Add(rowHolydata_DayRow);
return rowHolydata_DayRow;
@@ -1038,6 +1092,7 @@ namespace FBS0000 {
this.columnname = base.Columns["name"];
this.columnProcess = base.Columns["Process"];
this.columnjan = base.Columns["jan"];
this.columniwol = base.Columns["iwol"];
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -1067,6 +1122,8 @@ namespace FBS0000 {
base.Columns.Add(this.columnProcess);
this.columnjan = new global::System.Data.DataColumn("jan", typeof(double), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnjan);
this.columniwol = new global::System.Data.DataColumn("iwol", typeof(bool), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columniwol);
this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
this.columnidx}, true));
this.columnidx.AutoIncrement = true;
@@ -1245,6 +1302,8 @@ namespace FBS0000 {
private global::System.Data.DataColumn columnProcess;
private global::System.Data.DataColumn columniwol;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public Holydata_TimeDataTable() {
@@ -1366,6 +1425,14 @@ namespace FBS0000 {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public global::System.Data.DataColumn iwolColumn {
get {
return this.columniwol;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
[global::System.ComponentModel.Browsable(false)]
@@ -1403,7 +1470,7 @@ namespace FBS0000 {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public Holydata_TimeRow AddHolydata_TimeRow(string gcode, string name, System.DateTime sdate, string uid, string cate, double jun, double Dr, double Cr, string contents, string Process) {
public Holydata_TimeRow AddHolydata_TimeRow(string gcode, string name, System.DateTime sdate, string uid, string cate, double jun, double Dr, double Cr, string contents, string Process, bool iwol) {
Holydata_TimeRow rowHolydata_TimeRow = ((Holydata_TimeRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
gcode,
@@ -1416,7 +1483,8 @@ namespace FBS0000 {
Dr,
Cr,
contents,
Process};
Process,
iwol};
rowHolydata_TimeRow.ItemArray = columnValuesArray;
this.Rows.Add(rowHolydata_TimeRow);
return rowHolydata_TimeRow;
@@ -1457,6 +1525,7 @@ namespace FBS0000 {
this.columnCr = base.Columns["Cr"];
this.columncontents = base.Columns["contents"];
this.columnProcess = base.Columns["Process"];
this.columniwol = base.Columns["iwol"];
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -1484,6 +1553,8 @@ namespace FBS0000 {
base.Columns.Add(this.columncontents);
this.columnProcess = new global::System.Data.DataColumn("Process", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnProcess);
this.columniwol = new global::System.Data.DataColumn("iwol", typeof(bool), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columniwol);
this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
this.columnidx}, true));
this.columngcode.AllowDBNull = false;
@@ -1651,6 +1722,8 @@ namespace FBS0000 {
private global::System.Data.DataColumn columnrate;
private global::System.Data.DataColumn columniwol;
private global::System.Data.DataColumn columndrday;
private global::System.Data.DataColumn columncrday;
@@ -1661,6 +1734,10 @@ namespace FBS0000 {
private global::System.Data.DataColumn columnaddday;
private global::System.Data.DataColumn columnorderno;
private global::System.Data.DataColumn columniwolday;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public holydatasumDataTable() {
@@ -1766,6 +1843,14 @@ namespace FBS0000 {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public global::System.Data.DataColumn iwolColumn {
get {
return this.columniwol;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public global::System.Data.DataColumn drdayColumn {
@@ -1806,6 +1891,22 @@ namespace FBS0000 {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public global::System.Data.DataColumn ordernoColumn {
get {
return this.columnorderno;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public global::System.Data.DataColumn iwoldayColumn {
get {
return this.columniwolday;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
[global::System.ComponentModel.Browsable(false)]
@@ -1843,7 +1944,24 @@ namespace FBS0000 {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public holydatasumRow AddholydatasumRow(string uid, string uname, string process, string cate, double dr, double cr, double jan, double add, double rate, double drday, double crday, double janday, double rateday, double addday) {
public holydatasumRow AddholydatasumRow(
string uid,
string uname,
string process,
string cate,
double dr,
double cr,
double jan,
double add,
double rate,
double iwol,
double drday,
double crday,
double janday,
double rateday,
double addday,
int orderno,
double iwolday) {
holydatasumRow rowholydatasumRow = ((holydatasumRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
uid,
@@ -1855,11 +1973,14 @@ namespace FBS0000 {
jan,
add,
rate,
iwol,
drday,
crday,
janday,
rateday,
addday};
addday,
orderno,
iwolday};
rowholydatasumRow.ItemArray = columnValuesArray;
this.Rows.Add(rowholydatasumRow);
return rowholydatasumRow;
@@ -1899,11 +2020,14 @@ namespace FBS0000 {
this.columnjan = base.Columns["jan"];
this.columnadd = base.Columns["add"];
this.columnrate = base.Columns["rate"];
this.columniwol = base.Columns["iwol"];
this.columndrday = base.Columns["drday"];
this.columncrday = base.Columns["crday"];
this.columnjanday = base.Columns["janday"];
this.columnrateday = base.Columns["rateday"];
this.columnaddday = base.Columns["addday"];
this.columnorderno = base.Columns["orderno"];
this.columniwolday = base.Columns["iwolday"];
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -1927,6 +2051,8 @@ namespace FBS0000 {
base.Columns.Add(this.columnadd);
this.columnrate = new global::System.Data.DataColumn("rate", typeof(double), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnrate);
this.columniwol = new global::System.Data.DataColumn("iwol", typeof(double), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columniwol);
this.columndrday = new global::System.Data.DataColumn("drday", typeof(double), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columndrday);
this.columncrday = new global::System.Data.DataColumn("crday", typeof(double), null, global::System.Data.MappingType.Element);
@@ -1937,6 +2063,10 @@ namespace FBS0000 {
base.Columns.Add(this.columnrateday);
this.columnaddday = new global::System.Data.DataColumn("addday", typeof(double), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnaddday);
this.columnorderno = new global::System.Data.DataColumn("orderno", typeof(int), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnorderno);
this.columniwolday = new global::System.Data.DataColumn("iwolday", typeof(double), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columniwolday);
this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
this.columnuid,
this.columncate}, true));
@@ -2221,6 +2351,54 @@ namespace FBS0000 {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public System.DateTime sdate {
get {
try {
return ((global::System.DateTime)(this[this.tableholydata.sdateColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("\'holydata\' 테이블의 \'sdate\' 열의 값이 DBNull입니다.", e);
}
}
set {
this[this.tableholydata.sdateColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public System.DateTime edate {
get {
try {
return ((global::System.DateTime)(this[this.tableholydata.edateColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("\'holydata\' 테이블의 \'edate\' 열의 값이 DBNull입니다.", e);
}
}
set {
this[this.tableholydata.edateColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool iwol {
get {
if (this.IsiwolNull()) {
return false;
}
else {
return ((bool)(this[this.tableholydata.iwolColumn]));
}
}
set {
this[this.tableholydata.iwolColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool IsuidNull() {
@@ -2316,6 +2494,42 @@ namespace FBS0000 {
public void SetDrDayNull() {
this[this.tableholydata.DrDayColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool IssdateNull() {
return this.IsNull(this.tableholydata.sdateColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public void SetsdateNull() {
this[this.tableholydata.sdateColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool IsedateNull() {
return this.IsNull(this.tableholydata.edateColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public void SetedateNull() {
this[this.tableholydata.edateColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool IsiwolNull() {
return this.IsNull(this.tableholydata.iwolColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public void SetiwolNull() {
this[this.tableholydata.iwolColumn] = global::System.Convert.DBNull;
}
}
/// <summary>
@@ -2514,6 +2728,22 @@ namespace FBS0000 {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool iwol {
get {
try {
return ((bool)(this[this.tableHolydata_Day.iwolColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("\'Holydata_Day\' 테이블의 \'iwol\' 열의 값이 DBNull입니다.", e);
}
}
set {
this[this.tableHolydata_Day.iwolColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool IssdateNull() {
@@ -2633,6 +2863,18 @@ namespace FBS0000 {
public void SetjanNull() {
this[this.tableHolydata_Day.janColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool IsiwolNull() {
return this.IsNull(this.tableHolydata_Day.iwolColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public void SetiwolNull() {
this[this.tableHolydata_Day.iwolColumn] = global::System.Convert.DBNull;
}
}
/// <summary>
@@ -2815,6 +3057,22 @@ namespace FBS0000 {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool iwol {
get {
try {
return ((bool)(this[this.tableHolydata_Time.iwolColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("\'Holydata_Time\' 테이블의 \'iwol\' 열의 값이 DBNull입니다.", e);
}
}
set {
this[this.tableHolydata_Time.iwolColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool IsnameNull() {
@@ -2922,6 +3180,18 @@ namespace FBS0000 {
public void SetProcessNull() {
this[this.tableHolydata_Time.ProcessColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool IsiwolNull() {
return this.IsNull(this.tableHolydata_Time.iwolColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public void SetiwolNull() {
this[this.tableHolydata_Time.iwolColumn] = global::System.Convert.DBNull;
}
}
/// <summary>
@@ -3072,6 +3342,22 @@ namespace FBS0000 {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public double iwol {
get {
try {
return ((double)(this[this.tableholydatasum.iwolColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("\'holydatasum\' 테이블의 \'iwol\' 열의 값이 DBNull입니다.", e);
}
}
set {
this[this.tableholydatasum.iwolColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public double drday {
@@ -3152,6 +3438,38 @@ namespace FBS0000 {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public int orderno {
get {
if (this.IsordernoNull()) {
return 1;
}
else {
return ((int)(this[this.tableholydatasum.ordernoColumn]));
}
}
set {
this[this.tableholydatasum.ordernoColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public double iwolday {
get {
if (this.IsiwoldayNull()) {
return 0D;
}
else {
return ((double)(this[this.tableholydatasum.iwoldayColumn]));
}
}
set {
this[this.tableholydatasum.iwoldayColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool IsunameNull() {
@@ -3236,6 +3554,18 @@ namespace FBS0000 {
this[this.tableholydatasum.rateColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool IsiwolNull() {
return this.IsNull(this.tableholydatasum.iwolColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public void SetiwolNull() {
this[this.tableholydatasum.iwolColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool IsdrdayNull() {
@@ -3295,6 +3625,30 @@ namespace FBS0000 {
public void SetadddayNull() {
this[this.tableholydatasum.adddayColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool IsordernoNull() {
return this.IsNull(this.tableholydatasum.ordernoColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public void SetordernoNull() {
this[this.tableholydatasum.ordernoColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public bool IsiwoldayNull() {
return this.IsNull(this.tableholydatasum.iwoldayColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
public void SetiwoldayNull() {
this[this.tableholydatasum.iwoldayColumn] = global::System.Convert.DBNull;
}
}
/// <summary>
@@ -3567,6 +3921,9 @@ namespace FBS0000.dsReportTableAdapters {
tableMapping.ColumnMappings.Add("name", "name");
tableMapping.ColumnMappings.Add("CrDay", "CrDay");
tableMapping.ColumnMappings.Add("DrDay", "DrDay");
tableMapping.ColumnMappings.Add("sdate", "sdate");
tableMapping.ColumnMappings.Add("edate", "edate");
tableMapping.ColumnMappings.Add("iwol", "iwol");
this._adapter.TableMappings.Add(tableMapping);
}
@@ -3584,7 +3941,7 @@ namespace FBS0000.dsReportTableAdapters {
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[0].Connection = this.Connection;
this._commandCollection[0].CommandText = @"SELECT Holyday.uid, Users.name, Holyday.cate, (CASE cate WHEN '외출' THEN 1 ELSE Holyday.term END) AS CrDay, Holyday.termDr AS DrDay, Holyday.DrTime, Holyday.CrTime, Holyday.gcode,
EETGW_GroupUser.Process
EETGW_GroupUser.Process, Holyday.sdate, Holyday.edate, Holyday.iwol
FROM Users WITH (NOLOCK) INNER JOIN
Holyday ON Users.id = Holyday.uid LEFT OUTER JOIN
EETGW_GroupUser WITH (NOLOCK) ON Holyday.uid = EETGW_GroupUser.uid AND Holyday.gcode = EETGW_GroupUser.gcode
@@ -3790,6 +4147,7 @@ ORDER BY Holyday.uid, CrDay";
tableMapping.ColumnMappings.Add("gcode", "gcode");
tableMapping.ColumnMappings.Add("name", "name");
tableMapping.ColumnMappings.Add("Process", "Process");
tableMapping.ColumnMappings.Add("iwol", "iwol");
this._adapter.TableMappings.Add(tableMapping);
this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
this._adapter.DeleteCommand.Connection = this.Connection;
@@ -3845,7 +4203,7 @@ SELECT idx, sdate, uid, cate, dbo.GetKuntaeJan_Day(gcode, uid, sdate, idx - 1) A
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[0].Connection = this.Connection;
this._commandCollection[0].CommandText = @"SELECT Holyday.gcode, Holyday.idx, Holyday.sdate, Holyday.uid, Holyday.cate, dbo.GetKuntaeJan_Day(Holyday.gcode, Holyday.uid, Holyday.sdate, Holyday.idx - 1) AS jun, Holyday.termDr AS Dr,
Holyday.term AS Cr, Holyday.contents, Users.name, EETGW_GroupUser.Process
Holyday.term AS Cr, Holyday.contents, Users.name, EETGW_GroupUser.Process, Holyday.iwol
FROM Holyday WITH (NOLOCK) LEFT OUTER JOIN
EETGW_GroupUser WITH (NOLOCK) ON Holyday.gcode = EETGW_GroupUser.gcode AND Holyday.uid = EETGW_GroupUser.uid LEFT OUTER JOIN
Users ON Holyday.uid = Users.id
@@ -4227,6 +4585,7 @@ ORDER BY Holyday.sdate, Holyday.idx";
tableMapping.ColumnMappings.Add("Cr", "Cr");
tableMapping.ColumnMappings.Add("contents", "contents");
tableMapping.ColumnMappings.Add("Process", "Process");
tableMapping.ColumnMappings.Add("iwol", "iwol");
this._adapter.TableMappings.Add(tableMapping);
}
@@ -4244,7 +4603,7 @@ ORDER BY Holyday.sdate, Holyday.idx";
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[0].Connection = this.Connection;
this._commandCollection[0].CommandText = @"SELECT Holyday.gcode, Holyday.idx, Holyday.sdate, Holyday.uid, Holyday.cate, dbo.GetKuntaeJan_Time(Holyday.gcode, Holyday.uid, Holyday.sdate, Holyday.idx - 1) AS jun, Holyday.DrTime AS Dr,
Holyday.CrTime AS Cr, Holyday.contents, Users.name, EETGW_GroupUser.Process
Holyday.CrTime AS Cr, Holyday.contents, Users.name, EETGW_GroupUser.Process, Holyday.iwol
FROM Holyday WITH (NOLOCK) LEFT OUTER JOIN
EETGW_GroupUser WITH (NOLOCK) ON Holyday.gcode = EETGW_GroupUser.gcode AND Holyday.uid = EETGW_GroupUser.uid LEFT OUTER JOIN
Users WITH (NOLOCK) ON Holyday.uid = Users.id