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

@@ -402,14 +402,15 @@ namespace FPJ0000.JobReport_
return;
}
dr.ot = ot;
if(ot == 0)
{
dr.SetotNull();
dr.SetotStartNull();
dr.SetotEndNull();
}
else
{
dr.ot = ot;
dr.otStart = dateTimePicker1.Value;
dr.otEnd = dateTimePicker2.Value;
}
@@ -417,7 +418,7 @@ namespace FPJ0000.JobReport_
}
else
{
dr.ot = 0;
dr.SetotNull();
dr.SetotStartNull();
dr.SetotEndNull();
}