45 lines
1.0 KiB
Ruby
45 lines
1.0 KiB
Ruby
module BudgetInvestmentsHelper
|
|
def budget_investments_advanced_filters(params)
|
|
params.map { |af| t("admin.budget_investments.index.filters.#{af}") }.join(", ")
|
|
end
|
|
|
|
def set_sorting_icon(direction, sort_by)
|
|
if sort_by.to_s == params[:sort_by]
|
|
if direction == "desc"
|
|
"desc"
|
|
else
|
|
"asc"
|
|
end
|
|
else
|
|
""
|
|
end
|
|
end
|
|
|
|
def set_direction(current_direction)
|
|
current_direction == "desc" ? "asc" : "desc"
|
|
end
|
|
|
|
def investments_minimal_view_path
|
|
budget_investments_path(id: @heading.group.to_param,
|
|
heading_id: @heading.to_param,
|
|
filter: @current_filter,
|
|
view: investments_secondary_view)
|
|
end
|
|
|
|
def investments_default_view?
|
|
@view == "default"
|
|
end
|
|
|
|
def investments_current_view
|
|
@view
|
|
end
|
|
|
|
def investments_secondary_view
|
|
investments_current_view == "default" ? "minimal" : "default"
|
|
end
|
|
|
|
def show_author_actions?(investment)
|
|
can?(:edit, investment) || can_destroy_image?(investment)
|
|
end
|
|
end
|