56 lines
1.5 KiB
C#
56 lines
1.5 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.Inspection;
|
|
using Foresight.Fleet.Services.User;
|
|
using IronIntel.Contractor;
|
|
using IronIntel.Contractor.Site;
|
|
|
|
public partial class ReportForWorkOrder : InspectionBasePage
|
|
{
|
|
protected string ReportID;
|
|
protected bool TeamIntelligence = false;
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
CheckUserToken();
|
|
if (!CheckLoginSession())
|
|
{
|
|
RedirectToLoginPage();
|
|
}
|
|
else
|
|
{
|
|
string methodName = Request.Form["MethodName"];
|
|
if (!string.IsNullOrEmpty(methodName))
|
|
{
|
|
ProcessRequest(methodName);
|
|
}
|
|
else if (!IsPostBack)
|
|
{
|
|
this.Title = PageTitle;
|
|
ReportID = Request.Params["rid"];
|
|
if (!string.IsNullOrEmpty(ReportID))
|
|
{
|
|
object ii = GetInspectItem(ReportID);
|
|
if (ii == null)
|
|
{//没有权限或ID不正确
|
|
Response.Write("You have no right to access the report.");
|
|
Response.End();
|
|
}
|
|
if (ii is TeamInspectItem)
|
|
TeamIntelligence = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
protected override bool CanDirectAccess
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
} |