|
|
|
@ -8,7 +8,7 @@
@@ -8,7 +8,7 @@
|
|
|
|
|
int incomePercentage = 100; |
|
|
|
|
if (totalIncome != 0 && totalBills != 0) |
|
|
|
|
{ |
|
|
|
|
incomePercentage = (int)Math.Min((Math.Floor(totalIncome / totalBills) * 100), 100); |
|
|
|
|
incomePercentage = (int)Math.Min(Math.Floor((totalIncome / totalBills) * 100), 100); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
string processStyle = "progress-bar progress-bar-success"; |
|
|
|
|