| | |
| | | getPageList(1, UtilityHelper.GetPageSize()); |
| | | btnIn.Click += (s, e) => |
| | | { |
| | | var list = new List<string>(); |
| | | var list = new List<dynamic>(); |
| | | for (var i = 0; i < gridView1.DataRowCount; i++) |
| | | { |
| | | var checkBox = gridView1.GetRowCellDisplayText(i, "gvChk"); |
| | | if (checkBox == "Checked") |
| | | { |
| | | var _guid = gridView1.GetRowCellValue(i, "guid") |
| | | .ToString(); |
| | | list.Add(_guid); |
| | | list.Add(new |
| | | { |
| | | rkmxGuid = gridView1.GetRowCellDisplayText(i, "rkmxGuid"), |
| | | invBillNo = gridView1.GetRowCellDisplayText(i, "invBillNo"), |
| | | itemNo = gridView1.GetRowCellDisplayText(i, "itemNo"), |
| | | itemName = gridView1.GetRowCellDisplayText(i, "itemName"), |
| | | itemModel = gridView1.GetRowCellDisplayText(i, "itemModel"), |
| | | itemId = gridView1.GetRowCellDisplayText(i, "itemId"), |
| | | rksl = gridView1.GetRowCellDisplayText(i, "rksl"), |
| | | dwName = gridView1.GetRowCellDisplayText(i, "dwName"), |
| | | yt = gridView1.GetRowCellDisplayText(i, "yt"), |
| | | kt = gridView1.GetRowCellDisplayText(i, "kt"), |
| | | khName = gridView1.GetRowCellDisplayText(i, "khName"), |
| | | receivingOrg = gridView1.GetRowCellDisplayText(i, "receivingOrg"), |
| | | }); |
| | | } |
| | | } |
| | | UpdateParent?.Invoke(this, |
| | | new UpdateParentEventArgs { StringList = list }); |
| | | new UpdateParentEventArgs { DynamicList = list }); |
| | | Close(); |
| | | }; |
| | | } |