휴가 승인자 정보 추적

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 FEQ0000
{
public partial class EQFilterApply : Form
public partial class EQFilterApply : fBase
{
//fEquipment.eTabletype divtype;
@@ -27,10 +28,10 @@ namespace FEQ0000
{
}
private void __Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
try
{
ta.Fill(this.dsEQ.EquipmentFilter, eqfiletertype, FCOMMON.info.Login.gcode);

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 FEQ0000
{
public partial class EQfilterManager : Form
public partial class EQfilterManager : fBase
{
string divtype = string.Empty;
public EQfilterManager(string type_)
@@ -28,9 +29,10 @@ namespace FEQ0000
e.Row["wdate"] = DateTime.Now;
e.Row["gcode"] = FCOMMON.info.Login.gcode;
}
private void EQfilter_Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
try
{
ta.Fill(this.dsEQ.EquipmentFilter, divtype, FCOMMON.info.Login.gcode);

View File

@@ -9,10 +9,11 @@ using System.Windows.Forms;
using System.CodeDom.Compiler;
using System.Reflection;
using Microsoft.CSharp;
using FCOMMON;
namespace FEQ0000
{
public partial class fEquipment : Form
public partial class fEquipment : fBase
{
public enum eTabletype
{
@@ -113,9 +114,10 @@ namespace FEQ0000
}
if (this.cmbDate.Items.Count > 0) this.cmbDate.SelectedIndex = 0;
}
private void __Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize();
this.Text = string.Format("Equipment List({0})", this.dataType);
var form = this as Form;
FCOMMON.Util.SetFormStatus(ref form, this.Name + this.tableName, true);

View File

@@ -1,4 +1,5 @@
using System;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -9,11 +10,11 @@ using System.Windows.Forms;
namespace FEQ0000
{
public partial class fImpEquipment : Form
public partial class fImpEquipment : fBase
{
DataTable dt = null;
DataTable dtExcel = new DataTable();
// fEquipment.eTabletype imptype = fEquipment.eTabletype.MOLD;
// fEquipment.eTabletype imptype = fEquipment.eTabletype.MOLD;
public fImpEquipment(fEquipment.eTabletype type_)
{
InitializeComponent();
@@ -23,9 +24,10 @@ namespace FEQ0000
this.FormClosed += __Closed;
dt = new dsEQ.EETGW_EquipmentDataTable();
}
private void __Load(object sender, EventArgs e)
{
EnsureVisibleAndUsableSize ();
this.Text = string.Format("Data Import({0})", "ALL");
var form = this as Form;
FCOMMON.Util.SetFormStatus(ref form, this.Name, true);
@@ -282,8 +284,8 @@ namespace FEQ0000
if (i % 1000 == 0) Application.DoEvents();
var version = dr[11].ToString();
var linecode = dr[12+1].ToString();
var linedesc = dr[13+1].ToString();
var linecode = dr[12 + 1].ToString();
var linedesc = dr[13 + 1].ToString();
var lineT = string.Empty;
var lineP = string.Empty;
var grp2 = string.Empty;
@@ -322,7 +324,7 @@ namespace FEQ0000
if (lineDrows.Length == 0) //라인코드가 없다.
{
//var linebuf = linedesc.Split('-');
//신규추가한다.
var newli = lineTd.NewLineCodeRow();

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 FEQ0000
{
public partial class rpt_equipmentAll : Form
public partial class rpt_equipmentAll : fBase
{
dsEQ.EETGW_EquipmentDataTable dt;
public rpt_equipmentAll(dsEQ.EETGW_EquipmentDataTable dt_,string title)
@@ -24,10 +25,10 @@ namespace FEQ0000
}
private void rpt_equipment_Load(object sender, EventArgs e)
{
//this.Text = string.Format("Data Report({0})", "ALL");
EnsureVisibleAndUsableSize();
this.Show();
Application.DoEvents();