휴가 승인자 정보 추적

This commit is contained in:
chi
2024-05-08 14:53:55 +09:00
parent 7eb2dbd2cd
commit e4f8981491
201 changed files with 1355 additions and 3219 deletions

View File

@@ -1,4 +1,5 @@
using System;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -9,7 +10,7 @@ using System.Windows.Forms;
namespace FPJ0000
{
public partial class fHistAddDay : Form
public partial class fHistAddDay : fBase
{
dsPRJ.EETGW_ProjecthistoryDRow dr = null;
public fHistAddDay(dsPRJ.EETGW_ProjecthistoryDRow dr_)
@@ -18,14 +19,9 @@ namespace FPJ0000
this.dr = dr_;
this.KeyDown += fHistAdd_KeyDown;
}
void fHistAdd_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Escape) this.Close();
}
private void fHistAdd_Load(object sender, EventArgs e)
private void fHistAdd_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
if (this.dr.IsremarkNull() == false)
this.tbRemark.Text = this.dr.remark;
else
@@ -34,6 +30,12 @@ namespace FPJ0000
this.mcDate.SetDate(DateTime.Parse(dr.pdate));
}
void fHistAdd_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Escape) this.Close();
}
private void btOK_Click(object sender, EventArgs e)
{
this.Validate();