270 lines
11 KiB
C#
270 lines
11 KiB
C#
using BLL;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Data.SqlClient;
|
|
using System.Linq;
|
|
|
|
namespace FineUIPro.Web.HSSE.Accident
|
|
{
|
|
public partial class AccidentHandle : PageBase
|
|
{
|
|
#region 加载
|
|
/// <summary>
|
|
/// 加载页面
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!IsPostBack)
|
|
{
|
|
Funs.DropDownPageSize(this.ddlPageSize);
|
|
////权限按钮方法
|
|
this.GetButtonPower();
|
|
this.btnNew.OnClientClick = Window1.GetShowReference("AccidentHandleEdit.aspx") + "return false;";
|
|
if (this.CurrUser != null && this.CurrUser.PageSize.HasValue)
|
|
{
|
|
Grid1.PageSize = this.CurrUser.PageSize.Value;
|
|
}
|
|
this.ddlPageSize.SelectedValue = Grid1.PageSize.ToString();
|
|
|
|
// 绑定表格
|
|
this.BindGrid();
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 绑定数据
|
|
/// </summary>
|
|
private void BindGrid()
|
|
{
|
|
string strSql = @"SELECT AccidentHandle.AccidentHandleId,"
|
|
+ @"AccidentHandle.ProjectId,"
|
|
+ @"CodeRecords.Code AS AccidentHandleCode,"
|
|
+ @"AccidentHandle.AccidentHandleName,"
|
|
+ @"AccidentHandle.AccidentDate,"
|
|
+ @"AccidentHandle.AccidentDef,"
|
|
+ @"AccidentHandle.Death,"
|
|
+ @"AccidentHandle.MoneyLoss,"
|
|
+ @"AccidentHandle.AccidentHandle,"
|
|
+ @"AccidentHandle.Remark,"
|
|
+ @"AccidentHandle.States,"
|
|
+ @"AccidentHandle.CompileMan,"
|
|
+ @"AccidentHandle.CompileDate,Unit.UnitName,"
|
|
+ @"(CASE WHEN AccidentHandle.States = " + BLL.Const.State_0 + " OR AccidentHandle.States IS NULL THEN '待['+ISNULL(OperateUser.UserName,Users.UserName)+']提交' WHEN AccidentHandle.States = " + BLL.Const.State_2 + " THEN '审核/审批完成' ELSE '待['+OperateUser.UserName+']办理' END) AS FlowOperateName"
|
|
+ @" FROM Accident_AccidentHandle AS AccidentHandle "
|
|
+ @" LEFT JOIN Sys_CodeRecords AS CodeRecords ON AccidentHandle.AccidentHandleId = CodeRecords.DataId "
|
|
+ @" LEFT JOIN Sys_FlowOperate AS FlowOperate ON AccidentHandle.AccidentHandleId = FlowOperate.DataId AND FlowOperate.IsClosed <> 1"
|
|
+ @" LEFT JOIN Sys_User AS OperateUser ON FlowOperate.OperaterId = OperateUser.UserId"
|
|
+ @" LEFT JOIN Base_Unit AS Unit ON AccidentHandle.UnitId = Unit.UnitId"
|
|
+ @" LEFT JOIN Sys_User AS Users ON AccidentHandle.CompileMan = Users.UserId WHERE 1=1 ";
|
|
List<SqlParameter> listStr = new List<SqlParameter>();
|
|
strSql += " AND AccidentHandle.ProjectId = @ProjectId";
|
|
if (!string.IsNullOrEmpty(Request.Params["projectId"])) ///是否文件柜查看页面传项目值
|
|
{
|
|
listStr.Add(new SqlParameter("@ProjectId", Request.Params["projectId"]));
|
|
strSql += " AND AccidentHandle.States = @States"; ///状态为已完成
|
|
listStr.Add(new SqlParameter("@States", BLL.Const.State_2));
|
|
}
|
|
else
|
|
{
|
|
listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId));
|
|
}
|
|
|
|
if (!string.IsNullOrEmpty(this.txtAccidentHandleName.Text.Trim()))
|
|
{
|
|
strSql += " AND AccidentHandle.AccidentHandleName LIKE @AccidentHandleName";
|
|
listStr.Add(new SqlParameter("@AccidentHandleName", "%" + this.txtAccidentHandleName.Text.Trim() + "%"));
|
|
}
|
|
if (!string.IsNullOrEmpty(this.txtStartDate.Text.Trim()))
|
|
{
|
|
strSql += " AND AccidentHandle.AccidentDate >= @StartDate";
|
|
listStr.Add(new SqlParameter("@StartDate", this.txtStartDate.Text.Trim()));
|
|
}
|
|
if (!string.IsNullOrEmpty(this.txtEndDate.Text.Trim()))
|
|
{
|
|
strSql += " AND AccidentHandle.AccidentDate <= @EndDate";
|
|
listStr.Add(new SqlParameter("@EndDate", this.txtEndDate.Text.Trim()));
|
|
}
|
|
SqlParameter[] parameter = listStr.ToArray();
|
|
DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
|
|
Grid1.RecordCount = tb.Rows.Count;
|
|
var table = this.GetPagedDataTable(Grid1, tb);
|
|
Grid1.DataSource = table;
|
|
Grid1.DataBind();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 改变索引事件
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e)
|
|
{
|
|
BindGrid();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 分页下拉选择事件
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e)
|
|
{
|
|
this.Grid1.PageSize = Convert.ToInt32(this.ddlPageSize.SelectedValue);
|
|
BindGrid();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e)
|
|
{
|
|
this.BindGrid();
|
|
}
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// 查询
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void btnQuery_Click(object sender, EventArgs e)
|
|
{
|
|
if (!string.IsNullOrEmpty(this.txtStartDate.Text.Trim()) && !string.IsNullOrEmpty(this.txtEndDate.Text.Trim()))
|
|
{
|
|
if (Convert.ToDateTime(this.txtStartDate.Text.Trim()) > Convert.ToDateTime(this.txtEndDate.Text.Trim()))
|
|
{
|
|
Alert.ShowInTop("开始时间不能大于结束时间", MessageBoxIcon.Warning);
|
|
return;
|
|
}
|
|
}
|
|
this.BindGrid();
|
|
|
|
BLL.LogService.AddSys_Log(this.CurrUser, string.Empty, string.Empty, BLL.Const.ProjectAccidentHandleMenuId, Const.BtnQuery);
|
|
}
|
|
|
|
#region 编辑
|
|
/// <summary>
|
|
/// 双击事件
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void Grid1_RowDoubleClick(object sender, GridRowClickEventArgs e)
|
|
{
|
|
this.EditData();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 右键编辑事件
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void btnMenuEdit_Click(object sender, EventArgs e)
|
|
{
|
|
this.EditData();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 编辑数据方法
|
|
/// </summary>
|
|
private void EditData()
|
|
{
|
|
if (Grid1.SelectedRowIndexArray.Length == 0)
|
|
{
|
|
Alert.ShowInTop("请至少选择一条记录!", MessageBoxIcon.Warning);
|
|
return;
|
|
}
|
|
string id = Grid1.SelectedRowID;
|
|
var accidentHandle = BLL.AccidentHandleService.GetAccidentHandleById(id);
|
|
if (accidentHandle != null)
|
|
{
|
|
if (this.btnMenuEdit.Hidden || accidentHandle.States == BLL.Const.State_2) ////双击事件 编辑权限有:编辑页面,无:查看页面 或者状态是完成时查看页面
|
|
{
|
|
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("AccidentHandleView.aspx?AccidentHandleId={0}", id), "HSE事故(含未遂)处理查看"));
|
|
}
|
|
else
|
|
{
|
|
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("AccidentHandleEdit.aspx?AccidentHandleId={0}", id), "HSE事故(含未遂)处理编辑"));
|
|
}
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 删除
|
|
/// <summary>
|
|
/// 右键删除事件
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void btnMenuDelete_Click(object sender, EventArgs e)
|
|
{
|
|
if (Grid1.SelectedRowIndexArray.Length > 0)
|
|
{
|
|
foreach (int rowIndex in Grid1.SelectedRowIndexArray)
|
|
{
|
|
string rowID = Grid1.DataKeys[rowIndex][0].ToString();
|
|
var getV = BLL.NoFourLetoffService.GetNoFourLetoffByAccidentHandleId(rowID);
|
|
if (getV != null)
|
|
{
|
|
BLL.LogService.AddSys_Log(this.CurrUser, getV.NoFourLetoffCode, getV.AccidentHandleId, BLL.Const.ProjectAccidentHandleMenuId, Const.BtnDelete);
|
|
BLL.NoFourLetoffService.DeleteNoFourLetoffByAccidentHandleId(rowID);
|
|
BLL.AccidentHandleService.DeleteAccidentHandleById(rowID);
|
|
}
|
|
}
|
|
|
|
this.BindGrid();
|
|
ShowNotify("删除数据成功!", MessageBoxIcon.Success);
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region Grid行点击事件
|
|
/// <summary>
|
|
/// Grid行点击事件
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void Grid1_RowCommand(object sender, GridCommandEventArgs e)
|
|
{
|
|
if (e.CommandName == "NoFourLetoff")
|
|
{
|
|
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("NoFourLetoffEdit.aspx?AccidentHandleId={0}", e.CommandArgument.ToString()),"四不放过编制"));
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 获取按钮权限
|
|
/// <summary>
|
|
/// 获取按钮权限
|
|
/// </summary>
|
|
/// <param name="button"></param>
|
|
/// <returns></returns>
|
|
private void GetButtonPower()
|
|
{
|
|
if (Request.Params["value"] == "0")
|
|
{
|
|
return;
|
|
}
|
|
var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.ProjectAccidentHandleMenuId);
|
|
if (buttonList.Count() > 0)
|
|
{
|
|
if (buttonList.Contains(BLL.Const.BtnAdd))
|
|
{
|
|
this.btnNew.Hidden = false;
|
|
}
|
|
if (buttonList.Contains(BLL.Const.BtnModify))
|
|
{
|
|
this.btnMenuEdit.Hidden = false;
|
|
}
|
|
if (buttonList.Contains(BLL.Const.BtnDelete))
|
|
{
|
|
this.btnMenuDelete.Hidden = false;
|
|
}
|
|
}
|
|
}
|
|
#endregion
|
|
}
|
|
} |