This commit is contained in:
chi
2023-04-28 16:13:40 +09:00
parent 79ea4ddfff
commit 354c6a5e1b
13 changed files with 459 additions and 283 deletions

View File

@@ -53,6 +53,7 @@ namespace FEQ0000.Purchase
if (string.IsNullOrEmpty(tbPO.Text)) tbPO.Text = this.po;
tbSC.Text = dr.sc;
tbSCRCF.Text = dr.orderno;
tbSID.Text = dr.sid;
//프로젝트정보 찾는다
var tap = new DSPrjTableAdapters.ProjectsTableAdapter();
@@ -96,7 +97,8 @@ namespace FEQ0000.Purchase
}
else dtInDate.Value = DateTime.Now;
chkInDate.Checked = true;
tbInQty.Text = dr.inqty.ToString();
if (dr.IsinqtyNull()) tbInQty.Text = string.Empty;
else tbInQty.Text = dr.inqty.ToString();
tbInRemark.Text = dr.inremark;
}
else
@@ -140,6 +142,7 @@ namespace FEQ0000.Purchase
if (int.TryParse(tbInQty.Text, out int qty) == false)
{
FCOMMON.Util.MsgE("수량을 확인하세요");
tbInQty.Text = tbQty.Text.Trim();
tbInQty.Focus();
tbInQty.SelectAll();
return;