using BLL; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Linq; namespace FineUIPro.Web.SanKu { public partial class Training : PageBase { /// /// 加载页面 /// /// /// protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Funs.DropDownPageSize(this.ddlPageSize); BLL.TrainTypeService.InitTrainTypeDropDownList(this.drpTrainingType, true); ////权限按钮方法 this.GetButtonPower(); if (this.CurrUser != null && this.CurrUser.PageSize.HasValue) { Grid1.PageSize = this.CurrUser.PageSize.Value; } this.ddlPageSize.SelectedValue = Grid1.PageSize.ToString(); // 绑定表格 this.BindGrid(); } } /// /// 绑定数据 /// private void BindGrid() { string strSql = @"SELECT tba.TRAINING_ID,tba.RECORD_ID,tba.PROJECT_CODE,tba.PROJECT_NAME,tba.SUBCONTRACTOR_ID,tba.SUBCONTRACTOR_NAME,tba.PERSONNEL_ID_NUMBER,tba.PERSONNEL_NAME,tba.TRAINING_DATE,tba.TRAINING_NAME,tba.TRAINING_TYPE,tba.TRAINING_DURATION,tba.TRAINING_ORGANIZER,tba.TRAINING_CONTENT,tba.TRAINING_RESULT,tba.ReportDate FROM SANKU_TRAINING AS tba WITH(NOLOCK) WHERE 1=1 "; List listStr = new List(); if (!string.IsNullOrEmpty(this.txtProjectName.Text.Trim())) { strSql += " AND tba.PROJECT_NAME LIKE @ProjectName"; listStr.Add(new SqlParameter("@ProjectName", "%" + this.txtProjectName.Text.Trim() + "%")); } if (!string.IsNullOrEmpty(this.txtName.Text.Trim())) { strSql += " AND tba.PERSONNEL_NAME LIKE @Content"; listStr.Add(new SqlParameter("@Content", "%" + this.txtName.Text.Trim() + "%")); } if (!string.IsNullOrEmpty(this.txtContent.Text.Trim())) { strSql += " AND tba.TRAINING_CONTENT LIKE @Content"; listStr.Add(new SqlParameter("@Content", "%" + this.txtContent.Text.Trim() + "%")); } if (this.rbIsReport.SelectedValue == "0") {//未上报 strSql += " AND tba.ReportDate IS NULL"; } else if (this.rbIsReport.SelectedValue == "1") {//已上报 strSql += " AND tba.ReportDate IS NOT NULL"; } string result = this.drpResult.SelectedValue.Trim(); string typeValue = this.drpTrainingType.SelectedValue.Trim(); string type = this.drpTrainingType.SelectedText.Trim(); if (!string.IsNullOrWhiteSpace(result)) { strSql += " AND tba.TRAINING_RESULT = @Result"; listStr.Add(new SqlParameter("@Result", result)); } if (!string.IsNullOrWhiteSpace(type) && typeValue != Const._Null) { strSql += " AND tba.TRAINING_TYPE = @Type"; listStr.Add(new SqlParameter("@Type", type)); } SqlParameter[] parameter = listStr.ToArray(); DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); Grid1.RecordCount = tb.Rows.Count; //tb = GetFilteredTable(Grid1.FilteredData, tb); var table = this.GetPagedDataTable(Grid1, tb); Grid1.DataSource = table; Grid1.DataBind(); } #region 查询 /// /// 查询 /// /// /// protected void TextBox_TextChanged(object sender, EventArgs e) { this.BindGrid(); } #endregion #region 数据收集、清空 /// /// 数据收集 /// /// /// protected void btnCollect_Click(object sender, EventArgs e) { DataOp("1"); } /// /// 数据清空 /// /// /// protected void btnDelAll_Click(object sender, EventArgs e) { DataOp("0"); } /// /// 数据操作 /// /// private void DataOp(string op) { var db = Funs.DB; string resultStr = string.Empty; string msg = string.Empty; try { var result = Funs.DB.SP_SANKU_DATA_INIT("SANKU_TRAINING", int.Parse(op)); resultStr = "成功"; msg = $"{(op == "1" ? "收集" : "清空所有")}教育培训数据"; } catch (Exception ex) { resultStr = "失败"; msg = JsonConvert.SerializeObject(ex); } //记录上报结果日志 Model.SANKU_REPORT_LOG newModel = new Model.SANKU_REPORT_LOG(); newModel.OPTYPE = "数据操作"; newModel.CONTENT = $"{(op == "1" ? "收集" : "清空所有")}教育培训数据"; newModel.RESULT = resultStr; newModel.DETAIL = msg; newModel.OPERATOR = this.CurrUser.UserName; newModel.CREATE_TIME = DateTime.Now; db.SANKU_REPORT_LOG.InsertOnSubmit(newModel); db.SubmitChanges(); if (resultStr == "成功") { this.BindGrid(); } } #endregion #region 汇总上报 /// /// 汇总上报 /// /// /// protected void btnReport_Click(object sender, EventArgs e) { string message = string.Empty; string code = SanKuDataSummaryReportService.ReportTrainingRecords(this.CurrUser.UserName, ref message); if (code == "1") { this.BindGrid(); ShowNotify(message, MessageBoxIcon.Success); PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); return; } else { Alert.ShowInParent(message, MessageBoxIcon.Error); } } #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; this.Grid1.PageSize = this.Grid1.RecordCount; this.BindGrid(); Response.Write(GetGridTableHtml(Grid1)); Response.End(); } #endregion #region 获取按钮权限 /// /// 获取按钮权限 /// /// /// private void GetButtonPower() { } #endregion #region 删除数据 /// /// 右键删除事件 /// /// /// protected void btnMenuDelete_Click(object sender, EventArgs e) { this.DeleteData(); } /// /// 删除方法 /// private void DeleteData() { if (Grid1.SelectedRowIndexArray.Length > 0) { var db = Funs.DB; string strShowNotify = string.Empty; foreach (int rowIndex in Grid1.SelectedRowIndexArray) { string rowID = Grid1.DataKeys[rowIndex][0].ToString(); var item = db.SANKU_ADMIN_PENALTY.Where(x => x.PENALTY_ID == long.Parse(rowID)).FirstOrDefault(); if (item != null) { if (item.ReportDate != null) { ShowNotify("数据已上报,无法删除!", MessageBoxIcon.Warning); } else { db.SANKU_ADMIN_PENALTY.DeleteOnSubmit(item); db.SubmitChanges(); } } } BindGrid(); ShowNotify("删除数据成功!", MessageBoxIcon.Success); } } #endregion #region 分页 /// /// 分页 /// /// /// 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) { BindGrid(); } #endregion /// /// Grid行双击事件 /// /// /// protected void Grid1_RowDoubleClick(object sender, GridRowClickEventArgs e) { //this.EditData(); } /// /// 右键编辑事件 /// /// /// protected void btnMenuEdit_Click(object sender, EventArgs e) { //this.EditData(); } protected void Window1_Close(object sender, WindowCloseEventArgs e) { BindGrid(); } protected void MenuView_Click(object sender, EventArgs e) { //string url = "AccidentRecordView.aspx?Id={0}"; //PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format(url, Id, "操作 - "))); } } }