bug
lu
2025-06-12 64a6c4193199d15d7ac5aa67a9677df01a37a50d
DevApp/Gs.DevApp/DevFrm/Ck/SelectSctk.cs
@@ -1,6 +1,4 @@
using DevExpress.XtraEditors;
using Gs.DevApp.Entity;
using Gs.DevApp.ToolBox;
using Gs.DevApp.ToolBox;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
@@ -19,7 +17,7 @@
            Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, null, null, null, "", null, null, false);
            getPageList(1);
        }
        /// <summary>
        /// </summary>
        /// <param name="curPage">第几页</param>
@@ -77,12 +75,16 @@
                {
                    return;
                }
                var mxName = dr["depotName"].ToString();
                var list = new List<dynamic>();
                list.Add(new
                {
                    guid = mxGuid,
                    name = mxName,
                    rkmxGuid = mxGuid,
                    workShop = dr["workShop"].ToString(),
                    itemId = dr["itemId"].ToString(),
                    itemNo = dr["itemNo"].ToString(),
                    itemName = dr["itemName"].ToString(),
                    itemModel = dr["itemModel"].ToString(),
                    dwName = dr["dwName"].ToString(),
                });
                UpdateParent?.Invoke(this, new UpdateParentEventArgs { DynamicList = list });
                Close();