fleet-contractor/Site/Security/CurfewMovementTolerance.aspx.cs
2023-04-28 12:22:26 +08:00

46 lines
1.2 KiB
C#

using IronIntel.Contractor.Site.Security;
using System;
public partial class CurfewMovementTolerance : CurfewBasePage
{
public bool IsDealer = IronIntel.Contractor.SystemParams.IsDealer;
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)
{
// todo nothing
}
}
}
public bool IsAdmin
{
get
{
var user = GetCurrentUser();
if (user.UserType == IronIntel.Contractor.Users.UserTypes.SupperAdmin || user.UserType == IronIntel.Contractor.Users.UserTypes.Admin)
return true;
else
return false;
}
}
protected override bool AllowCurrentLoginSessionEnter()
{
var user = GetCurrentUser();
return user.UserType == IronIntel.Contractor.Users.UserTypes.SupperAdmin;
}
}