202306281、优化人员档案列表未培训判断。2、删除项目人员方法加判断存在重复身份证号码人员直接删除。3、项目劳务人员加部门查询下拉框。
This commit is contained in:
@@ -33,6 +33,9 @@
|
||||
</f:DropDownList>
|
||||
<f:DropDownList runat="server" ID="drpUnit" EnableEdit="true" EnableAjax="false"
|
||||
LabelAlign="Right" AutoPostBack="true" OnSelectedIndexChanged="btSearch_Click">
|
||||
</f:DropDownList>
|
||||
<f:DropDownList runat="server" ID="drpDepart" EnableEdit="true"
|
||||
LabelAlign="Right" EmptyText="按部门" AutoPostBack="true" OnSelectedIndexChanged="btSearch_Click">
|
||||
</f:DropDownList>
|
||||
<f:DropDownList runat="server" ID="drpWorkPost" EnableEdit="true" EnableAjax="false" Width="150px"
|
||||
LabelAlign="Right" AutoPostBack="true" OnSelectedIndexChanged="btSearch_Click">
|
||||
|
||||
@@ -25,6 +25,8 @@ namespace FineUIPro.Web.Person
|
||||
|
||||
Funs.FineUIPleaseSelect(drpProject, "按项目查询");
|
||||
Funs.FineUIPleaseSelect(drpUnit, "按单位查询");
|
||||
DepartService.InitDepartDropDownList(this.drpDepart, false);
|
||||
Funs.FineUIPleaseSelect(drpDepart, "按部门查询");
|
||||
WorkPostService.InitWorkPostDropDownList(this.drpWorkPost, false);
|
||||
Funs.FineUIPleaseSelect(drpWorkPost, "按岗位查询");
|
||||
DropListService.InitConstDropDownList(this.drpPersonType, DropListService.Group_PersonType, false);
|
||||
@@ -94,7 +96,7 @@ namespace FineUIPro.Web.Person
|
||||
/// </summary>
|
||||
private void BindGrid()
|
||||
{
|
||||
var getData = SitePerson_PersonService.getListData(this.drpProject.SelectedValue, this.drpUnit.SelectedValue, this.drpWorkPost.SelectedValue,
|
||||
var getData = SitePerson_PersonService.getListData(this.drpProject.SelectedValue, this.drpUnit.SelectedValue,this.drpDepart.SelectedValue, this.drpWorkPost.SelectedValue,
|
||||
this.txtPersonName.Text.Trim(), this.txtIdCard.Text.Trim(), this.rbIsPostStates.SelectedValue, this.drpPersonType.SelectedValue, Grid1);
|
||||
Grid1.RecordCount = SitePerson_PersonService.count;
|
||||
Grid1.DataSource = getData;
|
||||
|
||||
@@ -77,6 +77,15 @@ namespace FineUIPro.Web.Person
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.DropDownList drpUnit;
|
||||
|
||||
/// <summary>
|
||||
/// drpDepart 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.DropDownList drpDepart;
|
||||
|
||||
/// <summary>
|
||||
/// drpWorkPost 控件。
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user