From cdca5a70b3fac5f804a6eabb7a3976f8c00e35e8 Mon Sep 17 00:00:00 2001 From: lu <99954486@qq.com> Date: 星期二, 08 四月 2025 16:40:30 +0800 Subject: [PATCH] fqc --- DevApp/Gs.DevApp/DevFrm/Work/Frm_WorkProcesses.cs | 32 +++++++++++++++++--------------- 1 files changed, 17 insertions(+), 15 deletions(-) diff --git a/DevApp/Gs.DevApp/DevFrm/Work/Frm_WorkProcesses.cs b/DevApp/Gs.DevApp/DevFrm/Work/Frm_WorkProcesses.cs index 434b33c..81ab435 100644 --- a/DevApp/Gs.DevApp/DevFrm/Work/Frm_WorkProcesses.cs +++ b/DevApp/Gs.DevApp/DevFrm/Work/Frm_WorkProcesses.cs @@ -29,14 +29,14 @@ Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, 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; } @@ -99,7 +99,7 @@ private void ToolBarMenu1_btnDelClick1(object sender, EventArgs e) { string rowGuid = "", rowName = ""; - (rowGuid, rowName) = UtilityHelper.GetCurrentRow(xtraTabControl1, lbGuid, txt_hNo, gridView1,"hNo"); + (rowGuid, rowName) = UtilityHelper.GetCurrentRow(xtraTabControl1, lbGuid, txt_processNo, gridView1,"processNo"); if (string.IsNullOrEmpty(rowGuid)) { ToolBox.MsgHelper.Warning("璇峰厛閫夋嫨浣犺鎿嶄綔鐨勮锛�"); @@ -160,7 +160,7 @@ private void ToolBarMenu1_btnEdtClick(object sender, EventArgs e) { string rowGuid = "", rowName = ""; - (rowGuid, rowName) = UtilityHelper.GetCurrentRow(xtraTabControl1, lbGuid, txt_hNo, gridView1,"hNo"); + (rowGuid, rowName) = UtilityHelper.GetCurrentRow(xtraTabControl1, lbGuid, txt_processNo, gridView1,"processNo"); if (string.IsNullOrEmpty(rowGuid)) { ToolBox.MsgHelper.Warning("璇峰厛閫夋嫨浣犺鎿嶄綔鐨勮锛�"); @@ -173,7 +173,7 @@ } else { - UtilityHelper.ChangeEnableByControl(this.splitMx1.Controls, true); + UtilityHelper.ChangeEnableByControl(this.layoutMx1.Controls, true); } } /// <summary> @@ -196,23 +196,23 @@ private void ToolBarMenu1_btnSaveClick(object sender, EventArgs e) { toolBarMenu1.isSetBtn = false; - if (string.IsNullOrEmpty(txt_hNo.Text.Trim())) + if (string.IsNullOrEmpty(txt_processNo.Text.Trim())) { - Gs.DevApp.ToolBox.MsgHelper.Warning("缂栧彿涓嶈兘涓虹┖锛�"); - txt_hNo.Focus(); + Gs.DevApp.ToolBox.MsgHelper.Warning("浠g爜涓嶈兘涓虹┖锛�"); + txt_processNo.Focus(); return; } - if (string.IsNullOrEmpty(txt_name.Text.Trim())) + if (string.IsNullOrEmpty(txt_processName.Text.Trim())) { Gs.DevApp.ToolBox.MsgHelper.Warning("鍚嶇О涓嶈兘涓虹┖锛�"); - txt_name.Focus(); + txt_processName.Focus(); return; } var _obj = new { guid = UtilityHelper.ToGuid(lbGuid.Text.Trim()), //涓诲缓 - hNo = txt_hNo.Text.Trim(), - name = txt_name.Text.Trim(), + processNo = txt_processNo.Text.Trim(), + processName = txt_processName.Text.Trim(), remark = txt_remark.Text.Trim(), isBack = txt_isBack.Checked ? 1 : 0, isStatus = txt_isStatus.Checked ? 1 : 0, @@ -227,7 +227,9 @@ { lbGuid.Text = _rtn.rtnData; toolBarMenu1.isSetBtn = true; - UtilityHelper.ChangeEnableByControl(this.splitMx1.Controls, false); + UtilityHelper.ChangeEnableByControl(this.layoutMx1.Controls, false); + toolBarMenu1.currentAction = ""; + Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 6); } } catch (Exception ex) @@ -244,7 +246,7 @@ private void getPageList(int curPage) { var _sbSqlWhere = UtilityHelper.GetSearchWhere(_filterList); - var pgq = new PageQueryModel(curPage, this.pageBar1.RowsCount, "a.hNo", + var pgq = new PageQueryModel(curPage, this.pageBar1.RowsCount, "a.processNo", "asc", "", _sbSqlWhere.ToString()); var json = JsonConvert.SerializeObject(pgq); try @@ -308,7 +310,7 @@ { dynamic dy = _rtn.rtnData; lbGuid.Text = strGuid; - UtilityHelper.SetValueByObj(this.splitMx1.Controls, dy, isEdit); + UtilityHelper.SetValueByObj(this.layoutMx1.Controls, dy, isEdit); } else ToolBox.MsgHelper.Warning("鎻愮ず锛�" + _rtn.rtnMsg); -- Gitblit v1.9.3