修改关键事项与沟通协调

This commit is contained in:
2024-10-15 10:06:34 +08:00
parent d35d9efdcb
commit 6614252a9c
10 changed files with 242 additions and 14 deletions
@@ -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")
{