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

@@ -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);
}