휴가 승인자 정보 추적

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

@@ -12,7 +12,7 @@ using System.Windows.Forms;
namespace FEQ0000.Purchase
{
public partial class fBatchUpdate : Form
public partial class fBatchUpdate : fBase
{
public fBatchUpdate(List<int> _rows)
{
@@ -22,9 +22,10 @@ namespace FEQ0000.Purchase
this.Text = $"일괄변경 : {_rows.Count} 건";
this.KeyDown += (s1, e1) => { if (e1.KeyCode == Keys.Escape) this.Close(); };
}
private void fBatchUpdate_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
var code_state = DBM.getCodeTable("04");
cmbState.DataSource = code_state;
cmbState.DisplayMember = "Value";