132 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			C#
		
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Data;
 | |
| using System.Data.SqlClient;
 | |
| using System.Linq;
 | |
| using System.Web;
 | |
| using System.Web.UI;
 | |
| using System.Web.UI.WebControls;
 | |
| using BLL;
 | |
| namespace FineUIPro.Web.CQMS.ManageReport
 | |
| {
 | |
|     public partial class WeekReport : PageBase
 | |
|     {
 | |
|         protected void Page_Load(object sender, EventArgs e)
 | |
|         {
 | |
|             if (!IsPostBack) {
 | |
|                 BindGrid();
 | |
|                 GetButtonPower();
 | |
|             }
 | |
|         }
 | |
|         public void BindGrid()
 | |
|         {
 | |
|             string strSql = @"select ReportId, Period, StartDate, EndDate, ProjectId, ReportType   
 | |
|                               from Report_WeekAndMonthReport C 
 | |
|                               where C.ProjectId = @ProjectId and ReportType=1";
 | |
|             List<SqlParameter> listStr = new List<SqlParameter>();
 | |
|             listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId));
 | |
|             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();
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// 分页
 | |
|         /// </summary>
 | |
|         /// <param name="sender"></param>
 | |
|         /// <param name="e"></param>
 | |
|         protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e)
 | |
|         {
 | |
|             BindGrid();
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// 格式化字符串
 | |
|         /// </summary>
 | |
|         /// <param name="reportId"></param>
 | |
|         /// <returns></returns>
 | |
|         protected static string ConvertDate(object reportId)
 | |
|         {
 | |
|             string date = string.Empty;
 | |
|             if (reportId != null)
 | |
|             {
 | |
|                 var r = BLL.WeekAndMonthReportService.GetWeekAndMonthReportById(reportId.ToString());
 | |
|                 if (r != null)
 | |
|                 {
 | |
|                     date = string.Format("{0:yyyy-MM-dd}", r.StartDate) + " 至 " + string.Format("{0:yyyy-MM-dd}", r.EndDate);
 | |
|                 }
 | |
|             }
 | |
|             return date;
 | |
|         }
 | |
| 
 | |
|         protected void btnNew_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("WeekReportEdit.aspx" , "添加 - ")));
 | |
|         }
 | |
| 
 | |
|         protected void btnMenuModify_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("WeekReportEdit.aspx?reportId=" + Grid1.SelectedRowID, "添加 - ")));
 | |
|         }
 | |
| 
 | |
|         protected void btnMenuView_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("WeekReportEdit.aspx?view=view&reportId=" + Grid1.SelectedRowID, "查看 - ")));
 | |
|         }
 | |
| 
 | |
|         protected void btnMenuDel_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             if (Grid1.SelectedRowIndexArray.Length > 0)
 | |
|             {
 | |
|                 foreach (int rowIndex in Grid1.SelectedRowIndexArray)
 | |
|                 {
 | |
|                     string rowID = Grid1.DataKeys[rowIndex][0].ToString();
 | |
|                     BLL.NextQualityControlService.DeleteNextQualityControlByReportId(rowID);
 | |
|                     BLL.ComprehensiveService.DeleteComprehensiveByReportId(rowID);
 | |
|                     BLL.ConstructionProblemsService.DeleteConstructionProblemsByReportId(rowID);
 | |
|                     BLL.RowMaterialProblemService.DeleteRowMaterialProbleByReportId(rowID);
 | |
|                     BLL.ThisWeekOrMonthContentService.DeleteThisWeekOrMonthContentByReportId(rowID);
 | |
|                     BLL.WeekAndMonthReportService.DeleteWeekAndMonthReportById(rowID);
 | |
|                     BLL.WeekAndMonthReportService.DeleteWeekAndMonthReportById(rowID);
 | |
|                 }
 | |
|                 BindGrid();
 | |
|                 ShowNotify("删除数据成功!", MessageBoxIcon.Success);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         protected void Window1_Close(object sender, WindowCloseEventArgs e)
 | |
|         {
 | |
|             BindGrid();
 | |
|         }
 | |
|         #region 获取按钮权限
 | |
|         /// <summary>
 | |
|         /// 获取按钮权限
 | |
|         /// </summary>
 | |
|         /// <param name="button"></param>
 | |
|         /// <returns></returns>
 | |
|         private void GetButtonPower()
 | |
|         {
 | |
|             if (Request.Params["value"] == BLL.Const._Null)
 | |
|             {
 | |
|                 return;
 | |
|             }
 | |
|             var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.CQWeekReportMenuId);
 | |
|             if (buttonList.Count() > 0)
 | |
|             {
 | |
|                 if (buttonList.Contains(BLL.Const.BtnModify))
 | |
|                 {
 | |
|                     this.btnMenuModify.Hidden = false;
 | |
|                 }
 | |
|                 if (buttonList.Contains(BLL.Const.BtnDelete))
 | |
|                 {
 | |
|                     this.btnMenuDel.Hidden = false;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|         #endregion
 | |
|     }
 | |
| } |