fleet-contractor/Site/Maintenance/WorkOrderMaintenance.aspx.cs
2023-05-30 17:34:56 +08:00

125 lines
4.8 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_WorkOrderMaintenance : WorkOrderBasePage
{
public string AssetID = "";
public bool InDialog = false;
public bool AllowWorkOrderConfiguration = false;
public bool IsCustomerRecordAllow = false;
public bool AllowCustomer = false;
public bool AllowReopenWorkorders = false;
public bool AllowWorkOrderSurveys = false;
protected string MSGWebSocketURL = "";
public string NowDate = "";
public bool WOReadOnly = false;
public bool CRReadOnly = false;
public bool COMMReadOnly = false;
public bool AllowCommunicate = false;
public bool AllowInspection = false;
public bool AllowReassignWorkorders = false;
public bool AllowDeleteAtta = false;
protected string CID = "";
protected void Page_Load(object sender, EventArgs e)
{
string methodName = Request.Form["MethodName"];
string requesttype = Request.Params["rt"];
if (!string.IsNullOrEmpty(methodName))
{
ProcessRequest(methodName);
}
else if (!string.IsNullOrEmpty(requesttype) && requesttype.ToLower() == "f")
{
ProcessFileRequest();
}
else if (!IsPostBack)
{
CheckLoginSession();
bool license = SystemParams.HasLicense("WorkOrder");
if (!license)
RedirectToLoginPage();
bool permission = CheckRight(SystemParams.CompanyID, Feature.WORK_ORDER);
if (!permission)
RedirectToLoginPage();
WOReadOnly = CheckReadonly(SystemParams.CompanyID, Feature.WORK_ORDER);
AllowWorkOrderConfiguration = CheckRight(SystemParams.CompanyID, Feature.WORKORDERCONFIGURATION);
IsCustomerRecordAllow = SystemParams.HasLicense("CustomerRecord");
bool crpermission = CheckRight(SystemParams.CompanyID, Feature.CUSTOMER_RECORD);
AllowCustomer = IsCustomerRecordAllow && crpermission;
AllowReopenWorkorders = !WOReadOnly && CheckRight(SystemParams.CompanyID, Feature.REOPENWORKORDERS);
AllowWorkOrderSurveys = !WOReadOnly && CheckRight(SystemParams.CompanyID, Feature.WORKORDERSURVEYS);
CRReadOnly = WOReadOnly || CheckReadonly(SystemParams.CompanyID, Feature.CUSTOMER_RECORD);
COMMReadOnly = WOReadOnly || CheckReadonly(SystemParams.CompanyID, Feature.COMMUNICATEWITHCUSTOMER);
AllowCommunicate = CheckRight(SystemParams.CompanyID, Feature.COMMUNICATEWITHCUSTOMER);
license = SystemParams.HasLicense("Inspection");
AllowInspection = license && CheckRight(SystemParams.CompanyID, Feature.INSPECTION_REPORTS);
AllowReassignWorkorders = !WOReadOnly && CheckRight(SystemParams.CompanyID, Feature.REASSIGN_WORKORDERS);
AllowDeleteAtta = !WOReadOnly && CheckRight(SystemParams.CompanyID, Feature.WORKORDERDELETEATTACHMENT);
AllowCommunicate = IsCustomerRecordAllow && AllowCommunicate;
AssetID = Request.Params["mid"] ?? "";
InDialog = Request.Params["InDialog"] == "1";
MSGWebSocketURL = SystemParams.WebSocketURL + "&msgcodes=500,501,502,503,504,505,506,507";
CID = SystemParams.CompanyID;
DateTime userlocaldate = SystemParams.ConvertToUserTimeFromUtc(GetCurrentLoginSession().User, DateTime.UtcNow);
NowDate = userlocaldate.ToShortDateString();
}
}
public bool CanViewMR
{
get
{
bool license = SystemParams.HasLicense("PreventativeMaintenance");
bool mrlicense = SystemParams.HasLicense("MaintenanceRecord");
bool permission = CheckRight(SystemParams.CompanyID, Feature.PREVENTATIVE_MAINTENANCE);
return !SystemParams.IsDealer && license && mrlicense && permission;
}
}
public bool IsSupperAdmin
{
get
{
var user = GetCurrentUser();
return user.UserType == IronIntel.Contractor.Users.UserTypes.SupperAdmin;
}
}
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 IsAdvisor
{
get
{
var user = GetCurrentUser();
if (user.ContactType == IronIntel.Contractor.Users.ContactTypes.Advisor)
return true;
else
return false;
}
}
}