From 80fca75dc87026fc0ef2a634e1f08927339cde8a Mon Sep 17 00:00:00 2001 From: lu <99954486@qq.com> Date: 星期一, 14 四月 2025 08:10:34 +0800 Subject: [PATCH] 打印计算 --- DevApp/Gs.DevApp/DevFrm/QC/Jyxm.cs | 15 +++++++-------- 1 files changed, 7 insertions(+), 8 deletions(-) diff --git a/DevApp/Gs.DevApp/DevFrm/QC/Jyxm.cs b/DevApp/Gs.DevApp/DevFrm/QC/Jyxm.cs index 72c82d7..2d8979e 100644 --- a/DevApp/Gs.DevApp/DevFrm/QC/Jyxm.cs +++ b/DevApp/Gs.DevApp/DevFrm/QC/Jyxm.cs @@ -19,7 +19,8 @@ { private List<FilterEntity> _filterList = new List<FilterEntity>(); private readonly string _webServiceName = "MesQmCheckitemManager/"; - public string strType = ""; + public string strType = "";//iqc type + public decimal dfValue = 1; //iqc鐨勬牱鍝佹暟閲忛粯璁�5锛屽惁鍒�1 public Jyxm(string _strType) { InitializeComponent(); @@ -38,12 +39,10 @@ toolBarMenu1.btnQueryClick += ToolBarMenu1_btnQueryClick; toolBarMenu1.btnChkClick += ToolBarMenu1_btnChkClick; toolBarMenu1.btnPiZhunClick += ToolBarMenu1_btnPiZhunClick; - //iqc鐨勬牱鍝佹暟閲忛粯璁�5锛屽惁鍒�1 - decimal _dfValue = 1; if (strType == "iqc") - _dfValue = 5; + dfValue = 5; this.gvMx1.InitNewRow += (s, e) => { - this.gvMx1.SetRowCellValue(e.RowHandle, "ypsl", _dfValue); + this.gvMx1.SetRowCellValue(e.RowHandle, "ypsl", dfValue); int newIndex = gvMx1.DataRowCount + 1; this.gvMx1.SetRowCellValue(e.RowHandle, "forder", newIndex); }; @@ -117,7 +116,6 @@ parentForm = this.Parent as Form; else parentForm = this.Parent.Parent as Form; - gridView1.ColumnFilterChanged -= GridView1_ColumnFilterChanged; gridView1.ActiveFilter.Clear(); gridView1.ColumnFilterChanged += GridView1_ColumnFilterChanged; @@ -315,7 +313,6 @@ //鍋囧涓変釜閮戒负绌洪�氳繃 if (string.IsNullOrEmpty(_Fstand) && string.IsNullOrEmpty(_FupAllow) && string.IsNullOrEmpty(_FdownAllow)) { - } else { @@ -807,7 +804,9 @@ var _obj = new { sourceGuid = UtilityHelper.ToGuid(lbGuid.Text.Trim()), - itemGuids = _sbGuids.ToString() + itemGuids = _sbGuids.ToString(), + iqcType=this.strType, + ypsl=this.dfValue }; try { -- Gitblit v1.9.3