Module: Crm::CustomerSearchHelper

Defined in:
app/helpers/crm/customer_search_helper.rb

Instance Method Summary collapse

Instance Method Details

#drop_sales_rep_options_for_selectObject



2
3
4
5
6
7
8
# File 'app/helpers/crm/customer_search_helper.rb', line 2

def drop_sales_rep_options_for_select
  if user_has_role?("sales_manager")
    [['All', 'all']] + @search.drop_action_reps_for_select
  else
    [[@context_user.full_name, @context_user.id]]
  end
end