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 GridPatrol : PageBase
{
///
/// 加载页面
///
///
///
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Funs.DropDownPageSize(this.ddlPageSize);
////权限按钮方法
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.RECORD_ID,tba.PATROL_ID,tba.PROJECT_CODE,tba.PROJECT_NAME,tba.SUBCONTRACTOR_ID,tba.SUBCONTRACTOR_NAME,tba.PERSONNEL_ID_NUMBER,tba.PERSONNEL_NAME,tba.PATROL_TIME,tba.PATROL_STATUS,tba.ReportDate
FROM SANKU_GRID_PATROL 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.txtUserName.Text.Trim()))
{
strSql += " AND tba.PERSONNEL_NAME LIKE @UserName";
listStr.Add(new SqlParameter("@UserName", "%" + this.txtUserName.Text.Trim() + "%"));
}
if (!string.IsNullOrWhiteSpace(this.rbStatus.SelectedValue))
{
strSql += " AND tba.PATROL_STATUS = @Status";
listStr.Add(new SqlParameter("@Status", this.rbStatus.SelectedValue));
}
if (this.rbIsReport.SelectedValue == "0")
{//未上报
strSql += " AND tba.ReportDate IS NULL";
}
else if (this.rbIsReport.SelectedValue == "1")
{//已上报
strSql += " AND tba.ReportDate IS NOT NULL";
}
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_GRID_PATROL", 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.ReportGridPatrolRecords(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()
{
//var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.PersonDutyMenuId);
//if (buttonList.Count() > 0)
//{
// if (buttonList.Contains(BLL.Const.BtnAdd))
// {
// this.btnNew.Hidden = false;
// }
// if (buttonList.Contains(BLL.Const.BtnModify))
// {
// this.btnMenuEdit.Hidden = false;
// }
// if (buttonList.Contains(BLL.Const.BtnDelete))
// {
// this.btnMenuDelete.Hidden = false;
// }
//}
}
#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_GRID_PATROL.Where(x => x.PATROL_ID == long.Parse(rowID)).FirstOrDefault();
if (item != null)
{
if (item.ReportDate != null)
{
ShowNotify("数据已上报,无法删除!", MessageBoxIcon.Warning);
}
else
{
db.SANKU_GRID_PATROL.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();
}
///
/// 编辑数据方法
///
private void EditData()
{
//if (Grid1.SelectedRowIndexArray.Length == 0)
//{
// Alert.ShowInParent("请至少选择一条记录!", MessageBoxIcon.Warning);
// return;
//}
//string Id = Grid1.SelectedRowID;
//string url = "AccidentRecordEdit.aspx?Id={0}";
//PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format(url, Id, "操作 - ")));
}
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, "操作 - ")));
}
}
}