快乐的昕的电脑
2025-12-05 b0a36de861610de7c1a7abdaf89969e0b724f19f
DevApp/Gs.DevApp/DevFrm/BasicData/Frm_MesDepot.cs
@@ -12,6 +12,7 @@
using System.Data;
using System.Threading.Tasks;
using System.Windows.Forms;
using Gs.DevApp.DevFrm.Rpt;
namespace Gs.DevApp.DevFrm
{
@@ -20,6 +21,36 @@
        private List<FilterEntity> _filterList = new List<FilterEntity>();
        private readonly string _webServiceName = "MesDepotsManager/";
        private DevExpress.XtraEditors.ComboBoxEdit txt_DepotModel;
        private string _kwModel;
        //public Frm_MesDepot()
        //{
        //    InitializeComponent();
        //    toolBarMenu1.btnEdtClick += ToolBarMenu1_btnEdtClick;
        //    toolBarMenu1.btnSaveClick += ToolBarMenu1_btnSaveClick;
        //    toolBarMenu1.btnLoadClick += ToolBarMenu1_btnLoadClick;
        //    toolBarMenu1.btnEscClick += ToolBarMenu1_btnEscClick;
        //    toolBarMenu1.btnQueryClick += ToolBarMenu1_btnQueryClick;
        //    this.toolBarMenu1.getXmlConfig();
        //    Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gvMx1);
        //    Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, null, null, null, "", (value) =>
        //   {
        //       Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 0);
        //   }, tips);
        //    Gs.DevApp.ToolBox.UtilityHelper.SetTabParameter(gridView1, xtraTabControl1, pageBar1, (value) =>
        //    {
        //        getModel(value);
        //    }, (value) =>
        //    {
        //        getPageList(this.pageBar1.CurrentPage);
        //    }, lbGuid);
        //    getPageList(1);
        //    pageBar1.PagerEvent += PageBar1_PagerEvent;
        //}
        /*******库位条码模板切换*****/
        public Frm_MesDepot()
        {
            InitializeComponent();
@@ -31,9 +62,9 @@
            this.toolBarMenu1.getXmlConfig();
            Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gvMx1);
            Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, null, null, null, "", (value) =>
           {
               Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 0);
           }, tips);
            {
                Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 0);
            }, tips);
            Gs.DevApp.ToolBox.UtilityHelper.SetTabParameter(gridView1, xtraTabControl1, pageBar1, (value) =>
            {
                getModel(value);
@@ -43,7 +74,111 @@
            }, lbGuid);
            getPageList(1);
            pageBar1.PagerEvent += PageBar1_PagerEvent;
            // 初始化txt_DepotModel控件
            InitDepotModelControl();
            //打印批量操作事件
            this.ucBtnPrint1.btnAllClick += (s, e) =>
            {
                string rowGuid = lbGuid.Text.Trim();
                SelectDeleteBar frm = new SelectDeleteBar(rowGuid, "仓位码");
                string strCodeList = "";
                frm.UpdateParent += (ss, ee) =>
                {
                    strCodeList = ee.StringSingle;
                };
                frm.ShowDialog();
                if (string.IsNullOrEmpty(strCodeList))
                    return;
                try
                {
                    // 根据选择的值设置报表模型
                    SetKwModelBySelectedValue();
                    // 验证模型是否有效
                    if (string.IsNullOrEmpty(_kwModel))
                    {
                        MsgHelper.Warning("请选择有效的库位模型类型");
                        return;
                    }
                    // 使用动态模型名称构建参数
                    string rptParameter = $"{_kwModel}{{"
                        + "100" // 重打都是传100
                        + "," + ""
                        + "," + ""
                        + "," + ""
                        + "," + ""
                        + "," + strCodeList
                        + "}";
                    using (Form rpt = new RptPreview(rowGuid, rptParameter))
                    {
                        rpt.ShowDialog();
                    }
                    frm.Close();
                }
                catch (Exception ex)
                {
                    MsgHelper.ShowError(ex.Message);
                }
            };
            this.ucBtnPrint1.SetPrintButton(false);
        }
        /// <summary>
        /// 初始化txt_DepotModel控件(查找并赋值)
        /// </summary>
        private void InitDepotModelControl()
        {
            // 递归查找窗体中所有控件(包括子容器)
            Control[] foundControls = this.Controls.Find("txt_DepotModel", true);
            if (foundControls != null && foundControls.Length > 0 && foundControls[0] is DevExpress.XtraEditors.ComboBoxEdit)
            {
                txt_DepotModel = (DevExpress.XtraEditors.ComboBoxEdit)foundControls[0];
            }
            else
            {
                System.Diagnostics.Debug.WriteLine("警告:未找到txt_DepotModel控件,请检查控件Name是否正确");
            }
        }
        /// <summary>
        /// 根据txt_DepotModel选择的值设置_kwModel
        /// </summary>
        private void SetKwModelBySelectedValue()
        {
            // 重置模型值
            _kwModel = string.Empty;
            // 检查控件是否存在
            if (txt_DepotModel == null)
            {
                MsgHelper.ShowError("未找到库位模型选择控件");
                return;
            }
            // 获取选择的值
            string selectedValue = txt_DepotModel.EditValue?.ToString().Trim() ?? string.Empty;
            string selectedText = txt_DepotModel.Text?.Trim() ?? string.Empty;
            // 判断选择的值并设置对应的模型
            // 这里同时判断EditValue和Text,确保兼容性(根据实际数据绑定情况调整)
            if (selectedValue == "库位码(小)" || selectedText == "库位码(小)")
            {
                _kwModel = "rpt_KW";
            }
            else if (selectedValue == "库位码(大)" || selectedText == "库位码(大)")
            {
                _kwModel = "rpt_KW1";
            }
            else
            {
                MsgHelper.Warning("请选择有效的库位码类型(小/大)");
            }
        }
        private void GridView1_ColumnFilterChanged(object sender, EventArgs e)
        {
            _filterList = Gs.DevApp.ToolBox.UtilityHelper.GetDilter(gridView1.Columns, gridView1);