2022-09-05 16:36:31 +08:00
|
|
|
|
using BLL;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Data;
|
|
|
|
|
|
using System.Data.SqlClient;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace FineUIPro.Web.CQMS.Material
|
|
|
|
|
|
{
|
|
|
|
|
|
public partial class Inspection : PageBase
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 项目id
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string ProjectId
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return (string)ViewState["ProjectId"];
|
|
|
|
|
|
}
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
ViewState["ProjectId"] = value;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
#region 加载页面
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 加载页面
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
// 表头过滤
|
|
|
|
|
|
//FilterDataRowItem = FilterDataRowItemImplement;
|
|
|
|
|
|
if (!IsPostBack)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.ProjectId = this.CurrUser.LoginProjectId;
|
|
|
|
|
|
//权限按钮方法
|
|
|
|
|
|
GetButtonPower();
|
|
|
|
|
|
BLL.UnitService.GetUnit(this.drpUnit, this.ProjectId, true);
|
|
|
|
|
|
Funs.FineUIPleaseSelect(this.drpState);
|
|
|
|
|
|
ddlPageSize.SelectedValue = Grid1.PageSize.ToString();
|
|
|
|
|
|
// 绑定表格
|
|
|
|
|
|
BindGrid();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
protected DataTable insklistData()
|
|
|
|
|
|
{
|
|
|
|
|
|
string strSql = @"SELECT ins.InspectionId,ins.InspectionCode,ins.ProjectId,ins.unitId,"
|
|
|
|
|
|
+ @" ins.IsSpotCheck,ins.IsNoticeAndSupervision,ins.CompileDate,ins.State,"
|
|
|
|
|
|
+ @" unit.UnitName,u.PersonName "
|
|
|
|
|
|
+ @" FROM Material_Inspection ins"
|
|
|
|
|
|
+ @" left join Base_Unit unit on unit.unitId=ins.unitId"
|
|
|
|
|
|
+ @" left join Person_Persons u on u.PersonId = ins.CompileMan"
|
|
|
|
|
|
+ @" where ins.ProjectId=@ProjectId";
|
|
|
|
|
|
|
|
|
|
|
|
List<SqlParameter> listStr = new List<SqlParameter>();
|
|
|
|
|
|
listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId));
|
|
|
|
|
|
if (drpUnit.SelectedValue != BLL.Const._Null)
|
|
|
|
|
|
{
|
|
|
|
|
|
strSql += " AND ins.unitId=@unitId";
|
|
|
|
|
|
listStr.Add(new SqlParameter("@unitId", drpUnit.SelectedValue));
|
|
|
|
|
|
}
|
|
|
|
|
|
if (drpState.SelectedValue != Const._Null)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (drpState.SelectedValue.Equals("C"))
|
|
|
|
|
|
{
|
|
|
|
|
|
strSql += " AND ins.state='C'";
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
strSql += " AND ins.state!='C'";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
SqlParameter[] parameter = listStr.ToArray();
|
|
|
|
|
|
DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
|
|
|
|
|
|
return tb;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 绑定数据
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
|
|
public void BindGrid()
|
|
|
|
|
|
{
|
|
|
|
|
|
DataTable tb = insklistData();
|
|
|
|
|
|
|
|
|
|
|
|
// 2.获取当前分页数据
|
|
|
|
|
|
//var table = this.GetPagedDataTable(Grid1, tb1);
|
|
|
|
|
|
|
|
|
|
|
|
Grid1.RecordCount = tb.Rows.Count;
|
|
|
|
|
|
tb = GetFilteredTable(Grid1.FilteredData, tb);
|
|
|
|
|
|
var table = this.GetPagedDataTable(Grid1, tb);
|
|
|
|
|
|
Grid1.DataSource = table;
|
|
|
|
|
|
Grid1.DataBind();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region 查询
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 查询
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
|
protected void TextBox_TextChanged(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.BindGrid();
|
|
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
#region 过滤表头、排序、分页、关闭窗口
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 过滤表头
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
|
protected void Grid1_FilterChange(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
BindGrid();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 分页
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
|
protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
Grid1.PageIndex = e.NewPageIndex;
|
|
|
|
|
|
BindGrid();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 排序
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
|
protected void Grid1_Sort(object sender, GridSortEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
//Grid1.SortDirection = e.SortDirection;
|
|
|
|
|
|
//Grid1.SortField = e.SortField;
|
|
|
|
|
|
BindGrid();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 分页显示条数下拉框
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
|
protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue);
|
|
|
|
|
|
BindGrid();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 关闭弹出窗
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
|
protected void Window1_Close(object sender, WindowCloseEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
BindGrid();
|
|
|
|
|
|
string str = this.hdID.Text;
|
|
|
|
|
|
if (!string.IsNullOrEmpty(str))
|
|
|
|
|
|
{
|
|
|
|
|
|
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("InspectionEdit.aspx?InspectionId={0}", str, "查看 - ")));
|
|
|
|
|
|
}
|
|
|
|
|
|
this.hdID.Text = string.Empty;
|
|
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
#region Grid双击事件
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Grid行双击事件
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
|
protected void Grid1_RowDoubleClick(object sender, GridRowClickEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
btnMenuModify_Click(null, null);
|
|
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
#region 编辑
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 编辑按钮
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
|
protected void btnMenuModify_Click(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (Grid1.SelectedRowIndexArray.Length == 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
Alert.ShowInTop("请至少选择一条记录!", MessageBoxIcon.Warning);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
string id = Grid1.SelectedRowID;
|
|
|
|
|
|
var ins = BLL.CQMS_InspectionService.GetInspectionByInspectionId(id);
|
|
|
|
|
|
|
|
|
|
|
|
if (ins != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (ins.State.Equals(Const.Inspection_Complete))
|
|
|
|
|
|
{
|
|
|
|
|
|
Alert.ShowInTop("流程已闭环,无法编辑,请右键查看!", MessageBoxIcon.Warning);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
Model.Material_InspectionApprove approve = BLL.CQMS_InspectionApproveService.GetInspectionApproveByInspectionId(id);
|
|
|
|
|
|
if (approve != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!string.IsNullOrEmpty(approve.ApproveMan))
|
|
|
|
|
|
{
|
|
|
|
|
|
if (this.CurrUser.PersonId == approve.ApproveMan || CurrUser.PersonId == Const.sysglyId)
|
|
|
|
|
|
{
|
|
|
|
|
|
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("InspectionEdit.aspx?InspectionId={0}", id, "编辑 - ")));
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
Alert.ShowInTop("您不是当前办理人,无法编辑,请右键查看!", MessageBoxIcon.Warning);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
Alert.ShowInTop("您不是当前办理人,无法编辑,请右键查看!", MessageBoxIcon.Warning);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
Alert.ShowInTop("您没有这个权限,请与管理员联系!", MessageBoxIcon.Warning);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
#region 删除
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 批量删除
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
|
protected void btnMenuDel_Click(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
if (Grid1.SelectedRowIndexArray.Length == 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
Alert.ShowInTop("请至少选择一条记录!", MessageBoxIcon.Warning);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
string id = Grid1.SelectedRowID;
|
|
|
|
|
|
var ins = BLL.CQMS_InspectionService.GetInspectionByInspectionId(id);
|
|
|
|
|
|
////删除附件表
|
|
|
|
|
|
BLL.CommonService.DeleteAttachFileById(id);
|
|
|
|
|
|
BLL.CQMS_MaterialTestService.DeleteMaterialTestById(id);
|
|
|
|
|
|
BLL.CQMS_NoticeAndSupervisionService.DeleteNoticeAndSupervisionById(id);
|
|
|
|
|
|
BLL.CQMS_InspectionApproveService.DeleteInspectionApprovesByInspectionId(id);
|
|
|
|
|
|
BLL.CQMS_InspectionService.DeleteInspectionById(id);
|
|
|
|
|
|
BLL.LogService.AddSys_Log(this.CurrUser, ins.InspectionCode, id, BLL.Const.InspectionMenuId, "删除报验记录");
|
|
|
|
|
|
Grid1.DataBind();
|
|
|
|
|
|
BindGrid();
|
|
|
|
|
|
Alert.ShowInTop("删除数据成功!", MessageBoxIcon.Success);
|
|
|
|
|
|
}
|
|
|
|
|
|
#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.ProjectId, this.CurrUser.PersonId, BLL.Const.InspectionMenuId);
|
|
|
|
|
|
if (buttonList.Count() > 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (buttonList.Contains(BLL.Const.BtnAdd))
|
|
|
|
|
|
{
|
|
|
|
|
|
this.btnNewMaterial.Hidden = false;
|
|
|
|
|
|
this.btnNewEquipment.Hidden = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (buttonList.Contains(BLL.Const.BtnModify))
|
|
|
|
|
|
{
|
|
|
|
|
|
this.btnMenuModify.Hidden = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (buttonList.Contains(BLL.Const.BtnDelete))
|
|
|
|
|
|
{
|
|
|
|
|
|
this.btnMenuDel.Hidden = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 把状态转换代号为文字形式
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="state"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
protected string ConvertState(object state)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (state != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (state.ToString() == BLL.Const.Inspection_ReCompile)
|
|
|
|
|
|
{
|
|
|
|
|
|
return "重新编制";
|
|
|
|
|
|
}
|
|
|
|
|
|
else if (state.ToString() == BLL.Const.Inspection_Compile)
|
|
|
|
|
|
{
|
|
|
|
|
|
return "编制";
|
|
|
|
|
|
}
|
|
|
|
|
|
else if (state.ToString() == BLL.Const.Inspection_Audit1)
|
|
|
|
|
|
{
|
2023-02-23 09:37:24 +08:00
|
|
|
|
return "总包专业工程师审批";
|
2022-09-05 16:36:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
else if (state.ToString() == BLL.Const.Inspection_Audit2)
|
|
|
|
|
|
{
|
|
|
|
|
|
return "监理工程师审批";
|
|
|
|
|
|
}
|
|
|
|
|
|
else if (state.ToString() == BLL.Const.Inspection_SpotCheck)
|
|
|
|
|
|
{
|
|
|
|
|
|
return "正在抽检";
|
|
|
|
|
|
}
|
|
|
|
|
|
else if (state.ToString() == BLL.Const.Inspection_Complete)
|
|
|
|
|
|
{
|
|
|
|
|
|
return "审批完成";
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
return "";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return "";
|
|
|
|
|
|
}
|
|
|
|
|
|
//<summary>
|
|
|
|
|
|
//获取办理人姓名
|
|
|
|
|
|
//</summary>
|
|
|
|
|
|
//<param name="state"></param>
|
|
|
|
|
|
//<returns></returns>
|
|
|
|
|
|
protected string ConvertMan(object InspectionId)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (InspectionId != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
Model.Material_Inspection inspection = BLL.CQMS_InspectionService.GetInspectionByInspectionId(InspectionId.ToString());
|
|
|
|
|
|
if (inspection.State != BLL.Const.Inspection_SpotCheck)
|
|
|
|
|
|
{
|
|
|
|
|
|
Model.Material_InspectionApprove a = BLL.CQMS_InspectionApproveService.GetInspectionApproveByInspectionId(InspectionId.ToString());
|
|
|
|
|
|
if (a != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (a.ApproveMan != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
return BLL.Person_PersonsService.GetPersonsNameById(a.ApproveMan);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
return "";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
else //正在抽检不显示办理人
|
|
|
|
|
|
{
|
|
|
|
|
|
return "";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return "";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected void Grid1_RowDataBound(object sender, GridRowEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected void btnNewMaterial_Click(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
string window = String.Format("MaterialSearch.aspx", "编辑 - ");
|
|
|
|
|
|
PageContext.RegisterStartupScript(Window1.GetSaveStateReference(this.hdID.ClientID)
|
|
|
|
|
|
+ Window1.GetShowReference(window));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected void btnNewEquipment_Click(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
string window = String.Format("EquipmentSearch.aspx", "编辑 - ");
|
|
|
|
|
|
PageContext.RegisterStartupScript(Window1.GetSaveStateReference(this.hdID.ClientID)
|
|
|
|
|
|
+ Window1.GetShowReference(window));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected void btnMenuView_Click(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (Grid1.SelectedRowIndexArray.Length == 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
Alert.ShowInTop("请至少选择一条记录!", MessageBoxIcon.Warning);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
string id = Grid1.SelectedRowID;
|
|
|
|
|
|
var ins = BLL.CQMS_InspectionService.GetInspectionByInspectionId(id);
|
|
|
|
|
|
|
|
|
|
|
|
if (ins != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("InspectionView.aspx?InspectionId={0}", id, "查看 - ")));
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected void btnQuery_Click(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
BindGrid();
|
|
|
|
|
|
}
|
|
|
|
|
|
protected void btnRset_Click(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
drpUnit.SelectedIndex = 0;
|
|
|
|
|
|
drpState.SelectedIndex = 0;
|
|
|
|
|
|
BindGrid();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|