sfi count 등록 및 추가

This commit is contained in:
ChiKyun Kim
2025-09-04 09:19:01 +09:00
parent b28fe84e6b
commit 777fcd5d89
19 changed files with 1164 additions and 806 deletions

View File

@@ -31,6 +31,9 @@
this.components = new System.ComponentModel.Container();
this.dataGridView1 = new arCtl.arDatagridView();
this.panel1 = new System.Windows.Forms.Panel();
this.chkExceptPak = new System.Windows.Forms.CheckBox();
this.cmbUserList = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.cmbApploval = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.radTypeAll = new System.Windows.Forms.RadioButton();
@@ -69,11 +72,14 @@
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.ReadOnly = true;
this.dataGridView1.RowTemplate.Height = 23;
this.dataGridView1.Size = new System.Drawing.Size(1028, 663);
this.dataGridView1.Size = new System.Drawing.Size(1284, 663);
this.dataGridView1.TabIndex = 2;
//
// panel1
//
this.panel1.Controls.Add(this.chkExceptPak);
this.panel1.Controls.Add(this.cmbUserList);
this.panel1.Controls.Add(this.label3);
this.panel1.Controls.Add(this.cmbApploval);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.radTypeAll);
@@ -90,9 +96,42 @@
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Padding = new System.Windows.Forms.Padding(5);
this.panel1.Size = new System.Drawing.Size(1028, 36);
this.panel1.Size = new System.Drawing.Size(1284, 36);
this.panel1.TabIndex = 3;
//
// chkExceptPak
//
this.chkExceptPak.AutoSize = true;
this.chkExceptPak.Checked = true;
this.chkExceptPak.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkExceptPak.Location = new System.Drawing.Point(767, 11);
this.chkExceptPak.Name = "chkExceptPak";
this.chkExceptPak.Size = new System.Drawing.Size(120, 16);
this.chkExceptPak.TabIndex = 17;
this.chkExceptPak.Text = "업무일지활성계정";
this.chkExceptPak.UseVisualStyleBackColor = true;
//
// cmbUserList
//
this.cmbUserList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbUserList.FormattingEnabled = true;
this.cmbUserList.Items.AddRange(new object[] {
"대상인원",
"전체인원"});
this.cmbUserList.Location = new System.Drawing.Point(670, 9);
this.cmbUserList.Name = "cmbUserList";
this.cmbUserList.Size = new System.Drawing.Size(85, 20);
this.cmbUserList.TabIndex = 16;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(635, 13);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(29, 12);
this.label3.TabIndex = 15;
this.label3.Text = "인원";
//
// cmbApploval
//
this.cmbApploval.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
@@ -118,7 +157,7 @@
// radTypeAll
//
this.radTypeAll.AutoSize = true;
this.radTypeAll.Location = new System.Drawing.Point(749, 11);
this.radTypeAll.Location = new System.Drawing.Point(1007, 11);
this.radTypeAll.Name = "radTypeAll";
this.radTypeAll.Size = new System.Drawing.Size(78, 16);
this.radTypeAll.TabIndex = 12;
@@ -128,7 +167,7 @@
// radTypePMS
//
this.radTypePMS.AutoSize = true;
this.radTypePMS.Location = new System.Drawing.Point(693, 11);
this.radTypePMS.Location = new System.Drawing.Point(951, 11);
this.radTypePMS.Name = "radTypePMS";
this.radTypePMS.Size = new System.Drawing.Size(50, 16);
this.radTypePMS.TabIndex = 11;
@@ -139,7 +178,7 @@
//
this.radType.AutoSize = true;
this.radType.Checked = true;
this.radType.Location = new System.Drawing.Point(637, 11);
this.radType.Location = new System.Drawing.Point(895, 11);
this.radType.Name = "radType";
this.radType.Size = new System.Drawing.Size(47, 16);
this.radType.TabIndex = 10;
@@ -159,7 +198,7 @@
// button1
//
this.button1.Dock = System.Windows.Forms.DockStyle.Right;
this.button1.Location = new System.Drawing.Point(873, 5);
this.button1.Location = new System.Drawing.Point(1129, 5);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 26);
this.button1.TabIndex = 8;
@@ -198,7 +237,7 @@
// btRefresh
//
this.btRefresh.Dock = System.Windows.Forms.DockStyle.Right;
this.btRefresh.Location = new System.Drawing.Point(948, 5);
this.btRefresh.Location = new System.Drawing.Point(1204, 5);
this.btRefresh.Name = "btRefresh";
this.btRefresh.Size = new System.Drawing.Size(75, 26);
this.btRefresh.TabIndex = 2;
@@ -234,7 +273,7 @@
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1028, 699);
this.ClientSize = new System.Drawing.Size(1284, 699);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.panel1);
this.Name = "rJobReportOT";
@@ -267,5 +306,8 @@
private System.Windows.Forms.RadioButton radTypeAll;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ComboBox cmbApploval;
private System.Windows.Forms.ComboBox cmbUserList;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.CheckBox chkExceptPak;
}
}