kyy
2025-09-01 fdc017bffe579b0855743b68c58e3ba7571b8ad1
DevApp/Gs.DevApp/DevFrm/Warehouse/Frm_ArrivalBarcode.cs
@@ -1,3 +1,4 @@
using DevExpress.XtraRichEdit.Model;
using Gs.DevApp.DevFrm.Rpt;
using Gs.DevApp.Entity;
using Gs.DevApp.ToolBox;
@@ -88,13 +89,17 @@
                string rowGuid = lbMxGuid.Text.Trim();
                SelectDeleteBar frm = new SelectDeleteBar(rowGuid, "采购入库");
                string strCodeList = "";
                string strAction = "";
                frm.UpdateParent += (ss, ee) =>
                {
                    strCodeList = ee.StringSingle;
                    strAction = ee.Data;
                };
                frm.ShowDialog();
                if (string.IsNullOrEmpty(strCodeList))
                    return;
                if (strAction == "print")
                {
                try
                {
                    string rptParameter = "rpt_Arrival{"
@@ -115,6 +120,8 @@
                {
                    MsgHelper.ShowError(ex.Message);
                }
                }
            };
            // -------------------- gvMx3 打印事件 --------------------
@@ -166,17 +173,21 @@
                string rowGuid = txt_releaseNo.Text.Trim();
                SelectDeleteBar frm = new SelectDeleteBar(rowGuid, "到货条码(合并)码"); // 标题区分来源
                string strCodeList = "";
                string strAction = "";
                frm.UpdateParent += (ss, ee) =>
                {
                    strCodeList = ee.StringSingle;
                    strAction = ee.Data;
                };
                frm.ShowDialog();
                if (string.IsNullOrEmpty(strCodeList))
                    return;
                if (strAction == "print")
                {
                try
                {
                    string rptParameter = "rpt_Arrival_Hb{"
                    + "100"//重打标识
                        string rptParameter = "rpt_Arrival{"
                        + "100"//重打都是传100,
                    + "," + ""
                    + "," + ""
                    + "," + ""
@@ -193,6 +204,8 @@
                {
                    MsgHelper.ShowError(ex.Message);
                }
                }
            };