LEIYI 1 month ago
parent
commit
e7cead1513

+ 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")}%";