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
|
||||
|
||||
|
|
|
@ -326,6 +326,15 @@ namespace WebsitePanel.EnterpriseServer
|
|||
filterColumn, filterValue, statusId, roleId, sortColumn, startRow,
|
||||
maximumRows, colType, fullType, false, onlyFind);
|
||||
}
|
||||
public static DataSet GetSearchTableByColumns(string PagedStored, string FilterValue, int MaximumRows,
|
||||
bool Recursive, int PoolID, int ServerID, int StatusID, int PlanID, int OrgID,
|
||||
string ItemTypeName, string GroupName, int PackageID, string VPSType, int RoleID, int UserID,
|
||||
string FilterColumns)
|
||||
{
|
||||
return DataProvider.GetSearchTableByColumns(PagedStored, FilterValue, MaximumRows,
|
||||
Recursive, PoolID, ServerID, SecurityContext.User.UserId, StatusID, PlanID, OrgID, ItemTypeName, GroupName,
|
||||
PackageID, VPSType, RoleID, UserID, FilterColumns);
|
||||
}
|
||||
//TODO END
|
||||
|
||||
public static DataSet GetPackageQuotas(int packageId)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue