2024-07-25 14:58:40 +08:00
using System ;
using System.Collections ;
using System.Collections.Generic ;
using System.Data ;
2024-08-09 10:48:15 +08:00
using System.Data.SqlClient ;
2024-07-25 14:58:40 +08:00
using System.Linq ;
2024-08-09 10:48:15 +08:00
using System.Text ;
2024-07-25 14:58:40 +08:00
using System.Web.Services.Description ;
using BLL ;
2024-08-09 10:48:15 +08:00
using Newtonsoft.Json.Linq ;
2024-07-25 14:58:40 +08:00
using NPOI.SS.Formula.Functions ;
namespace FineUIPro.Web.Transfer.Chart
{
public partial class PunchlistFromChartNew : PageBase
{
protected void Page_Load ( object sender , EventArgs e )
{
if ( ! IsPostBack )
{
var systemNos = Funs . DB . Transfer_PunchlistFrom . Where ( x = > x . ProjectId = = this . CurrUser . LoginProjectId ) . GroupBy ( p = > new { p . System_No } ) . Select ( p = > new { System_No = p . Key . System_No } ) . ToList ( ) ;
int indexRow = 1 ;
ddlSystemNo . Items . Insert ( 0 , new FineUIPro . ListItem ( "ALL" , "" ) ) ;
foreach ( var t in systemNos )
{
ddlSystemNo . Items . Insert ( indexRow , new FineUIPro . ListItem ( t . System_No , t . System_No ) ) ;
indexRow + + ;
}
2024-08-09 10:48:15 +08:00
AnalyseData ( ) ;
2024-07-25 14:58:40 +08:00
}
}
/// <summary>
/// 统计方法
/// </summary>
private void AnalyseData ( )
{
string _systemNo = ddlSystemNo . SelectedValue ;
if ( _systemNo = = null )
_systemNo = "" ;
_systemNo = _systemNo . Trim ( ) ;
//_systemNo为空则查全部
var forms = from x in Funs . DB . Transfer_PunchlistFrom
where x . ProjectId = = this . CurrUser . LoginProjectId & & ( x . System_No = = _systemNo | | _systemNo = = "" )
select x ;
string _dateType = ddlDateType . SelectedValue ;
#region 按 照 当 前 日 期 前 一 周 数 据
if ( _dateType = = "1" )
{
///按单位统计
DataTable dtTime = new DataTable ( ) ;
dtTime . Columns . Add ( "日期" , typeof ( string ) ) ;
dtTime . Columns . Add ( "计划完成数量" , typeof ( string ) ) ;
dtTime . Columns . Add ( "实际完成数量" , typeof ( string ) ) ;
for ( int i = 6 ; i > = 0 ; i - - )
{
DataRow rowTime = dtTime . NewRow ( ) ;
DateTime QueryTime = DateTime . Now . AddDays ( i * - 1 ) ;
rowTime [ "日期" ] = QueryTime . ToString ( "yyyy/MM/dd" ) ;
DateTime startTime = Convert . ToDateTime ( QueryTime . ToString ( "yyyy-MM-dd" ) + " 00:00:00" ) ;
DateTime endTime = Convert . ToDateTime ( QueryTime . ToString ( "yyyy-MM-dd" ) + " 23:59:59" ) ;
2024-07-29 17:25:07 +08:00
//rowTime["计划完成数量"] = forms.Where(x => x.Required_Date >= startTime && x.Required_Date <= endTime).Count();
//rowTime["实际完成数量"] = forms.Where(x => x.Actual_Date >= startTime && x.Actual_Date <= endTime).Count();
rowTime [ "计划完成数量" ] = forms . Where ( x = > x . Required_Date < = endTime ) . Count ( ) ;
rowTime [ "实际完成数量" ] = forms . Where ( x = > x . Actual_Date < = endTime ) . Count ( ) ;
2024-07-25 14:58:40 +08:00
dtTime . Rows . Add ( rowTime ) ;
}
this . ChartAccidentTime . CreateChart ( BLL . ChartControlService . GetDataSourceChart ( dtTime , "尾项完成统计分析" , this . drpChartType . SelectedValue , 1300 , 550 , false ) ) ;
2024-07-29 17:25:07 +08:00
///按单位统计
DataTable dtTime1 = new DataTable ( ) ;
dtTime1 . Columns . Add ( "日期" , typeof ( string ) ) ;
dtTime1 . Columns . Add ( "计划完成百分比(%)" , typeof ( string ) ) ;
dtTime1 . Columns . Add ( "实际完成百分比(%)" , typeof ( string ) ) ;
for ( int i = 6 ; i > = 0 ; i - - )
{
DataRow rowTime = dtTime1 . NewRow ( ) ;
DateTime QueryTime = DateTime . Now . AddDays ( i * - 1 ) ;
rowTime [ "日期" ] = QueryTime . ToString ( "yyyy/MM/dd" ) ;
DateTime startTime = Convert . ToDateTime ( QueryTime . ToString ( "yyyy-MM-dd" ) + " 00:00:00" ) ;
DateTime endTime = Convert . ToDateTime ( QueryTime . ToString ( "yyyy-MM-dd" ) + " 23:59:59" ) ;
double jhCount = forms . Where ( x = > x . Required_Date < = endTime ) . Count ( ) ;
double sjCount = forms . Where ( x = > x . Actual_Date < = endTime ) . Count ( ) ;
double allCount = forms . Count ( ) ;
rowTime [ "计划完成百分比(%)" ] = allCount = = 0 ? "0.00" : ( jhCount / allCount * 100 ) . ToString ( "0.00" ) ;
rowTime [ "实际完成百分比(%)" ] = allCount = = 0 ? "0.00" : ( sjCount / allCount * 100 ) . ToString ( "0.00" ) ;
dtTime1 . Rows . Add ( rowTime ) ;
}
this . ChartAccidentTime1 . CreateChart ( BLL . ChartControlService . GetDataSourceChart ( dtTime1 , "尾项完成统计分析" , this . drpChartType . SelectedValue , 1300 , 550 , false ) ) ;
2024-07-25 14:58:40 +08:00
}
#endregion
//按照当前月份到一月份的数据
if ( _dateType = = "2" )
{
///按单位统计
DataTable dtTime = new DataTable ( ) ;
dtTime . Columns . Add ( "月份" , typeof ( string ) ) ;
dtTime . Columns . Add ( "计划完成数量" , typeof ( string ) ) ;
dtTime . Columns . Add ( "实际完成数量" , typeof ( string ) ) ;
for ( int i = 1 ; i < = DateTime . Now . Month ; i + + )
{
DataRow rowTime = dtTime . NewRow ( ) ;
DateTime QueryTime = Convert . ToDateTime ( $"{DateTime.Now.Year.ToString()}-{i}-1 00:00:00" ) ;
rowTime [ "月份" ] = QueryTime . ToString ( "yyyy/MM" ) ;
DateTime startTime = QueryTime ;
DateTime endTime = Convert . ToDateTime ( QueryTime . AddMonths ( 1 ) . AddDays ( - 1 ) . ToString ( "yyyy-MM-dd" ) + " 23:59:59" ) ;
2024-07-29 17:25:07 +08:00
//rowTime["计划完成数量"] = forms.Where(x => x.Required_Date >= startTime && x.Required_Date <= endTime).Count();
//rowTime["实际完成数量"] = forms.Where(x => x.Actual_Date >= startTime && x.Actual_Date <= endTime).Count();
rowTime [ "计划完成数量" ] = forms . Where ( x = > x . Required_Date < = endTime ) . Count ( ) ;
rowTime [ "实际完成数量" ] = forms . Where ( x = > x . Actual_Date < = endTime ) . Count ( ) ;
2024-07-25 14:58:40 +08:00
dtTime . Rows . Add ( rowTime ) ;
}
this . ChartAccidentTime . CreateChart ( BLL . ChartControlService . GetDataSourceChart ( dtTime , "尾项完成统计分析" , this . drpChartType . SelectedValue , 1300 , 550 , false ) ) ;
2024-07-29 17:25:07 +08:00
///按单位统计
DataTable dtTime1 = new DataTable ( ) ;
dtTime1 . Columns . Add ( "月份" , typeof ( string ) ) ;
dtTime1 . Columns . Add ( "计划完成百分比(%)" , typeof ( string ) ) ;
dtTime1 . Columns . Add ( "实际完成百分比(%)" , typeof ( string ) ) ;
for ( int i = 1 ; i < = DateTime . Now . Month ; i + + )
{
DataRow rowTime = dtTime1 . NewRow ( ) ;
DateTime QueryTime = Convert . ToDateTime ( $"{DateTime.Now.Year.ToString()}-{i}-1 00:00:00" ) ;
rowTime [ "月份" ] = QueryTime . ToString ( "yyyy/MM" ) ;
DateTime startTime = QueryTime ;
DateTime endTime = Convert . ToDateTime ( QueryTime . AddMonths ( 1 ) . AddDays ( - 1 ) . ToString ( "yyyy-MM-dd" ) + " 23:59:59" ) ;
double jhCount = forms . Where ( x = > x . Required_Date < = endTime ) . Count ( ) ;
double sjCount = forms . Where ( x = > x . Actual_Date < = endTime ) . Count ( ) ;
double allCount = forms . Count ( ) ;
rowTime [ "计划完成百分比(%)" ] = allCount = = 0 ? "0.00" : ( jhCount / allCount * 100 ) . ToString ( "0.00" ) ;
rowTime [ "实际完成百分比(%)" ] = allCount = = 0 ? "0.00" : ( sjCount / allCount * 100 ) . ToString ( "0.00" ) ;
dtTime1 . Rows . Add ( rowTime ) ;
}
this . ChartAccidentTime1 . CreateChart ( BLL . ChartControlService . GetDataSourceChart ( dtTime1 , "尾项完成统计分析" , this . drpChartType . SelectedValue , 1300 , 550 , false ) ) ;
2024-07-25 14:58:40 +08:00
}
}
/// <summary>
/// 统计分析
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void BtnAnalyse_Click ( object sender , EventArgs e )
{
this . AnalyseData ( ) ;
2024-08-09 10:48:15 +08:00
BindGrid1 ( ) ;
BindGrid2 ( ) ;
2024-07-25 14:58:40 +08:00
}
/// <summary>
/// 图形变换
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void drpChartType_SelectedIndexChanged ( object sender , EventArgs e )
{
this . AnalyseData ( ) ;
}
/// <summary>
/// 现在日期类型
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void ddlDateType_SelectedIndexChanged ( object sender , EventArgs e )
{
this . AnalyseData ( ) ;
}
/// <summary>
/// 选择System No
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void ddlSystemNo_SelectedIndexChanged ( object sender , EventArgs e )
{
this . AnalyseData ( ) ;
2024-08-09 10:48:15 +08:00
BindGrid1 ( ) ;
BindGrid2 ( ) ;
}
#region 加 载
#region 分 页 、 排 序
/// <summary>
/// 分页下拉
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void ddlPageSize_SelectedIndexChanged ( object sender , EventArgs e )
{
Grid1 . PageSize = Convert . ToInt32 ( ddlPageSize . SelectedValue ) ;
BindGrid1 ( ) ;
}
/// <summary>
/// 分页索引事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Grid1_PageIndexChange ( object sender , GridPageEventArgs e )
{
BindGrid1 ( ) ;
}
/// <summary>
/// 排序
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Grid1_Sort ( object sender , FineUIPro . GridSortEventArgs e )
{
Grid1 . SortDirection = e . SortDirection ;
Grid1 . SortField = e . SortField ;
BindGrid1 ( ) ;
}
/// <summary>
/// 分页下拉
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void ddlPageSize2_SelectedIndexChanged ( object sender , EventArgs e )
{
Grid2 . PageSize = Convert . ToInt32 ( ddlPageSize2 . SelectedValue ) ;
BindGrid2 ( ) ;
}
/// <summary>
/// 分页索引事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Grid2_PageIndexChange ( object sender , GridPageEventArgs e )
{
BindGrid2 ( ) ;
}
/// <summary>
/// 排序
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Grid2_Sort ( object sender , FineUIPro . GridSortEventArgs e )
{
Grid2 . SortDirection = e . SortDirection ;
Grid2 . SortField = e . SortField ;
BindGrid2 ( ) ;
}
#endregion
/// <summary>
/// 查询绑定数据
/// </summary>
public void BindGrid1 ( )
{
List < SqlParameter > listStr = new List < SqlParameter > ( ) ;
string _systemNo = string . Empty ;
_systemNo = ddlSystemNo . SelectedValue ;
StringBuilder strSql = new StringBuilder ( "" ) ;
strSql . AppendLine ( " IF OBJECT_ID('tempdb..#AllPunchlistFromSortTemp1') IS NOT NULL drop table #AllPunchlistFromSortTemp1; " ) ;
strSql . AppendLine ( " IF OBJECT_ID('tempdb..#PunchlistFromSortTemp1') IS NOT NULL drop table #PunchlistFromSortTemp1; " ) ;
strSql . AppendLine ( " select * INTO #AllPunchlistFromSortTemp1 from Transfer_PunchlistFrom(NOLOCK) where ProjectId=@ProjectId " ) ;
if ( ! string . IsNullOrWhiteSpace ( _systemNo ) )
{
strSql . AppendLine ( " AND System_No=@System_No " ) ;
listStr . Add ( new SqlParameter ( "@System_No" , _systemNo ) ) ;
}
strSql . AppendLine ( " select Disc,cast(0 as decimal(18,2)) Cat_A_Count,cast(0 as decimal(18,2)) Cat_B_Count,cast(0 as decimal(18,2)) Cat_C_Count,cast(0 as decimal(18,2)) Cat_D_Count INTO #PunchlistFromSortTemp1 from #AllPunchlistFromSortTemp1 Group by Disc; " ) ;
strSql . AppendLine ( " update a set a.Cat_A_Count=(select count(1) from #AllPunchlistFromSortTemp1 b where a.Disc=b.Disc AND (isnull(b.Cat,'')='A' or isnull(b.Cat,'')='a')) " ) ;
strSql . AppendLine ( ",a.Cat_B_Count=(select count(1) from #AllPunchlistFromSortTemp1 b where a.Disc=b.Disc AND (isnull(b.Cat,'')='B' or isnull(b.Cat,'')='b')) " ) ;
strSql . AppendLine ( ",a.Cat_C_Count=(select count(1) from #AllPunchlistFromSortTemp1 b where a.Disc=b.Disc AND (isnull(b.Cat,'')='C' or isnull(b.Cat,'')='c')) " ) ;
strSql . AppendLine ( ",a.Cat_D_Count=(select count(1) from #AllPunchlistFromSortTemp1 b where a.Disc=b.Disc AND (isnull(b.Cat,'')='D' or isnull(b.Cat,'')='d')) " ) ;
strSql . AppendLine ( "from #PunchlistFromSortTemp1 a;" ) ;
strSql . AppendLine ( "select * from #PunchlistFromSortTemp1 " ) ;
listStr . Add ( new SqlParameter ( "@ProjectId" , this . CurrUser . LoginProjectId ) ) ;
strSql . AppendLine ( " order by Disc " ) ;
SqlParameter [ ] parameter = listStr . ToArray ( ) ;
DataTable tb = SQLHelper . GetDataTableRunText ( strSql . ToString ( ) , parameter ) ;
Grid1 . RecordCount = tb . Rows . Count ;
var table = this . GetPagedDataTable ( Grid1 , tb ) ;
Grid1 . DataSource = table ;
Grid1 . DataBind ( ) ;
//合计
int cat_A_Count = 0 ;
int cat_B_Count = 0 ;
int cat_C_Count = 0 ;
int cat_D_Count = 0 ;
foreach ( DataRow row in tb . Rows )
{
cat_A_Count + = Convert . ToInt32 ( row [ "Cat_A_Count" ] ) ;
cat_B_Count + = Convert . ToInt32 ( row [ "Cat_B_Count" ] ) ;
cat_C_Count + = Convert . ToInt32 ( row [ "Cat_C_Count" ] ) ;
cat_D_Count + = Convert . ToInt32 ( row [ "Cat_D_Count" ] ) ;
}
JObject summary = new JObject ( ) ;
summary . Add ( "Disc" , "合计" ) ;
summary . Add ( "Cat_A_Count" , cat_A_Count . ToString ( ) ) ;
summary . Add ( "Cat_B_Count" , cat_B_Count . ToString ( ) ) ;
summary . Add ( "Cat_C_Count" , cat_C_Count . ToString ( ) ) ;
summary . Add ( "Cat_D_Count" , cat_D_Count . ToString ( ) ) ;
Grid1 . SummaryData = summary ;
}
/// <summary>
/// 查询绑定数据
/// </summary>
public void BindGrid2 ( )
{
List < SqlParameter > listStr = new List < SqlParameter > ( ) ;
string _systemNo = string . Empty ;
_systemNo = ddlSystemNo . SelectedValue ;
StringBuilder strSql = new StringBuilder ( "" ) ;
strSql . AppendLine ( " IF OBJECT_ID('tempdb..#AllPunchlistFromSortTemp2') IS NOT NULL drop table #AllPunchlistFromSortTemp2; " ) ;
strSql . AppendLine ( " IF OBJECT_ID('tempdb..#PunchlistFromSortTemp2') IS NOT NULL drop table #PunchlistFromSortTemp2; " ) ;
strSql . AppendLine ( " select * INTO #AllPunchlistFromSortTemp2 from Transfer_PunchlistFrom(NOLOCK) where ProjectId=@ProjectId " ) ;
if ( ! string . IsNullOrWhiteSpace ( _systemNo ) )
{
strSql . AppendLine ( " AND System_No=@System_No " ) ;
listStr . Add ( new SqlParameter ( "@System_No" , _systemNo ) ) ;
}
strSql . AppendLine ( " select Action_By,cast(0 as decimal(18,2)) Cat_All_Count,cast(0 as decimal(18,2)) Cat_A_Count,cast(0 as decimal(18,2)) Cat_B_Count,cast(0 as decimal(18,2)) Cat_C_Count,cast(0 as decimal(18,2)) Cat_D_Count INTO #PunchlistFromSortTemp2 from #AllPunchlistFromSortTemp2 Group by Action_By; " ) ;
strSql . AppendLine ( " update a set a.Cat_A_Count=(select count(1) from #AllPunchlistFromSortTemp2 b where a.Action_By=b.Action_By AND (isnull(b.Cat,'')='A' or isnull(b.Cat,'')='a')) " ) ;
strSql . AppendLine ( ",a.Cat_B_Count=(select count(1) from #AllPunchlistFromSortTemp2 b where a.Action_By=b.Action_By AND (isnull(b.Cat,'')='B' or isnull(b.Cat,'')='b')) " ) ;
strSql . AppendLine ( ",a.Cat_C_Count=(select count(1) from #AllPunchlistFromSortTemp2 b where a.Action_By=b.Action_By AND (isnull(b.Cat,'')='C' or isnull(b.Cat,'')='c')) " ) ;
strSql . AppendLine ( ",a.Cat_D_Count=(select count(1) from #AllPunchlistFromSortTemp2 b where a.Action_By=b.Action_By AND (isnull(b.Cat,'')='D' or isnull(b.Cat,'')='d')) " ) ;
strSql . AppendLine ( "from #PunchlistFromSortTemp2 a;" ) ;
strSql . AppendLine ( " update #PunchlistFromSortTemp2 set Cat_All_Count=Cat_A_Count+Cat_B_Count+Cat_C_Count+Cat_D_Count; " ) ;
strSql . AppendLine ( "select * from #PunchlistFromSortTemp2 " ) ;
listStr . Add ( new SqlParameter ( "@ProjectId" , this . CurrUser . LoginProjectId ) ) ;
strSql . AppendLine ( " order by Action_By " ) ;
SqlParameter [ ] parameter = listStr . ToArray ( ) ;
DataTable tb = SQLHelper . GetDataTableRunText ( strSql . ToString ( ) , parameter ) ;
Grid2 . RecordCount = tb . Rows . Count ;
var table = this . GetPagedDataTable ( Grid1 , tb ) ;
Grid2 . DataSource = table ;
Grid2 . DataBind ( ) ;
//合计
int cat_A_Count = 0 ;
int cat_B_Count = 0 ;
int cat_C_Count = 0 ;
int cat_D_Count = 0 ;
int cat_All_Count = 0 ;
foreach ( DataRow row in tb . Rows )
{
cat_All_Count + = Convert . ToInt32 ( row [ "Cat_All_Count" ] ) ;
cat_A_Count + = Convert . ToInt32 ( row [ "Cat_A_Count" ] ) ;
cat_B_Count + = Convert . ToInt32 ( row [ "Cat_B_Count" ] ) ;
cat_C_Count + = Convert . ToInt32 ( row [ "Cat_C_Count" ] ) ;
cat_D_Count + = Convert . ToInt32 ( row [ "Cat_D_Count" ] ) ;
}
JObject summary = new JObject ( ) ;
summary . Add ( "Action_By" , "合计" ) ;
summary . Add ( "Cat_All_Count" , cat_All_Count . ToString ( ) ) ;
summary . Add ( "Cat_A_Count" , cat_A_Count . ToString ( ) ) ;
summary . Add ( "Cat_B_Count" , cat_B_Count . ToString ( ) ) ;
summary . Add ( "Cat_C_Count" , cat_C_Count . ToString ( ) ) ;
summary . Add ( "Cat_D_Count" , cat_D_Count . ToString ( ) ) ;
Grid2 . SummaryData = summary ;
}
protected void TabStrip1_TabIndexChanged ( object sender , EventArgs e )
{
if ( TabStrip1 . ActiveTabIndex = = 2 )
{
ddlSystemNo . Hidden = false ;
ddlDateType . Hidden = true ;
drpChartType . Hidden = true ;
BindGrid1 ( ) ;
}
else if ( TabStrip1 . ActiveTabIndex = = 3 )
{
ddlSystemNo . Hidden = false ;
ddlDateType . Hidden = true ;
drpChartType . Hidden = true ;
BindGrid2 ( ) ;
}
else if ( TabStrip1 . ActiveTabIndex = = 4 )
{
ddlDateType . Hidden = true ;
drpChartType . Hidden = true ;
ddlSystemNo . Hidden = true ;
BindGrid3 ( ) ;
}
else {
this . AnalyseData ( ) ;
ddlSystemNo . Hidden = false ;
ddlDateType . Hidden = false ;
drpChartType . Hidden = false ;
}
}
#endregion
#region 跟 踪
/// <summary>
/// 数据绑定
/// </summary>
public void BindGrid3 ( )
{
StringBuilder strSql = new StringBuilder ( "" ) ;
strSql . AppendLine ( "IF OBJECT_ID('tempdb..#AllPunchlistFromProgressTemp') IS NOT NULL drop table #AllPunchlistFromProgressTemp; " ) ;
strSql . AppendLine ( "IF OBJECT_ID('tempdb..#PunchlistFromProgressTemp') IS NOT NULL drop table #PunchlistFromProgressTemp; " ) ;
strSql . AppendLine ( " select System_No,Actual_Date,Cleared_By,Confirmed_By,Verified_By,ProjectId " ) ;
strSql . AppendLine ( " INTO #AllPunchlistFromProgressTemp from Transfer_PunchlistFrom where ProjectId = @ProjectId " ) ;
strSql . AppendLine ( " select System_No,count(System_No) SystemNoCount,cast(0 as decimal(18,2)) ActualDateCount " ) ;
strSql . AppendLine ( " ,cast(0 as decimal(18,2)) ClearedByCount,cast(0 as decimal(18,2)) ConfirmedByCount,cast(0 as decimal(18,2)) VerifiedByCount " ) ;
strSql . AppendLine ( " INTO #PunchlistFromProgressTemp from #AllPunchlistFromProgressTemp where ProjectId = @ProjectId group by System_No " ) ;
strSql . AppendLine ( " update a set a.ActualDateCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND isnull(b.Actual_Date,'')<>'') " ) ;
strSql . AppendLine ( " ,a.ClearedByCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND isnull(b.Cleared_By,'')<>'') " ) ;
strSql . AppendLine ( " ,a.ConfirmedByCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND isnull(b.Confirmed_By,'')<>'') " ) ;
strSql . AppendLine ( " ,a.VerifiedByCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND isnull(b.Verified_By,'')<>'') " ) ;
strSql . AppendLine ( " from #PunchlistFromProgressTemp a " ) ;
strSql . AppendLine ( " select * from #PunchlistFromProgressTemp " ) ;
List < SqlParameter > listStr = new List < SqlParameter > ( ) ;
listStr . Add ( new SqlParameter ( "@ProjectId" , this . CurrUser . LoginProjectId ) ) ;
strSql . AppendLine ( " order by System_No " ) ;
SqlParameter [ ] parameter = listStr . ToArray ( ) ;
DataTable tb = SQLHelper . GetDataTableRunText ( strSql . ToString ( ) , parameter ) ;
Grid3 . RecordCount = tb . Rows . Count ;
var table = this . GetPagedDataTable ( Grid1 , tb ) ;
Grid3 . DataSource = table ;
Grid3 . DataBind ( ) ;
}
/// <summary>
/// 分页下拉
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void ddlPageSize3_SelectedIndexChanged ( object sender , EventArgs e )
{
Grid3 . PageSize = Convert . ToInt32 ( ddlPageSize3 . SelectedValue ) ;
BindGrid3 ( ) ;
}
/// <summary>
/// 分页索引事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Grid3_PageIndexChange ( object sender , GridPageEventArgs e )
{
BindGrid3 ( ) ;
}
/// <summary>
/// 排序
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Grid3_Sort ( object sender , FineUIPro . GridSortEventArgs e )
{
Grid3 . SortDirection = e . SortDirection ;
Grid3 . SortField = e . SortField ;
BindGrid3 ( ) ;
2024-07-25 14:58:40 +08:00
}
2024-08-09 10:48:15 +08:00
#endregion
2024-07-25 14:58:40 +08:00
}
}