20220906新增项目劳务人员查看页面、合同信息表、取用户接口修改

This commit is contained in:
2022-09-06 14:23:32 +08:00
parent c26e450d67
commit fc4f47dbab
39 changed files with 3809 additions and 307 deletions
@@ -64,7 +64,7 @@ namespace FineUIPro.Web.Person
}
else if (commandName == "details")
{
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("PersonView.aspx?PersonId={0}", personId, "查看 - ")));
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("ProjectPersonView.aspx?SitePersonId={0}", sitepersonId, "查看 - ")));
}
else if (commandName == "reset")
{
@@ -80,7 +80,7 @@ namespace FineUIPro.Web.Person
}
else if (commandName == "salary")
{
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("PersonView.aspx?PersonId={0}", personId, "查看 - ")));
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("ProjectPersonView.aspx?SitePersonId={0}", sitepersonId, "查看 - ")));
}
}
}
@@ -287,8 +287,8 @@ namespace FineUIPro.Web.Person
/// <param name="projectPersonId"></param>
private void SeePersonInfo(string projectPersonId)
{
string personId = Funs.GetStrListByStr(Grid1.SelectedRowID, '#')[1];
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("PersonView.aspx?PersonId={0}", personId, "查看 - ")));
string sitepersonId = Funs.GetStrListByStr(Grid1.SelectedRowID, '#')[0];
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("ProjectPersonView.aspx?SitePersonId={0}", sitepersonId, "查看 - ")));
}
#endregion