휴가 승인자 정보 추적
This commit is contained in:
		| @@ -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(); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 chi
					chi