184 lines
6.5 KiB
C#
184 lines
6.5 KiB
C#
using BLL;
|
||
using Model;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Data;
|
||
using System.Data.SqlClient;
|
||
using System.Linq;
|
||
|
||
namespace FineUIPro.Web.DataShow
|
||
{
|
||
public partial class Environmental : 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);
|
||
ddlPageSize.SelectedValue = Grid1.PageSize.ToString();
|
||
// 绑定表格t
|
||
BindGrid();
|
||
this.Panel1.Title = "环保数据(" + BLL.UnitService.GetUnitNameByUnitId(BLL.Const.UnitId_CWCEC) + ")";
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// 绑定数据
|
||
/// </summary>
|
||
private void BindGrid()
|
||
{
|
||
string strSql = string.Empty;
|
||
List<SqlParameter> listStr = new List<SqlParameter>();
|
||
if (this.rbType.SelectedValue == "1")
|
||
{
|
||
strSql = @"SELECT Report.ChemicalReportId AS ID,Report.Year,Report.Month AS M,Report.FillingDate
|
||
,(SELECT ThisYearValue FROM Environmental_ChemicalReportItem WHERE SortIndex='01'
|
||
AND ChemicalReportId=Report.ChemicalReportId) AS TotalEnergyConsumption
|
||
,0 AS IncomeComprehensiveEnergyConsumption
|
||
,(SELECT ThisYearValue FROM Environmental_ChemicalReportItem WHERE SortIndex='70'
|
||
AND ChemicalReportId=Report.ChemicalReportId) AS CO2
|
||
FROM Environmental_ChemicalReport AS Report";
|
||
}
|
||
else
|
||
{
|
||
strSql = @"SELECT Report.ArchitectureReportId AS ID,Report.Year,Report.Quarters AS M,Report.FillingDate
|
||
,(SELECT ThisYearValue FROM Environmental_ArchitectureReportItem WHERE SortIndex='01'
|
||
AND ArchitectureReportId=Report.ArchitectureReportId) AS TotalEnergyConsumption
|
||
,(SELECT ThisYearValue FROM Environmental_ArchitectureReportItem WHERE SortIndex='15'
|
||
AND ArchitectureReportId=Report.ArchitectureReportId) AS IncomeComprehensiveEnergyConsumption
|
||
,(SELECT ThisYearValue FROM Environmental_ArchitectureReportItem WHERE SortIndex='38'
|
||
AND ArchitectureReportId=Report.ArchitectureReportId) AS CO2
|
||
FROM Environmental_ArchitectureReport AS Report
|
||
WHERE 1=1 ";
|
||
}
|
||
if (!string.IsNullOrEmpty(this.txtStartTime.Text))
|
||
{
|
||
strSql += " AND Report.FillingDate >=@StartTime";
|
||
listStr.Add(new SqlParameter("@StartTime", this.txtStartTime.Text));
|
||
}
|
||
if (!string.IsNullOrEmpty(this.txtEndTime.Text))
|
||
{
|
||
strSql += " AND Report.FillingDate <=@EndTime";
|
||
listStr.Add(new SqlParameter("@EndTime", this.txtEndTime.Text));
|
||
}
|
||
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();
|
||
if (this.rbType.SelectedValue == "1")
|
||
{
|
||
Grid1.Columns[2].HeaderText = "月份";
|
||
Grid1.Columns[4].Hidden = true;
|
||
}
|
||
else
|
||
{
|
||
Grid1.Columns[2].HeaderText = "季度";
|
||
Grid1.Columns[4].Hidden = false;
|
||
}
|
||
}
|
||
#endregion
|
||
|
||
#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_PageIndexChange(object sender, GridPageEventArgs e)
|
||
{
|
||
BindGrid();
|
||
}
|
||
|
||
/// <summary>
|
||
/// 排序
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
protected void Grid1_Sort(object sender, GridSortEventArgs e)
|
||
{
|
||
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();
|
||
}
|
||
#endregion
|
||
|
||
#region Grid双击事件 编辑
|
||
/// <summary>
|
||
/// Grid行双击事件
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
protected void Grid1_RowDoubleClick(object sender, GridRowClickEventArgs e)
|
||
{
|
||
EditData();
|
||
}
|
||
|
||
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
private void EditData()
|
||
{
|
||
if (Grid1.SelectedRowIndexArray.Length == 0)
|
||
{
|
||
Alert.ShowInTop("请至少选择一条记录!", MessageBoxIcon.Warning);
|
||
return;
|
||
}
|
||
if (this.rbType.SelectedValue == "1")
|
||
{
|
||
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../ZHGL/Environmental/ChemicalReportSave.aspx?ChemicalReportId={0}&type=-1", Grid1.SelectedRowID, "查看 - ")));
|
||
}
|
||
else
|
||
{
|
||
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../ZHGL/Environmental/ArchitectureReportSave.aspx?ArchitectureReportId={0}&type=-1", Grid1.SelectedRowID, "查看 - ")));
|
||
}
|
||
|
||
}
|
||
#endregion
|
||
|
||
protected void btnView_Click(object sender, EventArgs e)
|
||
{
|
||
EditData();
|
||
}
|
||
}
|
||
} |