Files
openfoodnetwork/app/helpers/enterprises_helper.rb

10 lines
322 B
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
end