..
This commit is contained in:
@@ -1380,5 +1380,29 @@ namespace FEQ0000
|
||||
btEQModel.BackColor = bgcolor;
|
||||
btManuProc.BackColor = bgcolor;
|
||||
}
|
||||
|
||||
private void tbPumIDX_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (int.TryParse(tbPumIDX.Text, out int pumidx) == false)
|
||||
{
|
||||
FCOMMON.Util.MsgE("품번호가 정확하지 않습니다\n품목을 다시 선택하세요");
|
||||
return;
|
||||
}
|
||||
if(pumidx < 0)
|
||||
{
|
||||
FCOMMON.Util.MsgE("품번호가 정확하지 않습니다\n품목을 다시 선택하세요");
|
||||
return;
|
||||
}
|
||||
var f = new FCM0000.Item.fItemEdit(pumidx);
|
||||
if (f.ShowDialog() != DialogResult.OK) return;
|
||||
|
||||
tbPumName.Text = f.tbName.Text;
|
||||
tbPumModel.Text = f.tbModel.Text;
|
||||
tbPumPrice.Text = f.tbPrice.Text;
|
||||
tbPumPriceD.Text = f.tbPriceD.Text;
|
||||
tbSupply.Text = f.tbSupply.Text;
|
||||
tbSupplyIndex.Text = f.tbSupplyIdx.Text;
|
||||
tbSID.Text = f.tbSid.Text;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user