..
This commit is contained in:
@@ -907,7 +907,7 @@ namespace Project.Dialog
|
||||
//If numbers are different?
|
||||
if (UTIL.MsgQ(string.Format("Do you want to change the quantity?\nCurrent: {0}\nServer: {1}", tbQTY.Text, newCnt)) == DialogResult.Yes)
|
||||
{
|
||||
PUB.log.Add($"수량업데이트 {tbQTY.Text}->{newCnt}");
|
||||
PUB.log.Add($"Quantity updated {tbQTY.Text}->{newCnt}");
|
||||
tbQTY.Text = newCnt.ToString();
|
||||
}
|
||||
}
|
||||
@@ -1248,13 +1248,13 @@ namespace Project.Dialog
|
||||
|
||||
if (amksid.isEmpty() == false)
|
||||
{
|
||||
PUB.log.Add(string.Format("amkor SId찾기 code={0},part={1},sid={2}", custcode, partno, amksid));
|
||||
PUB.log.Add(string.Format("Amkor SID search code={0},part={1},sid={2}", custcode, partno, amksid));
|
||||
tbSID.Text = amksid;
|
||||
UpdateSID();
|
||||
}
|
||||
else
|
||||
{
|
||||
PUB.log.Add(string.Format("검색된 SID가 없어 sid찾기가 실패 했습니다\n" +
|
||||
PUB.log.Add(string.Format("SID search failed - no SID found\n" +
|
||||
"Cust:{0}\n" +
|
||||
"PartNo:{1}", custcode, partno));
|
||||
}
|
||||
@@ -1307,7 +1307,7 @@ namespace Project.Dialog
|
||||
{
|
||||
this.tbCustName.Text = f.CustName;
|
||||
this.TbCustCode.Text = f.CustCode;
|
||||
PUB.log.Add(string.Format("사용자가 Customer 를 직접 선택함 {0}:{1}", tbCustName.Text, TbCustCode.Text));
|
||||
PUB.log.Add(string.Format("User directly selected Customer {0}:{1}", tbCustName.Text, TbCustCode.Text));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1368,7 +1368,7 @@ namespace Project.Dialog
|
||||
{
|
||||
if (item.Value.Data == bcddata)
|
||||
{
|
||||
PUB.log.Add(string.Format("회전 기준 바코드값 {0}", item.Value.Data));
|
||||
PUB.log.Add(string.Format("Rotation reference barcode value {0}", item.Value.Data));
|
||||
item.Value.UserActive = true;
|
||||
}
|
||||
else item.Value.UserActive = false;
|
||||
@@ -1564,7 +1564,7 @@ namespace Project.Dialog
|
||||
if (VAR.BOOL[eVarBool.Opt_Conv_Apply_QtyMax]) columns.Add("qtymax", tbQtyMax.Text);
|
||||
if (VAR.BOOL[eVarBool.Opt_Conv_Apply_SID]) columns.Add("SIDFrom", lbSID0.Text.Trim()); //250106
|
||||
|
||||
PUB.log.Add($"sid변환정보 저장컬럼:{string.Join(",", columns)},where:{string.Join("',", wheres)}");
|
||||
PUB.log.Add($"SID conversion info save columns:{string.Join(",", columns)},where:{string.Join("',", wheres)}");
|
||||
ServerWriteCONVINF(columns, wheres);
|
||||
}
|
||||
else PUB.log.AddI($"Seed conversion information(detailed) will not be saved");
|
||||
@@ -2165,7 +2165,7 @@ namespace Project.Dialog
|
||||
{
|
||||
msg += (msg.isEmpty() ? "" : "\n") + string.Format("QTY:{0}=>{1}", tbQTY.Text, amk.QTY);
|
||||
|
||||
PUB.log.Add($"수량업데이트 {tbQTY.Text}->{amk.QTY}");
|
||||
PUB.log.Add($"Quantity updated {tbQTY.Text}->{amk.QTY}");
|
||||
tbQTY.Text = amk.QTY.ToString();
|
||||
}
|
||||
|
||||
@@ -2301,7 +2301,7 @@ namespace Project.Dialog
|
||||
if (tbBatch.Text.isEmpty())
|
||||
{
|
||||
tbBatch.Text = batch;
|
||||
PUB.log.Add($"사용자 바코드 입력으로 batch값을 설정 합니다:{batch}");
|
||||
PUB.log.Add($"Set batch value from user barcode input:{batch}");
|
||||
}
|
||||
|
||||
|
||||
@@ -2309,7 +2309,7 @@ namespace Project.Dialog
|
||||
{
|
||||
tbSID.Text = sid;
|
||||
tbpartno.Text = cpn;
|
||||
PUB.log.Add($"사용자 바코드로 SID/파트번호를 입력입니다 값:{sid}{cpn}");
|
||||
PUB.log.Add($"Enter SID/Part number from user barcode, value:{sid}{cpn}");
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -2320,7 +2320,7 @@ namespace Project.Dialog
|
||||
{
|
||||
//맞다
|
||||
tbpartno.Text = cpn;
|
||||
PUB.log.Add($"사용자 바코드로 파트번호를 입력입니다 값:{cpn}");
|
||||
PUB.log.Add($"Enter part number from user barcode, value:{cpn}");
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -2334,7 +2334,7 @@ namespace Project.Dialog
|
||||
tbSID.Tag = tbSID.Text.Trim();
|
||||
tbSID.Text = sid;
|
||||
tbpartno.Text = cpn;
|
||||
PUB.log.Add($"사용자 바코드로 SID/파트번호를 입력입니다 값:{sid}{cpn}");
|
||||
PUB.log.Add($"Enter SID/Part number from user barcode, value:{sid}{cpn}");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user