private string[] GetDealer_Empl(int DE_UType, int DE_AD_OM_Code) { DataTable d = DL_PlacidData.GetDealer_Empl(DE_UType, DE_AD_OM_Code); string _u = DataConfiguration.GetString_Code(d, "DE_AU_Code"); return(_u.Split(',')); }
private string[] GetComm_HisList(long top, int type, int CH_CG_Code, int CH_UType, int CH_AD_OM_Code, DateTime CH_Update_dt) { DataTable d = DL_PlacidData.GetComm_HisList(top, type, CH_CG_Code, CH_UType, CH_AD_OM_Code, CH_Update_dt); string _c = DataConfiguration.GetString_Code(d, "CH_Code"); return(_c.Split(',')); }
/// <summary> /// 执行报表的SQL,返回某一列的数组形式 AU_Code /// </summary> /// <param name="Query"></param> /// <returns></returns> public string[] GetUserCode(string Query, string Code) { DataTable U = QueryExecution(Query); string Codes = DataConfiguration.GetString_Code(U, Code); return(Codes.Split(',')); }