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

43 lines
1.3 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 Maintenance_SurveyTemplateReport : WorkOrderBasePage
{
protected string IID;
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)
{
IID = GetCurrentLoginSession().User.UID;
this.Title = PageTitle;
bool license = SystemParams.HasLicense("CustomerRecord");
if (!license)
RedirectToLoginPage();
bool permission = CheckRight(SystemParams.CompanyID, Feature.CUSTOMER_RECORD);
bool permission1 = CheckRight(SystemParams.CompanyID, Feature.WORKORDERSURVEYS);
if (!permission || !permission1)
RedirectToLoginPage();
}
}
}
}