using BLL; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Text; using AspNet = System.Web.UI.WebControls; namespace FineUIPro.Web.HJGL.WeldingReport { public partial class IsoCmprehensive :PageBase { #region 加载 /// /// 加载页面 /// /// /// protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Funs.DropDownPageSize(this.ddlPageSize); this.ddlPageSize.SelectedValue = this.Grid1.PageSize.ToString(); //单位 // var unit = BLL.UnitService.GetUnitByUnitId(this.CurrUser.UnitId); // if (unit != null && unit.UnitTypeId == BLL.Const.ProjectUnitType_2) if (this.CurrUser.UnitId != Const.UnitId_TCC && this.CurrUser.UnitId != Const.hfnbdId) { BLL.UnitService.InitSubUnitNameDownList(this.drpUnit, this.CurrUser.LoginProjectId, this.CurrUser.UnitId, true); this.drpUnit.SelectedValue = this.CurrUser.UnitId; this.drpUnit.Enabled = false; BLL.WorkAreaService.InitWorkAreaProjectUnitDropDownList(this.drpWorkArea, this.CurrUser.LoginProjectId, this.CurrUser.UnitId, true); } else { var supervisonUnit = BLL.WorkAreaService.IsSupervisor(this.CurrUser.UnitId, this.CurrUser.LoginProjectId); //if (supervisonUnit) //{ // BLL.UnitService.InitSubUnitNameDownList(this.drpUnit, this.CurrUser.LoginProjectId, this.CurrUser.UnitId, true); //} //else { BLL.UnitService.InitUnitByProjectIdUnitTypeDropDownList(this.drpUnit, this.CurrUser.LoginProjectId, BLL.Const.ProjectUnitType_2, true); } Funs.FineUIPleaseSelect(this.drpWorkArea); } BLL.Base_MaterialService.InitMaterialDropDownList(this.drpMaterialId, true,this.CurrUser.LoginProjectId);//材质 //BindGrid(); } } #endregion #region 绑定BindGrid /// /// /// private DataTable tb = null; /// /// 绑定数据 /// private void BindGrid() { List listStr = new List { new SqlParameter("@projectId", this.CurrUser.LoginProjectId) }; if (this.drpUnit.SelectedValue != BLL.Const._Null && !string.IsNullOrEmpty(this.drpUnit.SelectedValue)) { listStr.Add(new SqlParameter("@unitNo", this.drpUnit.SelectedValue)); } else { listStr.Add(new SqlParameter("@unitNo", null)); } if (!string.IsNullOrEmpty(this.txtIsoNo.Text.Trim())) { listStr.Add(new SqlParameter("@isono", this.txtIsoNo.Text.Trim())); } else { listStr.Add(new SqlParameter("@isono", null)); } if (this.drpWorkArea.SelectedValue != BLL.Const._Null && !string.IsNullOrEmpty(this.drpWorkArea.SelectedValue)) { listStr.Add(new SqlParameter("@areaNo", this.drpWorkArea.SelectedValue)); } else { listStr.Add(new SqlParameter("@areaNo", null)); } if (this.drpMaterialId.SelectedValue != BLL.Const._Null && !string.IsNullOrEmpty(this.drpMaterialId.SelectedValue)) { listStr.Add(new SqlParameter("@steel", this.drpMaterialId.SelectedValue)); } else { listStr.Add(new SqlParameter("@steel", null)); } if (BLL.WorkAreaService.IsSupervisor(this.CurrUser.UnitId, this.CurrUser.LoginProjectId)) { listStr.Add(new SqlParameter("@supervisorUnitId", this.CurrUser.UnitId)); } else { listStr.Add(new SqlParameter("@supervisorUnitId", null)); } SqlParameter[] parameter = listStr.ToArray(); tb = SQLHelper.GetDataTableRunProc("sp_rpt_iso_analyze", parameter); this.Grid1.RecordCount = tb.Rows.Count; var table = this.GetPagedDataTable(Grid1, tb); Grid1.DataSource = table; Grid1.DataBind(); } /// /// 改变索引事件 /// /// /// protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) { BindGrid(); } /// /// 分页下拉选择事件 /// /// /// protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e) { Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue); BindGrid(); } /// /// 排序 /// /// /// protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e) { this.BindGrid(); } #endregion #region 计算合计 /// /// 计算合计 /// protected void OutputSummaryData() { if (tb != null) { int total_jot = 0; int total_sjot = 0; int total_fjot = 0; int finished_total_jot = 0; int finished_total_sjot = 0; int finished_total_fjot = 0; int cut_total_jot = 0; decimal? total_din = 0; decimal? total_Sdin = 0; decimal? total_Fdin = 0; decimal? finished_total_din = 0; decimal? finished_total_Sdin = 0; decimal? finished_total_Fdin = 0; int total_film = 0; int pass_film = 0; int ext_total_film = 0; int ext_pass_film = 0; int point_total_film = 0; int point_pass_film = 0; int cut_total_film = 0; int cut_pass_film = 0; int ext_jot = 0; int point_jot = 0; int trust_total_jot = 0; int check_total_jot = 0; int total_repairjot = 0; foreach (DataRow row in tb.Rows) { total_jot += Funs.GetNewIntOrZero(row["total_jot"].ToString()); total_sjot += Funs.GetNewIntOrZero(row["total_sjot"].ToString()); total_fjot += Funs.GetNewIntOrZero(row["total_fjot"].ToString()); finished_total_jot += Funs.GetNewIntOrZero(row["finished_total_jot"].ToString()); finished_total_sjot += Funs.GetNewIntOrZero(row["finished_total_sjot"].ToString()); finished_total_fjot += Funs.GetNewIntOrZero(row["finished_total_fjot"].ToString()); cut_total_jot += Funs.GetNewIntOrZero(row["cut_total_jot"].ToString()); total_din += Funs.GetNewDecimalOrZero(row["total_din"].ToString()); total_Sdin += Funs.GetNewDecimalOrZero(row["total_Sdin"].ToString()); total_Fdin += Funs.GetNewDecimalOrZero(row["total_Fdin"].ToString()); finished_total_din += Funs.GetNewDecimalOrZero(row["finished_total_din"].ToString()); finished_total_Sdin += Funs.GetNewDecimalOrZero(row["finished_total_Sdin"].ToString()); finished_total_Fdin += Funs.GetNewDecimalOrZero(row["finished_total_Fdin"].ToString()); total_film += Funs.GetNewIntOrZero(row["total_film"].ToString()); pass_film += Funs.GetNewIntOrZero(row["pass_film"].ToString()); ext_total_film += Funs.GetNewIntOrZero(row["ext_total_film"].ToString()); ext_pass_film += Funs.GetNewIntOrZero(row["ext_pass_film"].ToString()); point_total_film += Funs.GetNewIntOrZero(row["point_total_film"].ToString()); point_pass_film += Funs.GetNewIntOrZero(row["point_pass_film"].ToString()); cut_total_film += Funs.GetNewIntOrZero(row["cut_total_film"].ToString()); cut_pass_film += Funs.GetNewIntOrZero(row["cut_pass_film"].ToString()); ext_jot += Funs.GetNewIntOrZero(row["ext_jot"].ToString()); point_jot += Funs.GetNewIntOrZero(row["point_jot"].ToString()); trust_total_jot += Funs.GetNewIntOrZero(row["trust_total_jot"].ToString()); check_total_jot += Funs.GetNewIntOrZero(row["check_total_jot"].ToString()); total_repairjot += Funs.GetNewIntOrZero(row["total_repairjot"].ToString()); } JObject summary = new JObject { { "tfNumber", "合计" }, { "total_jot", total_jot }, { "total_sjot", total_sjot }, { "total_fjot", total_fjot }, { "finished_total_jot", finished_total_jot }, { "finished_total_sjot", finished_total_sjot }, { "finished_total_fjot", finished_total_fjot }, { "cut_total_jot", cut_total_jot }, { "total_din", total_din }, { "total_Sdin", total_Sdin }, { "total_Fdin", total_Fdin }, { "finished_total_din", finished_total_din }, { "finished_total_Sdin", finished_total_Sdin }, { "finished_total_Fdin", finished_total_Fdin }, { "total_film", total_film }, { "pass_film",pass_film}, { "ext_total_film",ext_total_film}, { "ext_pass_film",ext_pass_film}, { "point_total_film",point_total_film}, { "point_pass_film",point_pass_film}, { "cut_total_film",cut_total_film}, { "cut_pass_film",cut_pass_film}, { "ext_jot",ext_jot}, { "point_jot",point_jot}, { "trust_total_jot",trust_total_jot}, { "check_total_jot",check_total_jot}, { "total_repairjot",total_repairjot} }; Grid1.SummaryData = summary; } } #endregion #region 统计按钮事件 /// /// 统计 /// /// /// protected void BtnAnalyse_Click(object sender, EventArgs e) { BindGrid(); OutputSummaryData(); } #endregion #region 导出按钮 /// 导出按钮 /// /// /// protected void btnOut_Click(object sender, EventArgs e) { Response.ClearContent(); string filename = Funs.GetNewFileName(); Response.AddHeader("content-disposition", "attachment; filename=" + System.Web.HttpUtility.UrlEncode("管线综合分析" + filename, System.Text.Encoding.UTF8) + ".xls"); Response.ContentType = "application/excel"; Response.ContentEncoding = System.Text.Encoding.UTF8; Response.Write(GetGridTableHtml(Grid1)); Response.End(); } /// /// 导出方法 /// /// /// private string GetGridTableHtml(Grid grid) { StringBuilder sb = new StringBuilder(); grid.PageSize = this.Grid1.RecordCount; BindGrid(); sb.Append(""); sb.Append(""); sb.Append(""); foreach (GridColumn column in grid.Columns) { sb.AppendFormat("", column.HeaderText); } sb.Append(""); foreach (GridRow row in grid.Rows) { sb.Append(""); foreach (GridColumn column in grid.Columns) { string html = row.Values[column.ColumnIndex].ToString(); if (column.ColumnID == "tfNumber") { html = (row.FindControl("labNumber") as AspNet.Label).Text; } sb.AppendFormat("", html); } sb.Append(""); } var sumary = grid.SummaryData; if (sumary != null) { foreach (GridColumn column in grid.Columns) { try { if (sumary.ContainsKey(column.ColumnID)) { sb.AppendFormat("", sumary.GetValue(column.ColumnID).ToString()); } else { sb.AppendFormat("", ""); } } catch (Exception e) { sb.AppendFormat("", ""); } } } sb.Append("
{0}
{0}
{0}{0}{0}
"); return sb.ToString(); } #endregion #region DropDownList下拉选择事件 /// /// 单位下拉选择事件 /// /// /// protected void drpUnit_SelectedIndexChanged(object sender, EventArgs e) { this.drpWorkArea.Items.Clear(); if (this.drpUnit.SelectedValue != BLL.Const._Null && !string.IsNullOrEmpty(this.drpUnit.SelectedValue)) { BLL.WorkAreaService.InitWorkAreaProjectUnitDropDownList(this.drpWorkArea, this.CurrUser.LoginProjectId, this.drpUnit.SelectedValue, true); this.drpWorkArea.SelectedIndex = 0; } } #endregion } }