| | |
| | | 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 ""; |
| | | } |
| | | } |
| | | } |