Files
openfoodnetwork/app/helpers/enterprises_helper.rb
2013-10-17 11:08:25 +11:00

33 lines
1.1 KiB
Ruby

module EnterprisesHelper
def current_distributor
@current_distributor ||= current_order(false).andand.distributor
end
def enterprises_options enterprises
enterprises.map { |enterprise| [enterprise.name + ": " + enterprise.address.address1 + ", " + enterprise.address.city, enterprise.id.to_i] }
end
def enterprises_to_names(enterprises)
enterprises.map(&:name).sort.join(', ')
end
def enterprise_confirm_delete_message(enterprise)
if enterprise.supplied_products.present?
"This will also delete the #{pluralize enterprise.supplied_products.count, 'product'} that this enterprise supplies. Are you sure you want to continue?"
else
t(:are_you_sure)
end
end
# Copied and modified from Spree's link_to_delete, which does not
# allow customisation of the confirm message
def link_to_delete_enterprise(enterprise)
url = object_url(enterprise)
name = t(:delete)
options = {}
options[:class] = "delete-resource"
options[:data] = { :action => 'remove', :confirm => enterprise_confirm_delete_message(enterprise) }
link_to_with_icon 'icon-trash', name, url, options
end
end