修改WBS基础库内容
This commit is contained in:
@@ -33,6 +33,7 @@ namespace FineUIPro.Web.CQMS.WBS
|
||||
{
|
||||
string divisionId = Request.Params["divisionId"];
|
||||
BreakdownId = Request.Params["breakdownId"];
|
||||
Funs.FineUIPleaseSelect(this.drpCheckAcceptType);
|
||||
Model.WBS_Breakdown breakdown = BLL.BreakdownService.GetBreakdownById(BreakdownId);
|
||||
var division = BLL.DivisionService.GetDivisionById(divisionId);
|
||||
if (division != null)
|
||||
@@ -77,6 +78,10 @@ namespace FineUIPro.Web.CQMS.WBS
|
||||
{
|
||||
this.txtSortIndex.Text = breakdown.SortIndex.ToString();
|
||||
}
|
||||
if (!string.IsNullOrEmpty(breakdown.CheckAcceptType))
|
||||
{
|
||||
this.drpCheckAcceptType.SelectedValue = breakdown.CheckAcceptType;
|
||||
}
|
||||
this.txtRemark.Text = breakdown.Remark;
|
||||
}
|
||||
}
|
||||
@@ -103,6 +108,10 @@ namespace FineUIPro.Web.CQMS.WBS
|
||||
newBreakdown.WuHuan = this.WuHuan.Text.Trim();
|
||||
newBreakdown.JianLi = this.JianLi.Text.Trim();
|
||||
newBreakdown.YeZhu = this.YeZhu.Text.Trim();
|
||||
if (this.drpCheckAcceptType.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
newBreakdown.CheckAcceptType = this.drpCheckAcceptType.SelectedValue;
|
||||
}
|
||||
if (!string.IsNullOrEmpty(this.txtSortIndex.Text.Trim()))
|
||||
{
|
||||
try
|
||||
|
||||
Reference in New Issue
Block a user