2023-03-29 14:32:57 +08:00
|
|
|
|
using BLL;
|
2023-11-11 16:02:42 +08:00
|
|
|
|
using Newtonsoft.Json.Linq;
|
2023-03-29 14:32:57 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Data.SqlClient;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace FineUIPro.Web.DataShow
|
|
|
|
|
{
|
|
|
|
|
public partial class QualityTraining : 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();
|
|
|
|
|
BLL.ProjectService.InitProjectDropDownList(this.drpProject, true);
|
|
|
|
|
// 绑定表格t
|
|
|
|
|
BindGrid();
|
2023-11-11 16:02:42 +08:00
|
|
|
|
|
|
|
|
|
// 合计
|
|
|
|
|
OutputSummaryData();
|
2023-06-10 10:55:18 +08:00
|
|
|
|
this.Panel1.Title = "质量培训数据(" + BLL.UnitService.GetUnitNameByUnitId(BLL.CommonService.GetThisUnitId()) + ")";
|
2023-03-29 14:32:57 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 绑定数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void BindGrid()
|
|
|
|
|
{
|
2023-11-02 15:40:43 +08:00
|
|
|
|
string strSql = @"select ProjectId,ProjectCode, ProjectName from Base_Project where (ProjectState2 is null or ProjectState2 !=9) and ProjectState =1 ";
|
2023-03-29 14:32:57 +08:00
|
|
|
|
List<SqlParameter> listStr = new List<SqlParameter>();
|
|
|
|
|
string cpara = string.Empty;
|
|
|
|
|
if (this.drpProject.SelectedValue != Const._Null)
|
|
|
|
|
{
|
|
|
|
|
strSql += " AND projectId = @projectId"; ///状态为已完成
|
|
|
|
|
listStr.Add(new SqlParameter("@projectId", this.drpProject.SelectedValue));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//if (!string.IsNullOrEmpty(this.txtStartTime.Text))
|
|
|
|
|
//{
|
|
|
|
|
// strSql += " AND h.RegisterDate >=@StartTime";
|
|
|
|
|
// listStr.Add(new SqlParameter("@StartTime", this.txtStartTime.Text));
|
|
|
|
|
|
|
|
|
|
// cpara += " AND c.RegisterDate >=" + this.txtStartTime.Text;
|
|
|
|
|
//}
|
|
|
|
|
//if (!string.IsNullOrEmpty(this.txtEndTime.Text))
|
|
|
|
|
//{
|
|
|
|
|
// strSql += " AND h.RegisterDate <=@EndTime";
|
|
|
|
|
// listStr.Add(new SqlParameter("@EndTime", this.txtEndTime.Text));
|
|
|
|
|
|
|
|
|
|
// cpara += " AND c.RegisterDate <=" + 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();
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region 查询
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 查询
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
protected void TextBox_TextChanged(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
this.BindGrid();
|
2023-11-11 16:02:42 +08:00
|
|
|
|
this.OutputSummaryData();
|
2023-03-29 14:32:57 +08:00
|
|
|
|
}
|
|
|
|
|
#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.rbCom.SelectedValue == "1")
|
|
|
|
|
{
|
|
|
|
|
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("QualityTrainingItem1.aspx?projectId={0}", Grid1.SelectedRowID, "查看 - ")));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("QualityTrainingItem2.aspx?projectId={0}", Grid1.SelectedRowID, "查看 - ")));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected void btnView_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
EditData();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数量
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="state"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
protected int Count1(object projectId)
|
|
|
|
|
{
|
|
|
|
|
int cout1 = 0;
|
|
|
|
|
if (projectId != null)
|
|
|
|
|
{
|
|
|
|
|
var datetime1 = Funs.GetNewDateTime(this.txtStartTime.Text);
|
|
|
|
|
var datetime2 = Funs.GetNewDateTime(this.txtStartTime.Text);
|
|
|
|
|
if (this.rbCom.SelectedValue == "1")
|
|
|
|
|
{
|
2023-11-11 16:02:42 +08:00
|
|
|
|
var getT = Funs.DB.Comprehensive_InspectionPerson.Where(x => x.ProjectId == projectId.ToString() && x.IsTrain == true && x.CompileDate >Funs.minSysDate);
|
2023-03-29 14:32:57 +08:00
|
|
|
|
if (datetime1.HasValue)
|
|
|
|
|
{
|
|
|
|
|
getT = getT.Where(x => x.CompileDate >= datetime1);
|
|
|
|
|
}
|
|
|
|
|
if (datetime2.HasValue)
|
|
|
|
|
{
|
|
|
|
|
getT = getT.Where(x => x.CompileDate <= datetime2);
|
|
|
|
|
}
|
|
|
|
|
cout1 = getT.Count();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2023-11-11 16:02:42 +08:00
|
|
|
|
var getT = Funs.DB.Comprehensive_DesignDetails.Where(x => x.ProjectId == projectId.ToString() && x.CompileDate > Funs.minSysDate);
|
2023-03-29 14:32:57 +08:00
|
|
|
|
if (datetime1.HasValue)
|
|
|
|
|
{
|
|
|
|
|
getT = getT.Where(x => x.CompileDate >= datetime1);
|
|
|
|
|
}
|
|
|
|
|
if (datetime2.HasValue)
|
|
|
|
|
{
|
|
|
|
|
getT = getT.Where(x => x.CompileDate <= datetime2);
|
|
|
|
|
}
|
|
|
|
|
if (getT.Count() > 0)
|
|
|
|
|
{
|
|
|
|
|
cout1 = getT.Sum(x => x.JoinPersonNum ?? 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return cout1;
|
|
|
|
|
}
|
2023-11-11 16:02:42 +08:00
|
|
|
|
|
|
|
|
|
#region 合计
|
|
|
|
|
private void OutputSummaryData() {
|
|
|
|
|
string strSql = "";
|
|
|
|
|
if (this.rbCom.SelectedValue == "1")
|
|
|
|
|
{
|
|
|
|
|
strSql= @"select ProjectId,ProjectCode, ProjectName,
|
|
|
|
|
isnull((select count(*) from Comprehensive_InspectionPerson as a
|
|
|
|
|
where a.ProjectId=P.ProjectId and a.IsTrain=1 and a.CompileDate > '2023-01-01' ),0) as Count1
|
|
|
|
|
from Base_Project as P where ProjectState =1 and (ProjectState2 is null or ProjectState2 !=9) ";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
strSql = @"select ProjectId,ProjectCode, ProjectName,
|
|
|
|
|
isnull((select sum(JoinPersonNum) from Comprehensive_DesignDetails as a
|
|
|
|
|
where a.ProjectId=P.ProjectId and a.CompileDate > '2023-01-01' ),0) as Count1
|
|
|
|
|
from Base_Project as P where ProjectState =1 and (ProjectState2 is null or ProjectState2 !=9) ";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
List<SqlParameter> listStr = new List<SqlParameter>();
|
|
|
|
|
SqlParameter[] parameter = listStr.ToArray();
|
|
|
|
|
DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
|
|
|
|
|
int Count1 = 0;
|
|
|
|
|
foreach (DataRow row in tb.Rows)
|
|
|
|
|
{
|
|
|
|
|
Count1 += Convert.ToInt32(row["Count1"]);
|
|
|
|
|
}
|
|
|
|
|
JObject summary = new JObject();
|
|
|
|
|
summary.Add("ProjectName", "合计:");
|
|
|
|
|
summary.Add("Count1", Count1.ToString());
|
|
|
|
|
Grid1.SummaryData = summary;
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
2023-03-29 14:32:57 +08:00
|
|
|
|
}
|
|
|
|
|
}
|