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

51 lines
1.2 KiB
C#

using IronIntel.Contractor;
using IronIntel.Contractor.Site.JobSite;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class JobSite : JobSitesBasePage
{
protected void Page_Load(object sender, EventArgs e)
{
string methodName = Request.Form["MethodName"];
if (!string.IsNullOrEmpty(methodName))
{
ProcessRequest();
}
else
{
Title = PageTitle;
if (CheckLoginSession())
{
bool license = SystemParams.HasLicense("JobSites");
if (!license)
RedirectToEntryPage();
}
}
}
//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;
//}
//protected override int FeatureID
//{
// get
// {
// return Foresight.Fleet.Services.User.Feature.JOB_SITES;
// }
//}
}