221 lines
7.3 KiB
C#
221 lines
7.3 KiB
C#
using BLL;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace FineUIPro.Web.HJGL.HotHardManage
|
|
{
|
|
public partial class ShowHotHardSearch : PageBase
|
|
{
|
|
#region 定义变量
|
|
/// <summary>
|
|
/// 单位ID
|
|
/// </summary>
|
|
public string UnitId
|
|
{
|
|
get
|
|
{
|
|
return (string)ViewState["UnitId"];
|
|
}
|
|
set
|
|
{
|
|
ViewState["UnitId"] = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 装置id
|
|
/// </summary>
|
|
public string InstallationId
|
|
{
|
|
get
|
|
{
|
|
return (string)ViewState["InstallationId"];
|
|
}
|
|
set
|
|
{
|
|
ViewState["InstallationId"] = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 选择列表
|
|
/// </summary>
|
|
public List<string> CheckList
|
|
{
|
|
get
|
|
{
|
|
return (List<string>)ViewState["CheckList"];
|
|
}
|
|
set
|
|
{
|
|
ViewState["CheckList"] = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 定义集合
|
|
/// </summary>
|
|
private static List<Model.View_HotHardSearch> hotHardSearchLists = new List<Model.View_HotHardSearch>();
|
|
#endregion
|
|
|
|
#region 加载
|
|
/// <summary>
|
|
/// 加载页面
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!IsPostBack)
|
|
{
|
|
this.UnitId = Request.Params["unitId"];
|
|
this.InstallationId = Request.Params["installationId"];
|
|
|
|
var unit = BLL.UnitService.GetUnitByUnitId(this.CurrUser.UnitId);
|
|
if (BLL.WorkAreaService.IsSupervisor(this.CurrUser.UnitId, this.CurrUser.LoginProjectId))
|
|
{
|
|
BLL.WorkAreaService.GetWorkAreaListByInstallSupervisorUnit(this.drpWorkArea, this.CurrUser.LoginProjectId, this.InstallationId, this.UnitId, this.CurrUser.UnitId, true);
|
|
}
|
|
else
|
|
{
|
|
BLL.WorkAreaService.GetWorkAreaListByInstallUnit(this.drpWorkArea, this.CurrUser.LoginProjectId, this.InstallationId, this.UnitId, true);
|
|
}
|
|
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 查询
|
|
/// <summary>
|
|
///查询按钮
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void btnSearch_Click(object sender, EventArgs e)
|
|
{
|
|
if (this.drpWorkArea.SelectedValue != BLL.Const._Null && !string.IsNullOrEmpty(this.drpWorkArea.SelectedValue))
|
|
{
|
|
this.InitTreeMenu(this.drpWorkArea.SelectedValue);//加载树
|
|
}
|
|
else
|
|
{
|
|
Alert.ShowInTop("请选择区域!", MessageBoxIcon.Warning);
|
|
return;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 加载树
|
|
/// <summary>
|
|
/// 加载树节点
|
|
/// </summary>
|
|
/// <param name="selectedValue"></param>
|
|
private void InitTreeMenu(string workAreaId)
|
|
{
|
|
if (!string.IsNullOrEmpty(workAreaId))
|
|
{
|
|
this.tvControlItem.Nodes.Clear();
|
|
TreeNode rootNode = new TreeNode();
|
|
rootNode.Text = BLL.WorkAreaService.GetWorkAreaCodeByWorkAreaId(workAreaId);
|
|
rootNode.NodeID = workAreaId;
|
|
rootNode.Expanded = true;
|
|
this.tvControlItem.Nodes.Add(rootNode);
|
|
|
|
var trustSearch = from x in Funs.DB.View_HotHardSearch
|
|
where x.ProjectId == this.CurrUser.LoginProjectId && x.UnitId == this.UnitId && x.WorkAreaId == workAreaId
|
|
select x;
|
|
if (!string.IsNullOrEmpty(this.txtISO_ID.Text.Trim()))
|
|
{
|
|
trustSearch = trustSearch.Where(x => x.ISO_IsoNo.Contains(this.txtISO_ID.Text.Trim()));
|
|
}
|
|
var hotProessId = (from x in trustSearch select x.HotProessId).Distinct();
|
|
if (hotProessId != null)
|
|
{
|
|
foreach (var id in hotProessId)
|
|
{
|
|
var hotProess = from x in Funs.DB.HotProess
|
|
where x.HotProessId == id.ToString() && x.InstallationId == this.InstallationId
|
|
select x;
|
|
foreach (var itm in hotProess)
|
|
{
|
|
TreeNode newNode = new TreeNode();
|
|
newNode.Text = itm.HotProessNo;
|
|
newNode.NodeID = itm.HotProessId;
|
|
newNode.Expanded = true;
|
|
newNode.EnableCheckEvent = true;
|
|
//newNode.EnableClickEvent = true;
|
|
rootNode.Nodes.Add(newNode);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region Tree选中事件
|
|
/// <summary>
|
|
/// Tree选中事件
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void tvControlItem_NodeCheck(object sender, TreeCheckEventArgs e)
|
|
{
|
|
CheckList = new List<string>();
|
|
TreeNode[] nodes = tvControlItem.GetCheckedNodes();
|
|
if (nodes.Length > 0)
|
|
{
|
|
StringBuilder sb = new StringBuilder();
|
|
foreach (TreeNode node in nodes)
|
|
{
|
|
CheckList.Add(node.NodeID);
|
|
}
|
|
}
|
|
BindGrid(CheckList);
|
|
}
|
|
#endregion
|
|
|
|
#region 数据绑定
|
|
/// <summary>
|
|
/// 数据绑定
|
|
/// </summary>
|
|
/// <param name="isoId"></param>
|
|
private void BindGrid(List<string> checkList)
|
|
{
|
|
hotHardSearchLists = (from x in Funs.DB.View_HotHardSearch where x.ProjectId == this.CurrUser.LoginProjectId select x).ToList();
|
|
if (checkList != null)
|
|
{
|
|
hotHardSearchLists = hotHardSearchLists.Where(e => checkList.Contains(e.HotProessId)).ToList();
|
|
}
|
|
this.Grid1.DataSource = hotHardSearchLists;
|
|
this.Grid1.DataBind();
|
|
}
|
|
#endregion
|
|
|
|
#region 确定按钮
|
|
/// <summary>
|
|
/// 确定按钮
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void btnSure_Click(object sender, EventArgs e)
|
|
{
|
|
string selectedList = string.Empty;
|
|
foreach (var item in Grid1.SelectedRowIDArray)
|
|
{
|
|
selectedList += item + ",";
|
|
}
|
|
if (!string.IsNullOrEmpty(selectedList))
|
|
{
|
|
selectedList = selectedList.Substring(0, selectedList.LastIndexOf(","));
|
|
}
|
|
PageContext.RegisterStartupScript(ActiveWindow.GetWriteBackValueReference(selectedList)
|
|
+ ActiveWindow.GetHidePostBackReference());
|
|
}
|
|
#endregion
|
|
}
|
|
} |