修改关键事项与沟通协调
This commit is contained in:
@@ -45,6 +45,16 @@ namespace FineUIPro.Web.DocManage
|
||||
}
|
||||
}
|
||||
|
||||
private string GetUserNames(string Ids)
|
||||
{
|
||||
string[] arr = Ids.Split(',');
|
||||
var data = Funs.DB.Sys_User.Where(t => arr.Contains(t.UserId)).Select(t => t.UserName).ToList();
|
||||
if (data.Count > 0)
|
||||
return string.Join(",", data);
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
if (!IsPostBack)
|
||||
@@ -82,6 +92,14 @@ namespace FineUIPro.Web.DocManage
|
||||
{
|
||||
State = Const.Doc_State_0;
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(doc.CopyMan))
|
||||
{
|
||||
txtCopyMan.Text = GetUserNames(doc.CopyMan);
|
||||
}
|
||||
|
||||
|
||||
|
||||
BindGrid();
|
||||
if (!string.IsNullOrEmpty(Type) && Type == "notice")
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user