LEIYI 1 月之前
父节点
当前提交
e7cead1513
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      OASystem/OASystem.Domain/ViewModels/Financial/Fin_DailyFeePaymentView.cs

+ 1 - 1
OASystem/OASystem.Domain/ViewModels/Financial/Fin_DailyFeePaymentView.cs

@@ -1502,7 +1502,7 @@ namespace OASystem.Domain.ViewModels.Financial
             {
                 if (BudgetAmount == 0) return $"0%";
 
-                if (ExcessAmount<=0) return $"0%";
+                //if (ExcessAmount<=0) return $"0%";
 
                 var percentage = (ExcessAmount / BudgetAmount) * 100;
                 return $"{percentage.ToString("0.00")}%";