search autocomplite: tables search fix
This commit is contained in:
parent
4b1235178f
commit
a060e139a1
34 changed files with 458 additions and 289 deletions
|
@ -160,6 +160,31 @@ namespace WebsitePanel.EnterpriseServer
|
|||
new SqlParameter("@FullType", fullType),
|
||||
new SqlParameter("@OnlyFind", onlyFind));
|
||||
}
|
||||
public static DataSet GetSearchTableByColumns(string PagedStored, string FilterValue, int MaximumRows,
|
||||
bool Recursive, int PoolID, int ServerID, int ActorID, int StatusID, int PlanID, int OrgID,
|
||||
string ItemTypeName, string GroupName, int PackageID, string VPSType, int RoleID, int UserID,
|
||||
string FilterColumns)
|
||||
{
|
||||
return SqlHelper.ExecuteDataset(ConnectionString, CommandType.StoredProcedure,
|
||||
ObjectQualifier + "GetSearchTableByColumns",
|
||||
new SqlParameter("@PagedStored", PagedStored),
|
||||
new SqlParameter("@FilterValue", FilterValue),
|
||||
new SqlParameter("@MaximumRows", MaximumRows),
|
||||
new SqlParameter("@Recursive", Recursive),
|
||||
new SqlParameter("@PoolID", PoolID),
|
||||
new SqlParameter("@ServerID", ServerID),
|
||||
new SqlParameter("@ActorID", ActorID),
|
||||
new SqlParameter("@StatusID", StatusID),
|
||||
new SqlParameter("@PlanID", PlanID),
|
||||
new SqlParameter("@OrgID", OrgID),
|
||||
new SqlParameter("@ItemTypeName", ItemTypeName),
|
||||
new SqlParameter("@GroupName", GroupName),
|
||||
new SqlParameter("@PackageID", PackageID),
|
||||
new SqlParameter("@VPSType", VPSType),
|
||||
new SqlParameter("@RoleID", RoleID),
|
||||
new SqlParameter("@UserID", UserID),
|
||||
new SqlParameter("@FilterColumns", FilterColumns));
|
||||
}
|
||||
|
||||
//TODO END
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue