代码无效引用清理,试压包资料界面看板修改
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
using BLL;
|
||||
using FineUIPro.Web.BaseInfo;
|
||||
using Model;
|
||||
using System;
|
||||
|
||||
namespace FineUIPro.Web.HSSE.CostGoods
|
||||
@@ -63,7 +61,7 @@ namespace FineUIPro.Web.HSSE.CostGoods
|
||||
this.drpSupCostType.SelectedValue = costManageItem.SupCostTypeId;
|
||||
CostTypeService.InitCostTypeItemDropDownList(this.drpCostType, this.drpSupCostType.SelectedValue, false);
|
||||
this.drpCostType.SelectedValue = costManageItem.CostTypeId;
|
||||
this.txtInvestCostProject.Text= costManageItem.InvestCostProject;
|
||||
this.txtInvestCostProject.Text = costManageItem.InvestCostProject;
|
||||
if (costManageItem.PriceMoney != null)
|
||||
{
|
||||
this.txtPriceMoney.Text = Convert.ToString(costManageItem.PriceMoney);
|
||||
@@ -91,7 +89,7 @@ namespace FineUIPro.Web.HSSE.CostGoods
|
||||
PriceMoney = Funs.GetNewDecimalOrZero(this.txtPriceMoney.Text.Trim()),
|
||||
};
|
||||
|
||||
var getSupType =CostTypeService.GetCostTypeById(this.drpSupCostType.SelectedValue);
|
||||
var getSupType = CostTypeService.GetCostTypeById(this.drpSupCostType.SelectedValue);
|
||||
if (getSupType != null)
|
||||
{
|
||||
costManageItem.SupCostTypeId = getSupType.CostTypeId;
|
||||
@@ -102,7 +100,7 @@ namespace FineUIPro.Web.HSSE.CostGoods
|
||||
{
|
||||
isSave = false;
|
||||
}
|
||||
var getCostType=CostTypeService.GetCostTypeItemById(this.drpCostType.SelectedValue);
|
||||
var getCostType = CostTypeService.GetCostTypeItemById(this.drpCostType.SelectedValue);
|
||||
if (getCostType != null)
|
||||
{
|
||||
costManageItem.CostTypeId = getCostType.CostTypeItemId;
|
||||
@@ -144,7 +142,7 @@ namespace FineUIPro.Web.HSSE.CostGoods
|
||||
/// <param name="e"></param>
|
||||
protected void drpSupCostType_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
CostTypeService.InitCostTypeItemDropDownList(this.drpCostType,this.drpSupCostType.SelectedValue, false);
|
||||
CostTypeService.InitCostTypeItemDropDownList(this.drpCostType, this.drpSupCostType.SelectedValue, false);
|
||||
}
|
||||
|
||||
#region 附件上传
|
||||
|
||||
Reference in New Issue
Block a user