From 27231629dc2d2b3d01d6f3396f2ed17f617f8192 Mon Sep 17 00:00:00 2001 From: kyy <3283105747@qq.com> Date: 星期四, 25 九月 2025 21:33:35 +0800 Subject: [PATCH] 1、销售订单增加筛选条件 --- DevApp/Gs.DevApp/DevFrm/Rk/Frm_MesInvItemIns.cs | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/DevApp/Gs.DevApp/DevFrm/Rk/Frm_MesInvItemIns.cs b/DevApp/Gs.DevApp/DevFrm/Rk/Frm_MesInvItemIns.cs index 9247549..20af9e3 100644 --- a/DevApp/Gs.DevApp/DevFrm/Rk/Frm_MesInvItemIns.cs +++ b/DevApp/Gs.DevApp/DevFrm/Rk/Frm_MesInvItemIns.cs @@ -1,3 +1,4 @@ +using Gs.DevApp.DevFrm.Rpt; using Gs.DevApp.Entity; using Gs.DevApp.ToolBox; using Gs.DevApp.UserControl; @@ -25,11 +26,13 @@ toolBarMenu1.btnFChkClick += ToolBarMenu1_btnFChkClick; toolBarMenu1.btnLogClick += ToolBarMenu1_btnLogClick; toolBarMenu1.btnDelClick += ToolBarMenu1_btnDelClick1; + toolBarMenu1.btnPrintClick += ToolBarMenu1_btnPrintClick; this.toolBarMenu1.getXmlConfig(); Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gvMx2); Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gvMx1); Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gvMxL2); Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gvMxL1); + Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, picCheckBox, this, "checkStatus", "", (value) => { Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 0); @@ -52,6 +55,34 @@ } + + private void ToolBarMenu1_btnPrintClick(object sender, EventArgs e) + { + string rowGuid, rowName; + (rowGuid, rowName) = UtilityHelper.GetCurrentRow(xtraTabControl1, lbGuid, txt_billNo, gridView1); + if (string.IsNullOrEmpty(rowGuid)) + { + this.toolBarMenu1.rptParameter = "return false"; + MsgHelper.Warning("璇峰厛閫夋嫨浣犺鎵撳嵃鐨勫崟鎹紒"); + return; + } + string rptParameter = "rpt_Cgrk{" + + rowGuid // @inOrderGuid - 鍗曟嵁guid + + "," + "100" // @isDesign - 閲嶆墦閮芥槸浼�100 + + "," + "" // @in1 - 鍏ュ簱鏃堕棿锛堟墿灞曠敤锛� + + "," + "" // @in2 - 鐗归噰锛堟墿灞曠敤锛� + + "," + "" // @in3 - 渚涘簲鍟唅d锛堟墿灞曠敤锛� + + "," + "" // @in4 - 寮犳暟锛堟墿灞曠敤锛� + + "," + "" // @in5 - 鏁伴噺锛堟墿灞曠敤锛� + + "," + "" // @in6 - 鎵╁睍鐢� + + "}"; + this.toolBarMenu1.rptParameter = rptParameter; + this.toolBarMenu1.guidKey = rowGuid; + + } + + + private void GridView1_ColumnFilterChanged(object sender, EventArgs e) { _filterList = Gs.DevApp.ToolBox.UtilityHelper.GetDilter(gridView1.Columns, gridView1); -- Gitblit v1.9.3