lu
2025-03-01 c26069c9418efe9f9c0f963f43fb98b8a7440adf
DevApp/Gs.DevApp/UserControl/UcLookSales.cs
@@ -165,6 +165,33 @@
            }
            return "";
        }
        /// <summary>
        /// 收货方
        /// </summary>
        /// <returns></returns>
        public string GetSalesShf()
        {
            var row = lookSearchSupplier.GetSelectedDataRow() as DataRowView;
            if (row != null)
            {
                string id = row["shfTxt"].ToString();
                return id;
            }
            return "";
        }
        /// <summary>
        /// 收货人姓名
        /// </summary>
        /// <returns></returns>
        public string GetSalesShfName()
        {
            var row = lookSearchSupplier.GetSelectedDataRow() as DataRowView;
            if (row != null)
            {
                string id = row["shfName"].ToString();
                return id;
            }
            return "";
        }
    }
}