This commit is contained in:
geh
2026-09-14 15:58:12 +08:00
parent a815e09879
commit 77f61d7e06
128 changed files with 25181 additions and 960 deletions
@@ -31,6 +31,8 @@ namespace FineUIPro.Web.ProjectData
if (!IsPostBack)
{
this.btnClose.OnClientClick = ActiveWindow.GetHideReference();
BLL.ConstValue.InitConstValueDropDownList(this.drpIsGridWorker, ConstValue.Group_0001, false);
///角色下拉框
BLL.RoleService.InitRoleDropDownList(this.drpRole, string.Empty, false, true);
BLL.ConstValue.InitConstValueDropDownList(this.drpIsPost, ConstValue.Group_0001, false);
@@ -50,6 +52,11 @@ namespace FineUIPro.Web.ProjectData
{
this.lbProjectName.Text = project.ProjectName;
}
if (projectUser.IsGridWorker.HasValue)
{
this.drpIsGridWorker.SelectedValue = Convert.ToString(projectUser.IsGridWorker);
}
var unit = BLL.UnitService.GetUnitByUnitId(projectUser.UnitId);
if (unit != null)
{
@@ -161,6 +168,7 @@ namespace FineUIPro.Web.ProjectData
}
}
}
newProjectUser.IsGridWorker = Convert.ToBoolean(this.drpIsGridWorker.SelectedValue);
newProjectUser.ViceCNProfessionalId = viceCNProfessionalId;
newProjectUser.IsPost = Convert.ToBoolean(this.drpIsPost.SelectedValue);
newProjectUser.IsEducator = Convert.ToBoolean(this.rblIsEducator.SelectedValue);