From aa61ade84d2657a9fb37993378c6fba4680b5ddf Mon Sep 17 00:00:00 2001 From: lu <99954486@qq.com> Date: 星期五, 27 十二月 2024 09:39:11 +0800 Subject: [PATCH] 调拨 --- DevApp/Gs.DevApp/UserControl/UcLookCk.cs | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/DevApp/Gs.DevApp/UserControl/UcLookCk.cs b/DevApp/Gs.DevApp/UserControl/UcLookCk.cs index b99b673..99b088f 100644 --- a/DevApp/Gs.DevApp/UserControl/UcLookCk.cs +++ b/DevApp/Gs.DevApp/UserControl/UcLookCk.cs @@ -87,7 +87,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