From 47d90c78a5e00f50e804705aa208ff1f264cb4f6 Mon Sep 17 00:00:00 2001 From: lu <99954486@qq.com> Date: 星期日, 09 二月 2025 12:09:19 +0800 Subject: [PATCH] 工单细节 --- DevApp/Gs.DevApp/UserControl/UcLookCk.cs | 35 ++++++++++++++++++++++++++++++++++- 1 files changed, 34 insertions(+), 1 deletions(-) diff --git a/DevApp/Gs.DevApp/UserControl/UcLookCk.cs b/DevApp/Gs.DevApp/UserControl/UcLookCk.cs index b99b673..c4c3353 100644 --- a/DevApp/Gs.DevApp/UserControl/UcLookCk.cs +++ b/DevApp/Gs.DevApp/UserControl/UcLookCk.cs @@ -35,7 +35,7 @@ string _keyWhere = ""; if (!string.IsNullOrEmpty(orgId)) _keyWhere = " and a.FSubsidiary ='" + orgId + "'"; - var pgq = new PageQueryModel(1, 999999, "depot_code", "asc", "", + var pgq = new PageQueryModel(1, 999999, "org.FNumber asc ,a.depot_code", "asc", "", " and is_ng='A'"+_keyWhere); var json = JsonConvert.SerializeObject(pgq); try @@ -47,6 +47,8 @@ lookSearchSupplier.Properties.DataSource = dt; lookSearchSupplier.Properties.DisplayMember = "depotName"; lookSearchSupplier.Properties.ValueMember = "depotId"; + lookSearchSupplier.ForceInitialize(); + lookSearchSupplier.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup; } catch (Exception ex) { @@ -87,7 +89,38 @@ lookSearchSupplier.EditValue = null; return; } + if(!string.IsNullOrEmpty(Code)) lookSearchSupplier.EditValue = Int64.Parse(((Code.ToString().Trim()))); } + + /// <summary> + /// 璇诲彇缁勭粐ID + /// </summary> + /// <returns></returns> + public string GetOrgId() + { + var row = lookSearchSupplier.GetSelectedDataRow() as DataRowView; + if (row != null) + { + string id = row["OrgId"].ToString(); + return id; + } + return ""; + } + + /// <summary> + /// 璇诲彇缁勭粐鍚嶇О + /// </summary> + /// <returns></returns> + public string GetOrgName() + { + var row = lookSearchSupplier.GetSelectedDataRow() as DataRowView; + if (row != null) + { + string id = row["OrgName"].ToString(); + return id; + } + return ""; + } } } \ No newline at end of file -- Gitblit v1.9.3