From 652561038e3a76660bb27ca75b06c40be3da45bb Mon Sep 17 00:00:00 2001
From: 啊鑫 <t2856754968@163.com>
Date: 星期五, 25 十月 2024 18:56:55 +0800
Subject: [PATCH] 优化格式

---
 DevApp/Gs.DevApp/DevFrm/QC/Frm_MesSysLookups.cs |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/DevApp/Gs.DevApp/DevFrm/QC/Frm_MesSysLookups.cs b/DevApp/Gs.DevApp/DevFrm/QC/Frm_MesSysLookups.cs
index 141c987..595487e 100644
--- a/DevApp/Gs.DevApp/DevFrm/QC/Frm_MesSysLookups.cs
+++ b/DevApp/Gs.DevApp/DevFrm/QC/Frm_MesSysLookups.cs
@@ -7,10 +7,10 @@
 using DevExpress.XtraEditors;
 using DevExpress.XtraEditors.Controls;
 using DevExpress.XtraGrid.Views.Grid;
+using Gs.DevApp.DevFrm.QC.Models;
 using Gs.DevApp.Entity;
 using Gs.DevApp.ToolBox;
 using Gs.DevApp.UserControl;
-using MES.Service.Modes;
 using Newtonsoft.Json;
 using Newtonsoft.Json.Linq;
 
@@ -18,8 +18,8 @@
 {
     public partial class Frm_MesSysLookups : XtraForm
     {
-        private List<FilterEntity> _filterList = new List<FilterEntity>();
         private readonly string _webServiceName = "MesSysLookupTypesManager/";
+        private List<FilterEntity> _filterList = new List<FilterEntity>();
 
         public Frm_MesSysLookups()
         {
@@ -272,6 +272,8 @@
                 _sbSqlWhere.Append(" and " + itm.fileId + itm.fileOper + "'" +
                                    itm.fileValue + "'");
 
+            _sbSqlWhere.Append("and LOOKUP_TYPE_CODE = 'QATOOLS'");
+
             var pgq = new PageQueryModel(curPage, pageSize,
                 "create_date", "asc", "", _sbSqlWhere.ToString());
             var json = JsonConvert.SerializeObject(pgq);

--
Gitblit v1.9.3