lu
2025-06-03 34e30e2261a057fc9f46f67a3d216e3d9a9e67be
DevApp/Gs.DevApp/DevFrm/Rk/Frm_MesInvItemArn.cs
@@ -1,6 +1,7 @@
using DevExpress.XtraEditors;
using DevExpress.XtraEditors.Controls;
using DevExpress.XtraGrid.Views.Grid;
using Gs.DevApp.DevFrm.Rk;
using Gs.DevApp.Entity;
using Gs.DevApp.ToolBox;
using Gs.DevApp.UserControl;
@@ -640,5 +641,21 @@
                MsgHelper.Warning("提示:" + ex.Message);
            }
        }
        /// <summary>
        /// 查看到货记录,根据采购明细guid
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void rptHistory_ButtonClick(object sender, ButtonPressedEventArgs e)
        {
            var rowhandle = gvMx1.FocusedRowHandle;
            if (rowhandle < 0)
                return;
            var dr = gvMx1.GetDataRow(rowhandle);
            var mxGuid = dr["aboutGuid"].ToString();
            HistoryDhmxcs frm = new HistoryDhmxcs(mxGuid);
            frm.ShowDialog();
        }
    }
}