Add service levels quota view to space stats & org stats pages. Change quota type.

Expand collapsible panel when user have level id on user settings page.
This commit is contained in:
vfedosevich 2014-09-23 18:15:36 +03:00
parent 243c065ebb
commit b5444f10ec
10 changed files with 334 additions and 60 deletions

View file

@ -365,6 +365,7 @@ namespace WebsitePanel.EnterpriseServer
quota.QuotaId = (int)dr["QuotaId"];
quota.GroupId = (int)dr["GroupId"];
quota.QuotaName = (string)dr["QuotaName"];
quota.QuotaDescription = ((object)dr["QuotaDescription"]).GetType() == typeof(System.DBNull) ? string.Empty : (string)dr["QuotaDescription"];
quota.QuotaTypeId = (int)dr["QuotaTypeId"];
quota.QuotaAllocatedValue = (int)dr["QuotaValue"];
quota.QuotaUsedValue = (int)dr["QuotaUsedValue"];