From 49e7d052cc72a98b10ba9c06268c8a1d79e94a5b Mon Sep 17 00:00:00 2001
From: lu <99954486@qq.com>
Date: 星期二, 15 四月 2025 11:14:10 +0800
Subject: [PATCH] fqc

---
 DevApp/Gs.DevApp/DevFrm/PDA/SelectPrint.cs |   12 +++---------
 1 files changed, 3 insertions(+), 9 deletions(-)

diff --git a/DevApp/Gs.DevApp/DevFrm/PDA/SelectPrint.cs b/DevApp/Gs.DevApp/DevFrm/PDA/SelectPrint.cs
index f8194ef..acb56d1 100644
--- a/DevApp/Gs.DevApp/DevFrm/PDA/SelectPrint.cs
+++ b/DevApp/Gs.DevApp/DevFrm/PDA/SelectPrint.cs
@@ -2,7 +2,6 @@
 using Gs.DevApp.ToolBox;
 using Newtonsoft.Json;
 using System;
-using System.Collections.Generic;
 using System.Data;
 using System.Windows.Forms;
 
@@ -10,7 +9,6 @@
 {
     public partial class SelectPrint : DevExpress.XtraEditors.XtraForm
     {
-        private readonly List<FilterEntity> _filterList = new List<FilterEntity>();
         private readonly string _webServiceName = "PrintInfoManager/";
         private string userGuid = "";
         /// <summary>
@@ -23,10 +21,7 @@
         {
             InitializeComponent();
             this.userGuid = _userGuid;
-            Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, null, null, null, "", (value) =>
-            {
-
-            });
+            Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, null, null, null, "", null, null, false);
             getPageList(1);
             btnIn.Click += (s, e) =>
             {
@@ -71,14 +66,13 @@
         /// <param name="pageSize">姣忛〉鍑犳潯</param>
         private void getPageList(int curPage)
         {
-            var _sbSqlWhere = UtilityHelper.GetSearchWhere(_filterList);
+            var _sbSqlWhere = "";
             var pgq = new PageQueryModel(curPage, 999999, "a.print_no", "asc",
                 "", _sbSqlWhere.ToString());
             var json = JsonConvert.SerializeObject(pgq);
             try
             {
-                var strReturn = UtilityHelper.HttpPost("",
-                    _webServiceName + "GetListPage", json);
+                var strReturn = UtilityHelper.HttpPost("", _webServiceName + "GetListPage", json);
                 var dd = UtilityHelper.ReturnToTablePage(strReturn);
                 if (dd.rtnCode > 0)
                 {

--
Gitblit v1.9.3