41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
using Foresight.Fleet.Services.User;
|
|
using IronIntel.Contractor;
|
|
using IronIntel.Contractor.Site.Maintenance;
|
|
|
|
public partial class FuelRecordChangeHistory : FuelRecordBasePage
|
|
{
|
|
public string FuelID = "";
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!CheckLoginSession())
|
|
{
|
|
RedirectToLoginPage();
|
|
}
|
|
else
|
|
{
|
|
string methodName = Request.Form["MethodName"];
|
|
if (!string.IsNullOrEmpty(methodName))
|
|
{
|
|
ProcessRequest(methodName);
|
|
}
|
|
else if (!IsPostBack)
|
|
{
|
|
this.Title = PageTitle;
|
|
bool license = SystemParams.HasLicense("FuelRecords");
|
|
if (!license)
|
|
RedirectToLoginPage();
|
|
|
|
bool permission = CheckRight(SystemParams.CompanyID, Feature.FUEL_RECORDS);
|
|
if (!permission)
|
|
RedirectToLoginPage();
|
|
FuelID = Request.Params["fuleid"];
|
|
}
|
|
}
|
|
}
|
|
} |