|
@ -0,0 +1,32 @@ |
|
|
|
|
|
using ICSSoft.Entity; |
|
|
|
|
|
using System; |
|
|
|
|
|
using System.Collections.Generic; |
|
|
|
|
|
using System.Data; |
|
|
|
|
|
|
|
|
|
|
|
namespace ICSSoft.DataProject |
|
|
|
|
|
{ |
|
|
|
|
|
public static class LanguageHelper |
|
|
|
|
|
{ |
|
|
|
|
|
public static Dictionary<string, string> GetName(string Code) |
|
|
|
|
|
{ |
|
|
|
|
|
WMSBarCoreModel model = new WMSBarCoreModel(); |
|
|
|
|
|
model.Code = Code; |
|
|
|
|
|
var resultStr = ICSSubmitService.PromptInformationGet(model); |
|
|
|
|
|
Dictionary<string, string> dic = new Dictionary<string, string>(); |
|
|
|
|
|
foreach (DataRow dr in resultStr.Rows) |
|
|
|
|
|
{ |
|
|
|
|
|
dic.Add(dr["Code"].ToString(), dr["Name"].ToString()); |
|
|
|
|
|
} |
|
|
|
|
|
return dic; |
|
|
|
|
|
} |
|
|
|
|
|
public static string GetNameSingle(string Code) |
|
|
|
|
|
{ |
|
|
|
|
|
WMSBarCoreModel model = new WMSBarCoreModel(); |
|
|
|
|
|
model.Code = Code; |
|
|
|
|
|
var resultStr = ICSSubmitService.PromptInformationGet(model); |
|
|
|
|
|
if (resultStr == null || resultStr.Rows.Count <= 0) |
|
|
|
|
|
throw new Exception(string.Format("未查询到编码:{0} 对应的信息!",Code)); |
|
|
|
|
|
return resultStr.Rows[0]["Name"].ToString(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |