20250310 total budget回填
This commit is contained in:
@@ -52,12 +52,23 @@ namespace FineUIPro.Web.SES
|
||||
|
||||
BLL.DisciplineService.InitDropDownList(this.drpDiscispline, true); //专业
|
||||
BLL.DisciplineCategoryService.InitDropDownList(this.drpOriginal_WC, true);//专业类别
|
||||
BLL.ContractorService.InitDropDownList(this.drpContractor, true);//承包商
|
||||
//BLL.ContractorService.InitDropDownList(this.drpContractor, true);//承包商
|
||||
BLL.PriceSchemeService.InitDropDownList(this.drpPricing_Scheme, true);//价格方案
|
||||
BLL.ItemService.InitDropDownList(this.drpItem, true);
|
||||
BLL.CurrencyService.InitDropDownList(this.drpCurrency, true); //币种
|
||||
BLL.FOTypeService.InitDropDownList(this.drpFOTypeId, true);
|
||||
BLL.TypeService.InitDropDownList(this.drpType, true);
|
||||
|
||||
var contractorLists = from x in Funs.DB.FC_SESRelatedData
|
||||
join y in Funs.DB.Base_Contractor on x.Contractor equals y.ContractorId
|
||||
where x.Expire_Date.Value.AddYears(1) >= DateTime.Now
|
||||
select new { y.ContractorId, Contractor = y.Contractor + y.ContractorCN };
|
||||
this.drpContractor.DataTextField = "Contractor";
|
||||
this.drpContractor.DataValueField = "ContractorId";
|
||||
this.drpContractor.DataSource = contractorLists.Distinct();
|
||||
this.drpContractor.DataBind();
|
||||
Funs.FineUIPleaseSelect(this.drpContractor);
|
||||
|
||||
//合同员
|
||||
this.drpContract_Admin.DataTextField = "UserName";
|
||||
this.drpContract_Admin.DataValueField = "UserId";
|
||||
|
||||
Reference in New Issue
Block a user