代码无效引用清理,试压包资料界面看板修改
This commit is contained in:
@@ -65,7 +65,7 @@ namespace FineUIPro.Web.Person
|
||||
this.drpUnit.SelectedValue = getData.UnitId;
|
||||
this.txtUnitName.Text = getData.UnitName;
|
||||
this.drpProject.SelectedValue = getData.ProjectId;
|
||||
this.txtProjectName.Text = getData.ProjectName;
|
||||
this.txtProjectName.Text = getData.ProjectName;
|
||||
this.txtTeamGroupName.Text = getData.TeamGroupName;
|
||||
this.drpWorkPost.SelectedValue = getData.WorkPostId;
|
||||
this.txtWorkPostName.Text = getData.WorkPostName;
|
||||
@@ -73,7 +73,7 @@ namespace FineUIPro.Web.Person
|
||||
this.txtOutTime.Text = string.Format("{0:yyyy-MM-dd}", getData.OutTime);
|
||||
this.txtOutResult.Text = getData.OutResult;
|
||||
|
||||
TeamGroupService.InitTeamGroupProjectUnitDropDownList(this.drpTeamGroup, getData.ProjectId,getData.UnitId, true);
|
||||
TeamGroupService.InitTeamGroupProjectUnitDropDownList(this.drpTeamGroup, getData.ProjectId, getData.UnitId, true);
|
||||
this.drpTeamGroup.SelectedValue = getData.TeamGroupId;
|
||||
}
|
||||
}
|
||||
@@ -84,7 +84,7 @@ namespace FineUIPro.Web.Person
|
||||
this.txtPersonName.Text = person.PersonName;
|
||||
this.txtIdentityCard.Text = person.IdentityCard;
|
||||
}
|
||||
|
||||
|
||||
if (Request.Params["value"] == "0")
|
||||
{
|
||||
this.btnSave.Hidden = true;
|
||||
@@ -155,7 +155,7 @@ namespace FineUIPro.Web.Person
|
||||
{
|
||||
newData.TeamGroupName = this.txtTeamGroupName.Text.Trim();
|
||||
}
|
||||
|
||||
|
||||
if (!string.IsNullOrEmpty(this.PersonItemId))
|
||||
{
|
||||
BLL.SitePerson_PersonItemService.UpdatePersonItem(newData);
|
||||
@@ -165,7 +165,7 @@ namespace FineUIPro.Web.Person
|
||||
{
|
||||
this.PersonItemId = SQLHelper.GetNewID();
|
||||
newData.PersonItemId = this.PersonItemId;
|
||||
BLL.SitePerson_PersonItemService.AddPersonItem(newData,null);
|
||||
BLL.SitePerson_PersonItemService.AddPersonItem(newData, null);
|
||||
BLL.LogService.AddSys_Log(this.CurrUser, newData.PersonName, newData.PersonItemId, BLL.Const.ProjectPersonMenuId, BLL.Const.BtnAdd);
|
||||
}
|
||||
|
||||
@@ -186,7 +186,7 @@ namespace FineUIPro.Web.Person
|
||||
{
|
||||
this.txtProjectName.Text = this.drpProject.SelectedText;
|
||||
}
|
||||
SetTeam();
|
||||
SetTeam();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -196,7 +196,7 @@ namespace FineUIPro.Web.Person
|
||||
/// <param name="e"></param>
|
||||
protected void drpUnit_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
if(!string.IsNullOrEmpty(this.drpUnit.SelectedValue) && this.drpUnit.SelectedValue != Const._Null)
|
||||
if (!string.IsNullOrEmpty(this.drpUnit.SelectedValue) && this.drpUnit.SelectedValue != Const._Null)
|
||||
{
|
||||
this.txtUnitName.Text = this.drpUnit.SelectedText;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user