Files
nairobi/app/helpers/budget_headings_helper.rb
2016-12-07 19:16:37 +01:00

10 lines
198 B
Ruby

module BudgetHeadingsHelper
def budget_heading_select_options(budget)
budget.headings.order_by_group_name.map do |heading|
[heading.name_scoped_by_group, heading.id]
end
end
end