This commit is contained in:
chi
2021-03-02 15:12:45 +09:00
parent 5ad9c18abf
commit a51b7c6963
2 changed files with 13 additions and 1 deletions

View File

@@ -110,6 +110,11 @@ namespace FEQ0000
if (this.cmbManu.Items.Count > 0) cmbManu.SelectedIndex = 0; if (this.cmbManu.Items.Count > 0) cmbManu.SelectedIndex = 0;
if (this.cmbType.Items.Count > 0) cmbType.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) private void equipmentBindingNavigatorSaveItem_Click(object sender, EventArgs e)
@@ -118,6 +123,8 @@ namespace FEQ0000
this.bsB.EndEdit(); this.bsB.EndEdit();
this.bsF.EndEdit(); this.bsF.EndEdit();
this.bsME.EndEdit(); this.bsME.EndEdit();
this.bsIng.EndEdit();
try try
{ {
if (dataType == eTabletype.BUMP) if (dataType == eTabletype.BUMP)
@@ -128,6 +135,10 @@ namespace FEQ0000
{ {
this.taME.Update(this.dsEQ.EquipmentME); this.taME.Update(this.dsEQ.EquipmentME);
} }
else if(dataType == eTabletype.ING)
{
this.taIng.Update(this.dsEQ.EETGW_EquipmentIng);
}
else else
{ {
this.taF.Update(this.dsEQ.EquipmentF); this.taF.Update(this.dsEQ.EquipmentF);

View File

@@ -302,7 +302,7 @@ namespace FEQ0000
var lineT = string.Empty; var lineT = string.Empty;
var lineP = string.Empty; var lineP = string.Empty;
var rcsflag = dr[1].ToString(); var rcsflag = dr[1].ToString();
if (rcsflag != "M") continue; //if (rcsflag != "M") continue;
//없는 라인코드는 추가 //없는 라인코드는 추가
var lineDrows = lineTd.Select("code='" + linecode + "'"); var lineDrows = lineTd.Select("code='" + linecode + "'");
@@ -356,6 +356,7 @@ namespace FEQ0000
newdr["except"] = false; newdr["except"] = false;
newdr["memo"] = string.Empty; newdr["memo"] = string.Empty;
if (imptype == fEquipment.eTabletype.BUMP) newdr["param1"] = "8\""; 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; else newdr["param1"] = string.Empty;
dt.Rows.Add(newdr); dt.Rows.Add(newdr);
} }