2023-04-28 12:22:26 +08:00

88 lines
2.4 KiB
C#

using Foresight.Fleet.Services.User;
using IronIntel.Contractor;
using IronIntel.Contractor.Site.Asset;
using System;
public partial class ShareMachines : ShareAssetBasePage
{
public bool IsDealer = IronIntel.Contractor.SystemParams.IsDealer;
public bool IsReadOnly = false;
public string CurrentDate = "";
protected void Page_Load(object sender, EventArgs e)
{
string methodName = Request.Form["MethodName"];
if (!string.IsNullOrEmpty(methodName))
{
ProcessRequest(methodName);
}
else if (!IsPostBack)
{
if (!CheckLoginSession())
{
RedirectToLoginPage();
}
else
{
this.Title = PageTitle;
bool license = SystemParams.HasLicense("ShareAsset");
bool permission = CheckRight(SystemParams.CompanyID, Feature.MANAGE_ASSETS);
if (!permission || !license)
RedirectToLoginPage();
IsReadOnly = CheckReadonly(SystemParams.CompanyID, Feature.MANAGE_ASSETS);
}
}
DateTime userlocaldate = SystemParams.ConvertToUserTimeFromUtc(GetCurrentLoginSession().User, DateTime.UtcNow);
CurrentDate = userlocaldate.ToShortDateString();
}
protected override bool ThrowIfNotAllowed
{
get
{
return true;
}
}
protected override bool AllowCurrentLoginSessionEnter()
{
var f = base.AllowCurrentLoginSessionEnter();
if (!f)
{
return false;
}
var user = GetCurrentUser();
return user != null && user.UserType >= IronIntel.Contractor.Users.UserTypes.Common;
}
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;
}
}
public bool IsSupperAdmin
{
get
{
var user = GetCurrentUser();
return user.UserType == IronIntel.Contractor.Users.UserTypes.SupperAdmin;
}
}
public bool CheckRight
{
get
{
bool permission = CheckRight(SystemParams.CompanyID, Feature.MANAGE_ASSETS);
return permission;
}
}
}