This commit is contained in:
chi
2020-09-03 20:44:39 +09:00
parent d88b1e1909
commit 31941ae90f
54 changed files with 4184 additions and 1604 deletions

View File

@@ -390,6 +390,7 @@ namespace FPJ0000
{
funcEdit();
}
void funcEdit()
{
var drv = this.bs.Current as DataRowView;

View File

@@ -362,6 +362,23 @@ namespace FPJ0000.JobReport
}
}
double hrs2 = 0.0;
if(double.TryParse(tbHrs.Text,out hrs2) ==false)
{
FCOMMON.Util.MsgE("근무시간을 숫자로 입력하세요");
tbHrs.Focus();
tbHrs.SelectAll();
return;
}
//if(hrs2 > 8)
//{
// FCOMMON.Util.MsgE("1일 최대근무시간은 8시간을 초과할 수 없습니다\n초과시간을 사용하세요");
// tbHrs.SelectAll();
// tbHrs.Focus();
// return;
//}
this.dr.uid = this.cmbUser.SelectedValue.ToString();
this.dr.pdate = dtPdate.Value.ToShortDateString();
this.dr.status = cmbState.Text;