diff --git a/SubProject/FEQ0000/Equipment/fEquipment.cs b/SubProject/FEQ0000/Equipment/fEquipment.cs index 1065a32..fdd4514 100644 --- a/SubProject/FEQ0000/Equipment/fEquipment.cs +++ b/SubProject/FEQ0000/Equipment/fEquipment.cs @@ -110,6 +110,11 @@ namespace FEQ0000 if (this.cmbManu.Items.Count > 0) cmbManu.SelectedIndex = 0; if (this.cmbType.Items.Count > 0) cmbType.SelectedIndex = 0; + if (this.dataType == eTabletype.ING) + dvc_param.HeaderText = "RCS Flag"; + else + dvc_param.HeaderText = "Wafer Size"; + } private void equipmentBindingNavigatorSaveItem_Click(object sender, EventArgs e) @@ -118,6 +123,8 @@ namespace FEQ0000 this.bsB.EndEdit(); this.bsF.EndEdit(); this.bsME.EndEdit(); + this.bsIng.EndEdit(); + try { if (dataType == eTabletype.BUMP) @@ -128,6 +135,10 @@ namespace FEQ0000 { this.taME.Update(this.dsEQ.EquipmentME); } + else if(dataType == eTabletype.ING) + { + this.taIng.Update(this.dsEQ.EETGW_EquipmentIng); + } else { this.taF.Update(this.dsEQ.EquipmentF); diff --git a/SubProject/FEQ0000/Equipment/fImpEquipment.cs b/SubProject/FEQ0000/Equipment/fImpEquipment.cs index 8d7dac1..62dd4cd 100644 --- a/SubProject/FEQ0000/Equipment/fImpEquipment.cs +++ b/SubProject/FEQ0000/Equipment/fImpEquipment.cs @@ -302,7 +302,7 @@ namespace FEQ0000 var lineT = string.Empty; var lineP = string.Empty; var rcsflag = dr[1].ToString(); - if (rcsflag != "M") continue; + //if (rcsflag != "M") continue; //없는 라인코드는 추가 var lineDrows = lineTd.Select("code='" + linecode + "'"); @@ -356,6 +356,7 @@ namespace FEQ0000 newdr["except"] = false; newdr["memo"] = string.Empty; if (imptype == fEquipment.eTabletype.BUMP) newdr["param1"] = "8\""; + else if (imptype == fEquipment.eTabletype.ING) newdr["param1"] = dr[1].ToString(); //rcs flag else newdr["param1"] = string.Empty; dt.Rows.Add(newdr); }