..
This commit is contained in:
@@ -390,6 +390,7 @@ namespace FPJ0000
|
||||
{
|
||||
funcEdit();
|
||||
}
|
||||
|
||||
void funcEdit()
|
||||
{
|
||||
var drv = this.bs.Current as DataRowView;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user