From c10314d30127be035b6d84ea05ae4a314409ab7e Mon Sep 17 00:00:00 2001 From: wendy <408182087@qq.com> Date: Thu, 10 Jul 2025 14:10:20 +0800 Subject: [PATCH] =?UTF-8?q?20250710=20=E4=BF=AE=E6=94=B9=E8=B4=B9=E7=94=A8?= =?UTF-8?q?=E5=A2=9E=E8=A1=A5=E5=9B=9E=E5=A1=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FCL/FineUIPro.Web/SES/SESRelatedDataContractManage2.aspx.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FCL/FineUIPro.Web/SES/SESRelatedDataContractManage2.aspx.cs b/FCL/FineUIPro.Web/SES/SESRelatedDataContractManage2.aspx.cs index 4077bce..f09ee10 100644 --- a/FCL/FineUIPro.Web/SES/SESRelatedDataContractManage2.aspx.cs +++ b/FCL/FineUIPro.Web/SES/SESRelatedDataContractManage2.aspx.cs @@ -238,7 +238,7 @@ namespace FineUIPro.Web.SES { totalSupp += item.SupplementedBudget; } - this.txtTotalBudget.Text = (Funs.GetNewIntOrZero(txtInitialBudget.Text.Trim()) + totalSupp + Funs.GetNewDecimalOrZero(this.txtSupplementedBudget.Text.Trim())).ToString(); + this.txtTotalBudget.Text = (Funs.GetNewDecimalOrZero(txtInitialBudget.Text.Trim()) + totalSupp + Funs.GetNewDecimalOrZero(this.txtSupplementedBudget.Text.Trim())).ToString(); } } }