2021-04-30 10:28:37 +08:00
using BLL ;
using System ;
using System.Collections.Generic ;
using System.Data ;
using System.Data.SqlClient ;
using System.Linq ;
namespace FineUIPro.Web.PZHGL.GJSX
{
public partial class GJSXList : PageBase
{
2024-10-15 10:06:34 +08:00
/// <summary>
/// 类型
/// </summary>
public string classify
{
get
{
return ( string ) ViewState [ "classify" ] ;
}
set
{
ViewState [ "classify" ] = value ;
}
}
2021-04-30 10:28:37 +08:00
/// <summary>
/// 加载页面
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Page_Load ( object sender , EventArgs e )
{
if ( ! IsPostBack )
{
2024-10-15 10:06:34 +08:00
classify = Request . Params [ "classify" ] ;
2021-04-30 10:28:37 +08:00
Funs . DropDownPageSize ( this . ddlPageSize ) ;
////权限按钮方法
this . GetButtonPower ( ) ;
2024-10-15 10:06:34 +08:00
if ( classify ! = "0" )
{
btnNew . Hidden = true ;
}
2021-04-30 10:28:37 +08:00
this . btnNew . OnClientClick = Window1 . GetShowReference ( "GJSXListEdit.aspx?EditType=add" ) + "return false;" ;
if ( this . CurrUser ! = null & & this . CurrUser . PageSize . HasValue )
{
Grid1 . PageSize = this . CurrUser . PageSize . Value ;
}
this . ddlPageSize . SelectedValue = Grid1 . PageSize . ToString ( ) ;
// 绑定表格
this . BindGrid ( ) ;
}
}
/// <summary>
/// 绑定数据
/// </summary>
private void BindGrid ( )
{
2025-03-13 10:52:32 +08:00
string strSql = @ "select
a . GJSXID , a . ProjectId , a . detail , a . Userid , b . username , a . createDate
, User_ReceiveID = STUFF ( ( SELECT ',' + p2 . UserName FROM dbo . Sys_User as p2 where PATINDEX ( ' % , ' + RTRIM ( p2 . UserId ) + ' , % ' , ',' + a . User_ReceiveID + ',' ) > 0 FOR XML PATH ( ' ' ) ) , 1 , 1 , ' ' )
, CNProfessionalId = STUFF ( ( SELECT ',' + Base_CNProfessional . ProfessionalName FROM dbo . Base_CNProfessional where PATINDEX ( ' % , ' + RTRIM ( Base_CNProfessional . CNProfessionalId ) + ' , % ' , ',' + a . CNProfessional_ID + ',' ) > 0 FOR XML PATH ( ' ' ) ) , 1 , 1 , ' ' )
, Base_Project . ProjectName , Base_Unit . unitname , a . CloseDate
, case a . state when 2 then ' 正 在 进 行 ' when 3 then ' 待 办 ' when 0 then ' 已 关 闭 ' when 1 then ' 开 放 ' end as state
, QuestionTypeName = STUFF ( ( SELECT ',' + Base_QuestionType . QuestionTypeName FROM dbo . Base_QuestionType where PATINDEX ( ' % , ' + RTRIM ( Base_QuestionType . QuestionTypeID ) + ' , % ' , ',' + a . QuestionTypeID + ',' ) > 0 FOR XML PATH ( ' ' ) ) , 1 , 1 , ' ' )
, GJSXTypeName = STUFF ( ( SELECT ',' + Base_GJSXType . GJSXTypeName FROM dbo . Base_GJSXType where PATINDEX ( ' % , ' + RTRIM ( Base_GJSXType . GJSXTypeID ) + ' , % ' , ',' + a . GJSXTypeID + ',' ) > 0 FOR XML PATH ( ' ' ) ) , 1 , 1 , ' ' )
, a . IsManypeople , a . CompleteDate , a . AttachUrl
, user_Acceptance = STUFF ( ( SELECT ',' + p2 . UserName FROM dbo . Sys_User as p2 where PATINDEX ( ' % , ' + RTRIM ( p2 . UserId ) + ' , % ' , ',' + a . user_Acceptance + ',' ) > 0 FOR XML PATH ( ' ' ) ) , 1 , 1 , ' ' )
from GJSX as a
left join Sys_User as b on a . UserId = b . UserId
left join [ dbo ] . [ Base_Project ] on a . ProjectId = Base_Project . ProjectId
left join [ dbo ] . [ Base_Unit ] on a . UnitId = Base_Unit . UnitId
left join [ dbo ] . [ Base_QuestionType ] on a . QuestionTypeID = Base_QuestionType . QuestionTypeID
left join [ dbo ] . [ Base_GJSXType ] on a . GJSXTypeID = Base_GJSXType . GJSXTypeID
2024-10-15 10:06:34 +08:00
where a . ProjectId = @ProjectId ";
2021-04-30 10:28:37 +08:00
List < SqlParameter > listStr = new List < SqlParameter > ( ) ;
if ( ! string . IsNullOrEmpty ( Request . Params [ "projectId" ] ) ) ///是否文件柜查看页面传项目值
{
listStr . Add ( new SqlParameter ( "@ProjectId" , Request . Params [ "projectId" ] ) ) ;
}
else
{
listStr . Add ( new SqlParameter ( "@ProjectId" , this . CurrUser . LoginProjectId ) ) ;
}
2024-10-15 10:06:34 +08:00
var uid = CurrUser . UserId ;
//listStr.Add(new SqlParameter("@sql_where", strSql));
//我创建的
2025-03-13 10:52:32 +08:00
if ( classify = = "0" )
2024-10-15 10:06:34 +08:00
{
strSql + = " AND a.Userid='" + uid + "' " ;
}
//待我处理
else if ( classify = = "1" )
{
2025-03-13 10:52:32 +08:00
strSql + = " AND (a.state ='2' and a.User_Acceptance like'%" + uid + "%' ) or (a.state ='3' and (a.Userid like'%" + uid + "%' or a.User_ReceiveID like'%" + uid + "%' ))" ;
2024-10-15 10:06:34 +08:00
}
//我已处理
else if ( classify = = "2" )
{
2024-12-11 17:19:07 +08:00
strSql + = " AND (a.state ='0' and (a.Userid like'%" + uid + "%' or a.User_ReceiveID like'%" + uid + "%' or a.User_Acceptance like'%" + uid + "%' )) or (a.state ='3' and (a.Userid like'%" + uid + "%' or a.User_ReceiveID like'%" + uid + "%' or a.User_Acceptance like'%" + uid + "%' ))" ;
2024-10-15 10:06:34 +08:00
}
//我参与的
else if ( classify = = "3" )
{
strSql + = " AND a.CsUsers like'%" + uid + "%' " ;
}
2021-04-30 10:28:37 +08:00
SqlParameter [ ] parameter = listStr . ToArray ( ) ;
2024-10-15 10:06:34 +08:00
DataTable tb = SQLHelper . GetDataTableRunText ( strSql , parameter ) ;
2021-04-30 10:28:37 +08:00
Grid1 . RecordCount = tb . Rows . Count ;
var table = this . GetPagedDataTable ( Grid1 , tb ) ;
Grid1 . DataSource = table ;
Grid1 . DataBind ( ) ;
}
#region 查 询
/// <summary>
/// 查询
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void TextBox_TextChanged ( object sender , EventArgs e )
{
this . BindGrid ( ) ;
}
#endregion
#region 获 取 按 钮 权 限
/// <summary>
/// 获取按钮权限
/// </summary>
/// <param name="button"></param>
/// <returns></returns>
private void GetButtonPower ( )
{
var buttonList = BLL . CommonService . GetAllButtonList ( this . CurrUser . LoginProjectId , this . CurrUser . UserId , BLL . Const . GJSXMenuId ) ;
if ( buttonList . Count ( ) > 0 )
{
if ( buttonList . Contains ( BLL . Const . BtnAdd ) )
{
this . btnNew . Hidden = false ;
// this.btnImport.Hidden = false;
}
if ( buttonList . Contains ( BLL . Const . BtnModify ) )
{
this . btnMenuEdit . Hidden = false ;
}
2022-04-14 11:15:34 +08:00
if ( buttonList . Contains ( BLL . Const . BtnDelete ) )
{
this . btnMenuDel . Hidden = false ;
}
2021-04-30 10:28:37 +08:00
}
}
#endregion
#region 删 除 数 据
/// <summary>
/// 右键删除事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
2022-04-14 11:15:34 +08:00
protected void btnMenuDel_Click ( object sender , EventArgs e )
2021-04-30 10:28:37 +08:00
{
this . DeleteData ( ) ;
}
/// <summary>
/// 删除方法
/// </summary>
private void DeleteData ( )
{
if ( Grid1 . SelectedRowIndexArray . Length > 0 )
{
string strShowNotify = string . Empty ;
foreach ( int rowIndex in Grid1 . SelectedRowIndexArray )
{
string rowID = Grid1 . DataKeys [ rowIndex ] [ 0 ] . ToString ( ) ;
2022-04-14 11:15:34 +08:00
var gjsx = BLL . GJSXService . GetGJSXById ( rowID ) ;
if ( gjsx ! = null )
2021-04-30 10:28:37 +08:00
{
2022-04-14 11:15:34 +08:00
BLL . LogService . AddSys_Log ( this . CurrUser , gjsx . Detail , gjsx . GJSXID , BLL . Const . GJSXMenuId , BLL . Const . BtnDelete ) ;
BLL . GJSXItemService . DeleteGJSXMXByGJSXID ( rowID ) ;
BLL . GJSXProcessService . DeleteProcess ( rowID ) ;
BLL . GJSXService . DeleteGJSXById ( rowID ) ;
2021-04-30 10:28:37 +08:00
}
}
BindGrid ( ) ;
if ( ! string . IsNullOrEmpty ( strShowNotify ) )
{
Alert . ShowInTop ( strShowNotify , MessageBoxIcon . Warning ) ;
}
else
{
ShowNotify ( "删除数据成功!" , MessageBoxIcon . Success ) ;
}
}
}
#endregion
#region 分 页
/// <summary>
/// 分页
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Grid1_PageIndexChange ( object sender , GridPageEventArgs e )
{
BindGrid ( ) ;
}
/// <summary>
/// 分页显示条数下拉框
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void ddlPageSize_SelectedIndexChanged ( object sender , EventArgs e )
{
Grid1 . PageSize = Convert . ToInt32 ( ddlPageSize . SelectedValue ) ;
BindGrid ( ) ;
}
/// <summary>
/// 排序
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Grid1_Sort ( object sender , FineUIPro . GridSortEventArgs e )
{
BindGrid ( ) ;
}
#endregion
#region 双 击 , 右 键 编 辑 事 件
/// <summary>
/// Grid行双击事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Grid1_RowDoubleClick ( object sender , GridRowClickEventArgs e )
{
this . EditData ( ) ;
}
/// <summary>
/// 右键编辑事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnMenuEdit_Click ( object sender , EventArgs e )
{
this . EditData ( ) ;
}
#endregion
/// <summary>
/// 编辑数据方法
/// </summary>
private void EditData ( )
{
if ( Grid1 . SelectedRowIndexArray . Length = = 0 )
{
Alert . ShowInParent ( "请至少选择一条记录!" , MessageBoxIcon . Warning ) ;
return ;
}
string Id = Grid1 . SelectedRowID ;
2024-10-12 15:27:37 +08:00
var gjsx = BLL . GJSXService . GetGJSXById ( Id ) ;
//必须是责任人、提出人、跟踪人才能修改
if ( gjsx . User_Acceptance . Contains ( this . CurrUser . UserId )
| | gjsx . UserID . Contains ( this . CurrUser . UserId ) | |
gjsx . User_ReceiveID . Contains ( this . CurrUser . UserId ) )
{
PageContext . RegisterStartupScript ( Window1 . GetShowReference ( String . Format ( "GJSXListEdit.aspx?EditType=Edit&Id={0}" , Id , "编辑 - " ) ) ) ;
}
2025-03-13 10:52:32 +08:00
else
{
PageContext . RegisterStartupScript ( Window1 . GetShowReference ( String . Format ( "GJSXListEdit.aspx?EditType=See&Id={0}" , Id ) , "查看 - " ) ) ;
2024-10-12 15:27:37 +08:00
}
2025-03-13 10:52:32 +08:00
2021-04-30 10:28:37 +08:00
}
#region 判 断 是 否 可 删 除
/// <summary>
/// 判断是否可以删除
/// </summary>
/// <returns></returns>
private string judgementDelete ( string id )
{
string content = string . Empty ;
if ( Funs . DB . Project_ProjectUser . FirstOrDefault ( x = > x . UserId = = id ) ! = null )
{
content + = "已在【项目员工】中使用,不能删除!" ;
}
return content ;
}
#endregion
/// <summary>
/// 参与项目情况
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void lbtnPro_Click ( object sender , EventArgs e )
{
PageContext . RegisterStartupScript ( Window1 . GetShowReference ( String . Format ( "ParticipateProject.aspx?userId={0}" , Grid1 . SelectedRowID , "参与项目情况 - " ) , "参与项目" , 1000 , 520 ) ) ;
}
#region 导 入
/// <summary>
/// 导入按钮
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnImport_Click ( object sender , EventArgs e )
{
PageContext . RegisterStartupScript ( Window2 . GetShowReference ( String . Format ( "PersonIn.aspx" , "导入 - " ) ) ) ;
}
#endregion
/// <summary>
/// 关闭导入弹出窗口
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Window2_Close ( object sender , WindowCloseEventArgs e )
{
BindGrid ( ) ;
}
protected void ckbAll_CheckedChanged ( object sender , CheckedEventArgs e )
{
BindGrid ( ) ;
}
2021-05-20 17:16:01 +08:00
protected string ConvertProgressDetail ( object GJSXID )
{
string detailStr = string . Empty ;
if ( ! string . IsNullOrEmpty ( GJSXID . ToString ( ) ) )
{
Model . GJSX_detail detail = ( from x in Funs . DB . GJSX_detail where x . GJSXID = = GJSXID . ToString ( ) & & x . Progress_detail ! = null & & x . Progress_detail ! = "" orderby x . Date descending select x ) . FirstOrDefault ( ) ;
if ( detail ! = null )
{
detailStr = detail . Progress_detail ;
}
}
return detailStr ;
}
2021-04-30 10:28:37 +08:00
}
}