关键事项、邮件管理、任务管理

This commit is contained in:
2025-03-13 10:52:32 +08:00
parent 7a242ed776
commit c73bb1124d
99 changed files with 9738 additions and 3791 deletions
@@ -22,8 +22,10 @@ namespace FineUIPro.Web.PZHGL.GJSX
CNProfessionalService.InitCNProfessional(this.DropCNProfessional_ID, true);
//编号
string projectCode = BLL.ProjectService.GetProjectCodeByProjectId(this.CurrUser.LoginProjectId);
//问题类别
//紧急程度
QuestionTypeService.InitQuestionTypeDropDownList(this.DropQuestionTypeID, true);
//事项类别
GJSXTypeService.InitGJSXTypeDropDownList(this.DropGJSXTypeID, false);
//验收人
UserService.InitUserDropDownList(DropUser_ReceiveID, CurrUser.LoginProjectId, false, string.Empty);
//接收人
@@ -32,7 +34,7 @@ namespace FineUIPro.Web.PZHGL.GJSX
BindGrid();
}
}
protected void TextBox_TextChanged(object sender, EventArgs e)
@@ -46,7 +48,7 @@ namespace FineUIPro.Web.PZHGL.GJSX
//@unit nvarchar(50)= null, --责任单位
//@projectId nvarchar(50) = null, --所属项目
//@CNProfessional_ID nvarchar(500) = null, --专业
//@questionType nvarchar(500)= null, --问题类别
//@questionType nvarchar(500)= null, --紧急程度
//@processMan nvarchar(50) = null, --接收人
//@User_Acceptance nvarchar(50) = null--验收人
@@ -55,6 +57,7 @@ namespace FineUIPro.Web.PZHGL.GJSX
string projectid = CurrUser.LoginProjectId;
string CNProfessional_ID = DropCNProfessional_ID.SelectedValue;
string questionType = DropQuestionTypeID.SelectedValue;
string GJSXType = DropGJSXTypeID.SelectedValue;
string processMan = DropUser_ReceiveID.SelectedValue;
string User_Acceptance = DropUser_Acceptance.SelectedValue;
//if (userid is null)
@@ -77,6 +80,10 @@ namespace FineUIPro.Web.PZHGL.GJSX
{
questionType = null;
}
if (GJSXType == "null")
{
GJSXType = null;
}
//if (processMan is null)
//{
// processMan = "";
@@ -95,11 +102,12 @@ namespace FineUIPro.Web.PZHGL.GJSX
listStr.Add(new SqlParameter("@projectid", projectid));
listStr.Add(new SqlParameter("@CNProfessional_ID", CNProfessional_ID));
listStr.Add(new SqlParameter("@questionType", questionType));
listStr.Add(new SqlParameter("@GJSXType", GJSXType));
listStr.Add(new SqlParameter("@processMan", processMan));
listStr.Add(new SqlParameter("@User_Acceptance", User_Acceptance));
SqlParameter[] parameter = listStr.ToArray();
SqlParameter[] parameter = listStr.ToArray();
DataTable tb = SQLHelper.GetDataTableRunProc("Sp_GJSXStatistic", parameter);
@@ -107,7 +115,7 @@ namespace FineUIPro.Web.PZHGL.GJSX
var table = this.GetPagedDataTable(Grid1, tb);
this.Grid1.DataSource = table;
this.Grid1.DataBind();
}
/// <summary>
@@ -130,7 +138,7 @@ namespace FineUIPro.Web.PZHGL.GJSX
BindGrid();
}
/// <param name="e"></param>
protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e)
{
@@ -144,7 +152,7 @@ namespace FineUIPro.Web.PZHGL.GJSX
/// <param name="e"></param>
protected void Grid1_RowDoubleClick(object sender, GridRowClickEventArgs e)
{
// this.EditData();
// this.EditData();
}
}
}