From 48974adf85a97b47ce9e9784acc880b46c61acd1 Mon Sep 17 00:00:00 2001 From: lu <99954486@qq.com> Date: 星期六, 30 十一月 2024 13:27:57 +0800 Subject: [PATCH] 工单 --- DevApp/Gs.DevApp/UserControl/UcLookSupplier.cs | 24 ++++++++++++++++++------ 1 files changed, 18 insertions(+), 6 deletions(-) diff --git a/DevApp/Gs.DevApp/UserControl/UcLookSupplier.cs b/DevApp/Gs.DevApp/UserControl/UcLookSupplier.cs index 325dddd..5e0a7de 100644 --- a/DevApp/Gs.DevApp/UserControl/UcLookSupplier.cs +++ b/DevApp/Gs.DevApp/UserControl/UcLookSupplier.cs @@ -5,6 +5,7 @@ using Gs.DevApp.Entity; using Gs.DevApp.ToolBox; using Newtonsoft.Json; +using static DevExpress.XtraPrinting.Native.PageSizeInfo; namespace Gs.DevApp.UserControl { @@ -13,11 +14,11 @@ public UcLookSupplier() { InitializeComponent(); + lookSearchSupplier.Properties.NullText = "璇烽�夋嫨"; lookSearchSupplier.EditValueChanged += LookSearchSupplier_EditValueChanged; - getSuppler(); } - + public bool IsReadly { get; set; } private string _KeyFile = ""; public string KeyFile { @@ -25,6 +26,7 @@ set { _KeyFile = value; + if(!string.IsNullOrEmpty(value)) getSuppler(); } } @@ -41,13 +43,18 @@ private void getSuppler() { - var pgq = new PageQueryModel(1, 999999, "supp_no", "asc", "", - " and fforbidstatus='A'"); - var json = JsonConvert.SerializeObject(pgq); + var _obj = new + { + currentPage = 1, + everyPageSize = 999999, + sortName = "", + keyWhere = "", + }; + var json = JsonConvert.SerializeObject(_obj); try { var strReturn = UtilityHelper.HttpPost("", - "MesSupplierManager/GetListPage", json); + "MesSupplierManager/GetListSelect", json); var rtn = UtilityHelper.ReturnToTablePage(strReturn); var dt = rtn.rtnData.list; lookSearchSupplier.Properties.DataSource = dt; @@ -89,6 +96,11 @@ public void SetIdOrCode(string Code) { + if (Code == "-1") + { + lookSearchSupplier.EditValue = null; + return; + } if (KeyFile == "id") lookSearchSupplier.EditValue = Int64.Parse((Code.ToString().Trim())); else -- Gitblit v1.9.3