16 lines
537 B
Ruby
16 lines
537 B
Ruby
module BudgetHeadingsHelper
|
|
|
|
def budget_heading_select_options(budget)
|
|
budget.headings.map {|heading| [heading.name, heading.id]}
|
|
end
|
|
|
|
def multiple_budgets_heading_select_options(headings)
|
|
headings.map { |heading| ["#{heading.budget.name} - #{heading.group.name} - #{heading.name}", heading.id] }
|
|
end
|
|
|
|
def budget_scoped_heading_select_options(budget)
|
|
budget.headings.includes(:group).order("group_id ASC, budget_headings.name ASC").map {|heading| [heading.group.name + ': ' + heading.name, heading.id]}
|
|
end
|
|
|
|
end
|