42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
using Foresight.Fleet.Services.User;
|
|
using IronIntel.Contractor;
|
|
using IronIntel.Contractor.Site;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
public partial class MachineDeviceManagement_MachineGroups : MachineDeviceBasePage
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!CheckLoginSession())
|
|
{
|
|
RedirectToLoginPage();
|
|
}
|
|
else
|
|
{
|
|
this.Title = PageTitle;
|
|
|
|
bool permission = CheckRight(SystemParams.CompanyID, Feature.MANAGE_ASSETS);
|
|
if (!permission)
|
|
RedirectToLoginPage();
|
|
}
|
|
}
|
|
protected override bool AllowCurrentLoginSessionEnter()
|
|
{
|
|
if (IronIntel.Contractor.SystemParams.IsDealer)
|
|
return false;
|
|
|
|
var f = base.AllowCurrentLoginSessionEnter();
|
|
if (!f)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var user = GetCurrentUser();
|
|
return user != null && user.UserType >= IronIntel.Contractor.Users.UserTypes.Admin;
|
|
}
|
|
} |