1:月进度选择五环责任人

This commit is contained in:
夏菊 2025-03-25 10:39:46 +08:00
parent 40d6dfa550
commit 73aaa3657e
1 changed files with 6 additions and 3 deletions

View File

@ -79,7 +79,9 @@ namespace FineUIPro.Web.JDGL.Check
drpUnit.SelectedValue = model.UnitId;
//责任人
UserService.InitUserDropDownList(drpDutyPerson, this.CurrUser.LoginProjectId, false, model.UnitId);
//UserService.InitUserDropDownList(drpDutyPerson, this.CurrUser.LoginProjectId, false, model.UnitId);
//五环责任人
UserService.Init2(drpDutyPerson, this.CurrUser.LoginProjectId, false);
if (!string.IsNullOrEmpty(model.DutyPerson))
{
List<string> listPersonId = model.DutyPerson.Split(',').ToList();
@ -113,8 +115,9 @@ namespace FineUIPro.Web.JDGL.Check
if (!string.IsNullOrWhiteSpace(dropUnitId))
{
//责任人
UserService.InitUserDropDownList(drpDutyPerson, this.CurrUser.LoginProjectId, false, dropUnitId);
//UserService.Init2(drpDutyPerson, this.CurrUser.LoginProjectId, false);
//UserService.InitUserDropDownList(drpDutyPerson, this.CurrUser.LoginProjectId, false, dropUnitId);
//五环责任人
UserService.Init2(drpDutyPerson, this.CurrUser.LoginProjectId, false);
}
}