Files
grecia/app/helpers/budget_executions_helper.rb
Javi Martín b1806dde44 Rename Budget#milestone_tags method
Since budgets now have milestone tags, the name of this method was
confusing and will conflict with the name generated by acts_as_taggable.

Note the new name could be improved too.
2019-11-01 17:12:42 +01:00

17 lines
508 B
Ruby

module BudgetExecutionsHelper
def filters_select_counts(status)
@budget.investments.winners.with_milestone_status_id(status).count
end
def options_for_milestone_tags
@budget.investments_milestone_tags.map do |tag|
["#{tag} (#{@budget.investments.winners.tagged_with(tag).count})", tag]
end
end
def first_milestone_with_image(investment)
investment.milestones.order_by_publication_date
.select { |milestone| milestone.image.present? }.last
end
end