mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-06 02:51:34 +00:00
10 lines
322 B
Ruby
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
|