lu
2025-09-23 ca48402cd224ea7f830a809dc604a1a580c8205a
DevApp/Gs.DevApp/DevFrm/WOM/Frm_Womdaa.cs
@@ -24,6 +24,7 @@
        {
            InitializeComponent();
            //先隐藏4种打印
            //  txt_mesStartProd.CustomFormat = "yyyy-MM-dd HH:mm";
            this.splitMx99.PanelVisibility = DevExpress.XtraEditors.SplitPanelVisibility.Panel2;
            this.splitMx98.PanelVisibility = DevExpress.XtraEditors.SplitPanelVisibility.Panel2;
            this.splitMx100.PanelVisibility = DevExpress.XtraEditors.SplitPanelVisibility.Panel2;
@@ -513,12 +514,38 @@
        private void ToolBarMenu1_btnSaveClick(object sender, EventArgs e)
        {
            toolBarMenu1.isSetBtn = false;
            DateTime _dtKg = txt_mesStartProd.DateTime;
            DateTime _dtWg = txt_mesEndProd.DateTime;
            if (string.IsNullOrEmpty(txt_mesStartProd.Text.Trim()))
            {
                ToolBox.MsgHelper.ShowError("提示:预计开工时间不能为空!");
                txt_mesStartProd.Focus();
                return;
            }
            if (string.IsNullOrEmpty(txt_mesEndProd.Text.Trim()))
            {
                ToolBox.MsgHelper.ShowError("提示:预计完工时间不能为空!");
                txt_mesEndProd.Focus();
                return;
            }
            if (_dtWg < _dtKg)
            {
                ToolBox.MsgHelper.ShowError("提示:完工时间不能小于开工时间!");
                return;
            }
            if (string.IsNullOrEmpty(txt_daa015.GetId()))
            {
                ToolBox.MsgHelper.ShowError("提示:线体不能为空!");
                return;
            }
            var _obj = new
            {
                guid = UtilityHelper.ToGuid(lbGuid.Text.Trim()), //主建
                sjxt = txt_daa015.GetId(), //线体
                sclx = txt_daa025.Text.Trim(),//生产类型
                bz = txt_daa009.Text.Trim()//备注
                bz = txt_daa009.Text.Trim(),//备注
                dtKg = _dtKg.ToString("yyyy-MM-dd HH:mm:ss"),
                dtWg = _dtWg.ToString("yyyy-MM-dd HH:mm:ss"),
            };
            try
            {
@@ -531,12 +558,13 @@
                    toolBarMenu1.isSetBtn = true;
                    List<DevExpress.XtraGrid.Views.Grid.GridView> gvList = new List<DevExpress.XtraGrid.Views.Grid.GridView>();
                    //gvList.Add(gvMx1);
                    UtilityHelper.ChangeEnableByControl(this.layoutMx1.Controls, false, gvList);
                    UtilityHelper.ChangeEnableByControl(this.layoutMx1.Controls, false);
                    //toolBarMenu1.currentAction = "";
                    //txt_printRemark.Enabled = txt_psnQty_1.Enabled = txt_iCount_1.Enabled = true;
                    //txt_printRemark.ReadOnly = txt_psnQty_1.ReadOnly = txt_iCount_1.ReadOnly = false;
                    //toolBarMenu1.currentAction = "";
                    Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 6);
                    toolBarMenu1.currentAction = "";
                }
                else
                    ToolBox.MsgHelper.ShowError("提示:" + _rtn.rtnMsg);
@@ -554,7 +582,11 @@
        /// <param name="pageSize">每页几条</param>
        private void getPageList(int curPage)
        {
            gcMain1.DataSource = null; var _sbSqlWhere = UtilityHelper.GetSearchWhere(_filterList);
            gcMain1.DataSource = null;
            System.Text.StringBuilder _sbSqlWhere = new System.Text.StringBuilder();
            _sbSqlWhere.Append(" and a.ERP_SCZZ in");
            _sbSqlWhere.Append(ToolBox.UtilityHelper.GetOrgWhere());
            _sbSqlWhere.Append(UtilityHelper.GetSearchWhere(_filterList));
            PageQueryModel pgq = new PageQueryModel(curPage, this.pageBar1.RowsCount, "create_date", "desc", "", _sbSqlWhere.ToString());
            string json = JsonConvert.SerializeObject(pgq);
            try
@@ -790,7 +822,7 @@
                    txt_psnQty_1.Text = txt_printRemark.Text = txt_iCount_1.Text = txt_printRemark98.Text = txt_iCount_98.Text = txt_yuliang_1.Text = "";
                    txt_iCount_98.Text = txt_kQty98.Text;//追溯码
                    txt_iCount_100.Text = txt_kQty100.Text;//后盖码
                }
                else
                    ToolBox.MsgHelper.ShowError("提示:" + _rtn.rtnMsg);