82 lines
2.3 KiB
C#
82 lines
2.3 KiB
C#
using DocumentFormat.OpenXml.Wordprocessing;
|
|
using Foresight.Fleet.Services.User;
|
|
using IronIntel.Contractor;
|
|
using IronIntel.Contractor.Site;
|
|
using IronIntel.Contractor.Site.Asset;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
public partial class OdometerAdjustHistory : AssetBasePage
|
|
{
|
|
public string BeginDate = "";
|
|
public string EndDate = "";
|
|
public bool IsDealer = IronIntel.Contractor.SystemParams.IsDealer;
|
|
public string MachineID = "";
|
|
public string ContractorID = "";
|
|
|
|
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 permission = CheckRight(SystemParams.CompanyID, Feature.MANAGE_ASSETS);
|
|
if (!permission)
|
|
RedirectToLoginPage();
|
|
ContractorID = Request.Params["cid"];
|
|
MachineID = Request.Params["mid"];
|
|
}
|
|
}
|
|
DateTime userlocaldate = SystemParams.ConvertToUserTimeFromUtc(GetCurrentLoginSession().User, DateTime.UtcNow);
|
|
BeginDate = userlocaldate.AddMonths(-1).ToShortDateString();
|
|
EndDate = 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;
|
|
}
|
|
|
|
}
|
|
|
|
} |