lu
2025-03-03 a953e6d285ad4e1fd5c1d15074d7df923581edd4
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 "";
        }
    }
}