using BLL; 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.Door { public partial class InOutList : PageBase { /// /// 项目id /// public string ProjectId { get { return (string)ViewState["ProjectId"]; } set { ViewState["ProjectId"] = value; } } protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { this.ProjectId = this.CurrUser.LoginProjectId; //if (!string.IsNullOrEmpty(Request.Params["projectId"]) && Request.Params["projectId"] != this.ProjectId) //{ // this.ProjectId = Request.Params["projectId"]; //} Funs.DropDownPageSize(this.ddlPageSize); UnitService.InitUnitDropDownList(this.drpUnit, this.ProjectId, true); this.txtStartDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now); this.txtEndDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now); if (this.CurrUser != null && this.CurrUser.PageSize.HasValue) { Grid1.PageSize = this.CurrUser.PageSize.Value; } this.ddlPageSize.SelectedValue = Grid1.PageSize.ToString(); GetPersonStatistic(); } } #region 删除 /// /// 批量删除 /// /// /// protected void btnMenuDel_Click(object sender, EventArgs e) { if (CurrUser.UserId == Const.hfnbdId) { if (string.IsNullOrEmpty(Grid1.SelectedRowID)) { Alert.ShowInTop("请至少选择一条记录!", MessageBoxIcon.Warning); return; } string sql = "delete from t_d_validcardevent where NewID = '" + Grid1.SelectedRowID + "' "; SQLHelper.GetIntValue(sql); string sql1 = "delete from t_d_facerecord where NewID = '" + Grid1.SelectedRowID + "' "; SQLHelper.GetIntValue(sql1); BLL.LogService.AddSys_Log(this.CurrUser, Grid1.SelectedRowID, Grid1.SelectedRowID, BLL.Const.CheckListMenuId, "删除出入记录"); GetPersonStatistic(); Alert.ShowInTop("删除数据成功!", MessageBoxIcon.Success); } else { Alert.ShowInTop("您没权限删除!", MessageBoxIcon.Success); } } #endregion /// /// 获取数据,合并相同行 /// private void GetPersonStatistic() { if (!string.IsNullOrEmpty(this.ProjectId)) { string strSql = string.Empty; List listStr = new List(); if (this.rbCheckType.SelectedValue == "1") { strSql = @"SELECT NEWID,ValidEventID AS ID,V.ProjectId,EmployName,DepartmentID,DepartmentName AS DepartName,AreaID,AreaName,EmployNO,V.CardNO AS CardID ,RecordDateTime AS DateTimeRecord,RecordAll AS RecordDes,(CASE WHEN InOrOut=2 THEN '出门' ELSE '进门' END) AS InOrOut ,P.UnitId,P.TeamGroupId FROM t_d_validcardevent V LEFT JOIN SitePerson_Person AS P ON V.IDCardNo=P.IdentityCard AND V.ProjectId=P.ProjectId where V.ProjectId = @ProjectId"; if (!string.IsNullOrEmpty(this.txtStartDate.Text)) { strSql += " AND RecordDateTime >= @StartDate"; listStr.Add(new SqlParameter("@StartDate", this.txtStartDate.Text)); } if (!string.IsNullOrEmpty(this.txtEndDate.Text)) { strSql += " AND RecordDateTime < @EndDate"; listStr.Add(new SqlParameter("@EndDate", Funs.GetNewDateTime(this.txtEndDate.Text).Value.AddDays(1))); } } else { strSql = @"SELECT NewID,ID,V.ProjectId,EmployName,DepartmentID,DepartName,AreaID,AreaName,EmployNO,CardID,RoleID ,DateTimeRecord,RecordDes, InOrOut ,P.UnitId,P.TeamGroupId FROM dbo.t_d_facerecord V LEFT JOIN SitePerson_Person AS P ON V.EmployNO=P.IdentityCard AND V.ProjectId=P.ProjectId where V.ProjectId = @ProjectId"; if (this.rbCheckType.SelectedValue == "2") { strSql += " AND RoleID = '微信端'"; } else { strSql += " AND RoleID != '微信端'"; } if (!string.IsNullOrEmpty(this.txtStartDate.Text)) { strSql += " AND DateTimeRecord >= @StartDate"; listStr.Add(new SqlParameter("@StartDate", this.txtStartDate.Text)); } if (!string.IsNullOrEmpty(this.txtEndDate.Text)) { strSql += " AND DateTimeRecord < @EndDate"; listStr.Add(new SqlParameter("@EndDate", Funs.GetNewDateTime(this.txtEndDate.Text).Value.AddDays(1))); } } listStr.Add(new SqlParameter("@ProjectId", this.ProjectId)); if (this.drpUnit.SelectedValue != BLL.Const._Null) { strSql += " AND UnitId = @UnitId "; listStr.Add(new SqlParameter("@UnitId", this.drpUnit.SelectedValue)); } if (!string.IsNullOrEmpty(this.txtName.Text.Trim())) { strSql += " AND EmployName LIKE @EmployName"; listStr.Add(new SqlParameter("@EmployName", "%" + this.txtName.Text.Trim() + "%")); } 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(); } } protected void btnSearch_Click(object sender, EventArgs e) { GetPersonStatistic(); } #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; GetPersonStatistic(); Response.Write(GetGridTableHtml(Grid1)); Response.End(); } #endregion #region 分页 排序 /// /// 改变索引事件 /// /// /// protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) { GetPersonStatistic(); } /// /// 分页下拉选择事件 /// /// /// protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e) { this.Grid1.PageSize = Convert.ToInt32(this.ddlPageSize.SelectedValue); GetPersonStatistic(); } /// /// /// /// /// protected void Grid1_Sort(object sender, GridSortEventArgs e) { GetPersonStatistic(); } #endregion } }