LEIYI 6 달 전
부모
커밋
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")}%";