2023-10-25
This commit is contained in:
@@ -56,7 +56,7 @@ namespace FineUIPro.Web.ProjectData
|
||||
}
|
||||
if (!string.IsNullOrEmpty(UnitWork.UnitId))
|
||||
{
|
||||
this.drpUnit.SelectedValue = UnitWork.UnitId;
|
||||
this.drpUnit.SelectedValueArray = UnitWork.UnitId.Split(',');
|
||||
}
|
||||
if (!string.IsNullOrEmpty(UnitWork.SupervisorUnitId))
|
||||
{
|
||||
@@ -101,7 +101,7 @@ namespace FineUIPro.Web.ProjectData
|
||||
UnitWork.UnitWorkName = this.txtUnitWorkName.Text.Trim();
|
||||
if (this.drpUnit.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
UnitWork.UnitId = this.drpUnit.SelectedValue;
|
||||
UnitWork.UnitId =string.Join(",", this.drpUnit.SelectedValueArray) ;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user