diff --git a/app/models/budget/investment.rb b/app/models/budget/investment.rb index fc4d31ff7..b11af9e25 100644 --- a/app/models/budget/investment.rb +++ b/app/models/budget/investment.rb @@ -268,7 +268,7 @@ class Budget return :not_selected unless selected? return :no_ballots_allowed unless budget.balloting? return :different_heading_assigned unless ballot.valid_heading?(heading) - return :not_enough_money if ballot.present? && !enough_money?(ballot) + return :not_enough_money unless enough_money?(ballot) return :casted_offline if ballot.casted_offline? end