pmp제거, ot 시간 없으면 null로 입력

This commit is contained in:
chi
2021-07-28 14:03:16 +09:00
parent 978e1e489e
commit 12a33f174b
19 changed files with 204 additions and 537 deletions

View File

@@ -3370,11 +3370,11 @@ namespace FPJ0000 {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public double hrs {
get {
try {
return ((double)(this[this.tablejobReport.hrsColumn]));
if (this.IshrsNull()) {
return 0D;
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("\'jobReport\' 테이블의 \'hrs\' 열의 값이 DBNull입니다.", e);
else {
return ((double)(this[this.tablejobReport.hrsColumn]));
}
}
set {
@@ -3386,11 +3386,11 @@ namespace FPJ0000 {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public double ot {
get {
try {
return ((double)(this[this.tablejobReport.otColumn]));
if (this.IsotNull()) {
return 0D;
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("\'jobReport\' 테이블의 \'ot\' 열의 값이 DBNull입니다.", e);
else {
return ((double)(this[this.tablejobReport.otColumn]));
}
}
set {
@@ -3559,11 +3559,11 @@ namespace FPJ0000 {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public double hrs {
get {
try {
return ((double)(this[this.tableJobReportDay.hrsColumn]));
if (this.IshrsNull()) {
return 0D;
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("\'JobReportDay\' 테이블의 \'hrs\' 열의 값이 DBNull입니다.", e);
else {
return ((double)(this[this.tableJobReportDay.hrsColumn]));
}
}
set {
@@ -3575,11 +3575,11 @@ namespace FPJ0000 {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public double ot {
get {
try {
return ((double)(this[this.tableJobReportDay.otColumn]));
if (this.IsotNull()) {
return 0D;
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("\'JobReportDay\' 테이블의 \'ot\' 열의 값이 DBNull입니다.", e);
else {
return ((double)(this[this.tableJobReportDay.otColumn]));
}
}
set {