Fixed: Enterprise Organization Report did not show Lync user count

This commit is contained in:
robvde 2012-11-12 08:26:26 +04:00
parent ff8bebe9bd
commit 228219f5c3
2 changed files with 15 additions and 15 deletions

View file

@ -310,18 +310,6 @@ namespace WebsitePanel.EnterpriseServer.Code.HostedSolution
{
TaskManager.WriteError(ex);
}
}
if (report.OrganizationReport != null)
{
try
{
PopulateOrganizationStatisticsReport(org, report, topReseller);
}
catch(Exception ex)
{
TaskManager.WriteError(ex);
}
}
if (report.LyncReport != null)
@ -335,6 +323,19 @@ namespace WebsitePanel.EnterpriseServer.Code.HostedSolution
TaskManager.WriteError(ex);
}
}
if (report.OrganizationReport != null)
{
try
{
PopulateOrganizationStatisticsReport(org, report, topReseller);
}
catch(Exception ex)
{
TaskManager.WriteError(ex);
}
}
}
@ -517,7 +518,7 @@ namespace WebsitePanel.EnterpriseServer.Code.HostedSolution
stats.InstantMessaing = plan.IM;
stats.MobileAccess = plan.Mobility;
stats.LyncUserPlan = plan.LyncUserPlanName;
stats.DisplayName = lyncUser.DisplayName;
}
catch (Exception ex)
{