79 lines
2.8 KiB
C#
79 lines
2.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
using DocumentFormat.OpenXml.Bibliography;
|
|
using DocumentFormat.OpenXml.Wordprocessing;
|
|
using Foresight.Fleet.Services.User;
|
|
using IronIntel.Contractor;
|
|
using IronIntel.Contractor.Site.Maintenance;
|
|
|
|
public partial class Maintenance_AlertsManagement : AlertsBasePage
|
|
{
|
|
public string BeginDate = "";
|
|
public string EndDate = "";
|
|
public string AssetID = "";
|
|
public bool InDialog = false;
|
|
protected string AlertViewApiAddress;
|
|
protected string AssetViewApiAddress;
|
|
protected string AcknowledgedApiAddress;
|
|
protected string CompanyID;
|
|
|
|
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("AlertsManagement");
|
|
if (!license)
|
|
RedirectToLoginPage();
|
|
|
|
bool permission = CheckRight(SystemParams.CompanyID, Feature.ALERTS_MANAGEMENT);
|
|
if (!permission)
|
|
RedirectToLoginPage();
|
|
|
|
AssetID = Request.Params["mid"] ?? "";
|
|
InDialog = Request.Params["InDialog"] == "1";
|
|
|
|
if (!Request.Url.AbsoluteUri.Contains("localhost") && "https".Equals(Request.Url.Scheme, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
AlertViewApiAddress = SystemParams.CurrentCustomerParams.AlertListApiAddress_AlertView;
|
|
AssetViewApiAddress = SystemParams.CurrentCustomerParams.AlertListApiAddress_AssetView;
|
|
AcknowledgedApiAddress = SystemParams.CurrentCustomerParams.AlertListApiAddress_Acknowledged;
|
|
}
|
|
CompanyID = SystemParams.CompanyID;
|
|
}
|
|
|
|
DateTime userlocaldate = SystemParams.ConvertToUserTimeFromUtc(GetCurrentLoginSession().User, DateTime.UtcNow);
|
|
if (InDialog)
|
|
BeginDate = userlocaldate.AddDays(-13).ToString("yyyy-MM-dd");
|
|
else
|
|
BeginDate = userlocaldate.AddDays(-6).ToString("yyyy-MM-dd");
|
|
|
|
EndDate = userlocaldate.ToString("yyyy-MM-dd");
|
|
}
|
|
}
|
|
|
|
public bool CanEditWorkOrder
|
|
{
|
|
get
|
|
{
|
|
bool license = SystemParams.HasLicense("WorkOrder");
|
|
bool permission = CheckRight(SystemParams.CompanyID, Feature.WORK_ORDER);
|
|
return license && permission;
|
|
}
|
|
}
|
|
} |