From 5a7f68bf4dbbdca1abbb939bd43e1fb695bc7c0b Mon Sep 17 00:00:00 2001 From: lu <123456> Date: 星期六, 23 八月 2025 15:39:04 +0800 Subject: [PATCH] 数据过滤 --- DevApp/Gs.DevApp/DevFrm/QC/Jyxm.cs | 23 ++++++++++++++++------- 1 files changed, 16 insertions(+), 7 deletions(-) diff --git a/DevApp/Gs.DevApp/DevFrm/QC/Jyxm.cs b/DevApp/Gs.DevApp/DevFrm/QC/Jyxm.cs index bff9872..027e071 100644 --- a/DevApp/Gs.DevApp/DevFrm/QC/Jyxm.cs +++ b/DevApp/Gs.DevApp/DevFrm/QC/Jyxm.cs @@ -48,7 +48,7 @@ txt_ftype.Text = strType; if (strType == QcSeason.iqc.ToString()) { - dfValue = 5; + dfValue = 5; gvMx1.Columns["funit"].Visible = true; gvMx1.Columns["funit"].VisibleIndex = 13; gvMx1.Columns["fcheckType"].Visible = false; @@ -62,7 +62,6 @@ { dfValue = 0; gvMx1.Columns["ypsl"].Visible = false; - } //濡傛灉鏄痠pqc宸℃锛屾樉绀哄伐浣� if (strType != QcSeason.ipqc宸℃.ToString()) @@ -251,6 +250,8 @@ gvList.Add(gvMx1); UtilityHelper.ChangeEnableByControl(this.layoutMx1.Controls, true, gvList); } + //2025/07/12鍔犱笂淇敼鐘舵�佷笅涓嶈兘淇敼 + txt_itemId.Enabled = false; } /// <summary> @@ -266,6 +267,7 @@ gridViews.Add(gvMx1); UtilityHelper.CleanValueByControl(this.layoutMx1.Controls, true, gridViews); UtilityHelper.SetDefaultTable(gcMx1, gvMx1); + this.txt_itemId.ReadOnly = true; } /// <summary> @@ -592,6 +594,7 @@ } if (_rtn.rtnCode > 0 && _rtn.rtnData.outSum * 1 > 0) { + MsgHelper.ShowInformation(_rtn.rtnData.outMsg.ToString()); if (xtraTabControl1.SelectedTabPageIndex == 1) { getModel(lbGuid.Text.Trim()); @@ -601,7 +604,8 @@ Form parentForm = this.FindForm(); UtilityHelper.SetCheckIco(gridView1, "foneChecked", "foneCheckor", "foneCheckdate", picCheckBox, parentForm, _inFieldValue.ToString()); } - MsgHelper.Warning(_rtn.rtnData.outMsg.ToString()); + else + MsgHelper.ShowError(_rtn.rtnData.outMsg.ToString()); } catch (Exception ex) { @@ -612,7 +616,7 @@ #region 浠ヤ笅涓虹绉嶄笅鎷� private void _setIno() { - txt_itemId.Click += (s, e) => + txt_itemId.ButtonClick += (s, e) => { var frm = new JyxmShow(this.strType); frm.UpdateParent += (ss, ee) => @@ -844,12 +848,17 @@ _webServiceName + "DeleteModelMx", JsonConvert.SerializeObject(lst)); var _rtn = UtilityHelper.ReturnToDynamic(strJson); - if (_rtn.rtnCode > 0) getModel(lbGuid.Text); - MsgHelper.Warning("鎻愮ず锛�" + _rtn.rtnMsg); + if (_rtn.rtnCode > 0) + { + getModel(lbGuid.Text); + MsgHelper.ShowInformation("鎻愮ず锛�" + _rtn.rtnMsg); + } + else + MsgHelper.ShowError("鎻愮ず锛�" + _rtn.rtnMsg); } catch (Exception ex) { - MsgHelper.Warning("鎻愮ず锛�" + ex.Message); + MsgHelper.ShowError("鎻愮ず锛�" + ex.Message); } } } -- Gitblit v1.9.3