From fb2d93cbdf683e065d7ddf6f4cd1a88ff9be8cb3 Mon Sep 17 00:00:00 2001 From: geh <1923421292@qq.com> Date: Mon, 11 Aug 2025 16:02:24 +0800 Subject: [PATCH] 1 --- .../InspectionManagementStatistics.aspx.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/SUBQHSE/FineUIPro.Web/CQMS/ProcessControl/InspectionManagementStatistics.aspx.cs b/SUBQHSE/FineUIPro.Web/CQMS/ProcessControl/InspectionManagementStatistics.aspx.cs index 001c4ae..8051ba2 100644 --- a/SUBQHSE/FineUIPro.Web/CQMS/ProcessControl/InspectionManagementStatistics.aspx.cs +++ b/SUBQHSE/FineUIPro.Web/CQMS/ProcessControl/InspectionManagementStatistics.aspx.cs @@ -272,7 +272,14 @@ namespace FineUIPro.Web.CQMS.ProcessControl Response.ContentType = "application/excel"; Response.ContentEncoding = System.Text.Encoding.UTF8; this.Grid1.PageSize = this.Grid1.RecordCount; - this.BindGvInspectionManagement(null); + if (this.drpCNProfessional.SelectedValue !=BLL.Const._Null) + { + BindGvInspectionManagement(this.drpCNProfessional.SelectedValue); + } + else + { + BindGvInspectionManagement(null); + } Response.Write(GetGridTableHtml(Grid1)); Response.End(); }