20250410
This commit is contained in:
@@ -361,7 +361,7 @@ namespace FineUIPro.Web.SES
|
||||
this.numProportion_of_FC_Definition.Text = "";
|
||||
}
|
||||
this.txtInitial_Budget.Text = data.InitialBudget.HasValue ? data.InitialBudget.Value.ToString() : "";
|
||||
this.txtActual_Budget.Text = data.Actual_Budget.HasValue ? data.Actual_Budget.Value.ToString() : "";
|
||||
this.txtActual_Budget.Text = this.txtInitial_Budget.Text;//data.Actual_Budget.HasValue ? data.Actual_Budget.Value.ToString() : "";
|
||||
this.txtRemark.Text = data.Remark;
|
||||
if (!string.IsNullOrEmpty(data.ConstRecords))
|
||||
{
|
||||
@@ -741,5 +741,13 @@ namespace FineUIPro.Web.SES
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
protected void txtInitial_Budget_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (!string.IsNullOrEmpty(this.txtInitial_Budget.Text.Trim()))
|
||||
{
|
||||
this.txtActual_Budget.Text = this.txtInitial_Budget.Text.Trim();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user