project 선택시 cr 번호도 표시되게함, cr 구매화면에서 요청자체크기능 오류 수정

This commit is contained in:
chi
2025-05-27 14:05:50 +09:00
parent 3b2be90cd0
commit 7ded843fe1
9 changed files with 131 additions and 109 deletions

View File

@@ -40,8 +40,8 @@ namespace FBS0000
var f = new FCM0000.fLovProject("");
if(f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
this.tbPrj.Text = f.Index.ToString();
this.tbPrjName.Text = f.Title;
this.tbPrj.Text = f.val_Index.ToString();
this.tbPrjName.Text = f.val_Title;
placeTextBox.Focus();
}
}
@@ -60,8 +60,8 @@ namespace FBS0000
var f = new FCM0000.fLovProject("%" + search + "%");
if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
this.tbPrj.Text = f.Index.ToString();
this.tbPrjName.Text = f.Title;
this.tbPrj.Text = f.val_Index.ToString();
this.tbPrjName.Text = f.val_Title;
SendKeys.Send("{TAB}");
}
}