From 9e6ef4b357b46a8f91bf74500d06af1f48567cb7 Mon Sep 17 00:00:00 2001
From: lu <99954486@qq.com>
Date: 星期三, 12 二月 2025 08:10:18 +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