76 lines
2.3 KiB
C#
76 lines
2.3 KiB
C#
using Foresight.Fleet.Services.User;
|
|
using IronIntel.Contractor;
|
|
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 AssetHistory : AssetBasePage
|
|
{
|
|
protected string IID;
|
|
public bool IsDealer = IronIntel.Contractor.SystemParams.IsDealer;
|
|
public string BeginDate = "";
|
|
public string EndDate = "";
|
|
public string CustomerId = "";
|
|
public string AssetId = "";
|
|
public bool IsOpen = false;
|
|
|
|
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)
|
|
{
|
|
bool license = SystemParams.HasLicense("WorkOrder");
|
|
if (!license)
|
|
RedirectToLoginPage();
|
|
bool permission = CheckRight(SystemParams.CompanyID, Feature.MANAGE_ASSETS);
|
|
if (!permission)
|
|
RedirectToLoginPage();
|
|
|
|
CustomerId = Request.Params["cid"];
|
|
AssetId = Request.Params["aid"];
|
|
IsOpen = Helper.IsTrue(Request.Params["isopen"]);
|
|
|
|
DateTime userlocaldate = SystemParams.ConvertToUserTimeFromUtc(GetCurrentLoginSession().User, DateTime.UtcNow);
|
|
BeginDate = userlocaldate.AddMonths(-1).ToString("yyyy-MM-dd");
|
|
EndDate = userlocaldate.ToString("yyyy-MM-dd");
|
|
}
|
|
}
|
|
}
|
|
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 IsSuperAdmin
|
|
{
|
|
get
|
|
{
|
|
var user = GetCurrentUser();
|
|
if (user.UserType == IronIntel.Contractor.Users.UserTypes.SupperAdmin)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
}
|
|
} |