fleet-contractor/Site/Maintenance/AlertMappingManagement.aspx.cs
2024-03-26 15:56:31 +08:00

53 lines
1.5 KiB
C#

using Foresight.Fleet.Services.User;
using IronIntel.Contractor;
using IronIntel.Contractor.Site.Maintenance;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class AlertMappingManagement : AlertsBasePage
{
protected void Page_Load(object sender, EventArgs e)
{
if (!CheckLoginSession())
{
// TODO: sub page
//RedirectToLoginPage();
}
else
{
string methodName = Request.Form["MethodName"];
if (!string.IsNullOrEmpty(methodName))
{
ProcessRequest(methodName);
}
else if (!IsPostBack)
{
bool license = SystemParams.HasLicense("AlertsManagement");
if (!license)
RedirectToLoginPage();
bool permission = CheckRight(SystemParams.CompanyID, Feature.ALERTS_MANAGEMENT);
if (!permission)
RedirectToLoginPage();
}
}
}
public bool IsSupperAdmin
{
get
{
var user = GetCurrentUser();
return user.UserType == IronIntel.Contractor.Users.UserTypes.SupperAdmin;
}
}
protected override bool AllowCurrentLoginSessionEnter()
{
var user = GetCurrentUser();
return user.UserType == IronIntel.Contractor.Users.UserTypes.SupperAdmin;
}
}