qrmode 에서 wms rcv 태그 인식되게 함

This commit is contained in:
ChiKyun Kim
2025-08-06 10:05:24 +09:00
parent a7bc964b5c
commit c17296101a
89 changed files with 8051 additions and 6661 deletions

View File

@@ -13,12 +13,12 @@ namespace Project.Dialog
{
public partial class fSelectResult : Form
{
public Component_Reel_Result SelectedValue = null;
public fSelectResult(List<Component_Reel_Result> list)
public DataSet1.Component_Reel_ResultRow SelectedValue = null;
public fSelectResult(DataSet1.Component_Reel_ResultDataTable list)
{
InitializeComponent();
this.lv1.Items.Clear();
foreach (var item in list)
foreach (DataSet1.Component_Reel_ResultRow item in list)
{
var dt = (DateTime)item.wdate;
var lv = this.lv1.Items.Add(dt.ToString("dd HH:mm:ss"));
@@ -53,7 +53,7 @@ namespace Project.Dialog
UTIL.MsgE("아이템을 선택하세요\n\n취소하려면 ESC키 혹은 닫기 버튼을 누르세요");
return;
}
this.SelectedValue = this.lv1.FocusedItem.Tag as Component_Reel_Result;
this.SelectedValue = this.lv1.FocusedItem.Tag as DataSet1.Component_Reel_ResultRow;
this.DialogResult = DialogResult.OK;
}