提交代码
This commit is contained in:
@@ -107,11 +107,33 @@ namespace FineUIPro.Web.PZHGL.InformationProject
|
||||
if (!IsPostBack)
|
||||
{
|
||||
this.txtCompileDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
|
||||
//合同编号
|
||||
this.drpContractNo.DataTextField = "ContractNum";
|
||||
this.drpContractNo.DataValueField = "ContractId";
|
||||
this.drpContractNo.DataSource = BLL.PHTGL_ContractReviewService.GetContractReview_CompleteData(this.CurrUser.LoginProjectId);
|
||||
this.drpContractNo.DataBind();
|
||||
Funs.FineUIPleaseSelect(this.drpContractNo);
|
||||
GetData();
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
protected void drpContractNo_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.lblUnitName.Text = string.Empty;
|
||||
if (this.drpContractNo.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
var contractTrack = (from x in Funs.DB.PHTGL_ContractTrack
|
||||
where x.ContractId == this.drpContractNo.SelectedValue && x.ConstructionSubcontractor != null && x.ConstructionSubcontractor != string.Empty
|
||||
select x).FirstOrDefault();
|
||||
if (contractTrack != null)
|
||||
{
|
||||
this.lblUnitName.Text = contractTrack.ConstructionSubcontractor;
|
||||
}
|
||||
}
|
||||
GetData();
|
||||
}
|
||||
|
||||
private void GetData()
|
||||
{
|
||||
Model.SGGLDB db = Funs.DB;
|
||||
@@ -134,6 +156,10 @@ namespace FineUIPro.Web.PZHGL.InformationProject
|
||||
}
|
||||
}
|
||||
}
|
||||
if (this.drpContractNo.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
contractNo = this.drpContractNo.SelectedValue;
|
||||
}
|
||||
List<string> contractNoList = Funs.GetStrListByStr(contractNo, ',');
|
||||
List<string> professionalList = Funs.GetStrListByStr(professional, ',');
|
||||
var workEfficiencys = from x in db.ZHGL_ConstructionLogWorkEfficiency
|
||||
|
||||
Reference in New Issue
Block a user