增加项目策划、总包合同模块
This commit is contained in:
@@ -36,8 +36,17 @@ namespace FineUIPro.Web.ZHGL.Plan
|
||||
if (!IsPostBack)
|
||||
{
|
||||
this.btnClose.OnClientClick = ActiveWindow.GetHideReference();
|
||||
BLL.Person_PersonsService.InitUserUnitIdDepartIdDropDownList(this.drpReviewMan, BLL.Const.UnitId_SEDIN, BLL.Const.Depart_constructionId, true);
|
||||
BLL.Person_PersonsService.InitUserUnitIdDepartIdDropDownList(this.drpPerson, BLL.Const.UnitId_SEDIN, BLL.Const.Depart_constructionId, true);
|
||||
var q = (from x in Funs.DB.Person_Persons where x.UnitId == Const.UnitId_SEDIN && x.DepartId == Const.Depart_constructionId && x.RoleIds != null && x.RoleIds != Const.NoOfficeRole select x).ToList();
|
||||
this.drpReviewMan.DataTextField = "PersonName";
|
||||
this.drpReviewMan.DataValueField = "PersonId";
|
||||
this.drpReviewMan.DataSource = q;
|
||||
this.drpReviewMan.DataBind();
|
||||
Funs.FineUIPleaseSelect(this.drpReviewMan);
|
||||
this.drpPerson.DataTextField = "PersonName";
|
||||
this.drpPerson.DataValueField = "PersonId";
|
||||
this.drpPerson.DataSource = q;
|
||||
this.drpPerson.DataBind();
|
||||
Funs.FineUIPleaseSelect(this.drpPerson);
|
||||
this.ActionPlanListId = Request.Params["ActionPlanListId"];
|
||||
if (!string.IsNullOrEmpty(this.ActionPlanListId))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user