fweqr
This commit is contained in:
parent
23ae289a37
commit
a9d779470f
Binary file not shown.
|
@ -67,15 +67,8 @@ namespace FineUIPro.Web.WeldingProcess.TestPackageManage
|
||||||
this.ddlPageSize.SelectedValue = this.Grid1.PageSize.ToString();
|
this.ddlPageSize.SelectedValue = this.Grid1.PageSize.ToString();
|
||||||
this.PTP_ID = string.Empty;
|
this.PTP_ID = string.Empty;
|
||||||
this.txtSearchDate.Text = string.Format("{0:yyyy-MM}", System.DateTime.Now);
|
this.txtSearchDate.Text = string.Format("{0:yyyy-MM}", System.DateTime.Now);
|
||||||
|
this.GetBindDropPrintList();
|
||||||
//打印报表项
|
//打印报表项
|
||||||
|
|
||||||
this.drpPrintTypeList.DataSource = BLL.Common_ReportPrintService.TestPackageSelectPrint();
|
|
||||||
this.drpPrintTypeList.DataTextField = "Title";
|
|
||||||
this.drpPrintTypeList.DataValueField = "Id";
|
|
||||||
this.drpPrintTypeList.DataBind();
|
|
||||||
Funs.FineUIPleaseSelect(this.drpPrintTypeList);
|
|
||||||
|
|
||||||
// 审核人
|
// 审核人
|
||||||
BLL.Project_UserService.InitProjectUserDropDownList(drpAuditMan, true, this.CurrUser.LoginProjectId, Resources.Lan.PleaseSelect);
|
BLL.Project_UserService.InitProjectUserDropDownList(drpAuditMan, true, this.CurrUser.LoginProjectId, Resources.Lan.PleaseSelect);
|
||||||
this.InitTreeMenu();//加载树
|
this.InitTreeMenu();//加载树
|
||||||
|
@ -83,6 +76,17 @@ namespace FineUIPro.Web.WeldingProcess.TestPackageManage
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
#region 绑定下拉打印列表
|
||||||
|
private void GetBindDropPrintList()
|
||||||
|
{
|
||||||
|
this.drpPrintTypeList.DataSource = BLL.Common_ReportPrintService.TestPackageSelectPrint();
|
||||||
|
this.drpPrintTypeList.DataTextField = "Title";
|
||||||
|
this.drpPrintTypeList.DataValueField = "Id";
|
||||||
|
this.drpPrintTypeList.DataBind();
|
||||||
|
this.drpPrintTypeList.Items.Insert(0, new ListItem("请选择", ""));
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
|
||||||
#region 加载树装置-单位-工作区
|
#region 加载树装置-单位-工作区
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 加载树
|
/// 加载树
|
||||||
|
|
Loading…
Reference in New Issue