mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
14 lines
376 B
Ruby
14 lines
376 B
Ruby
module OpenFoodNetwork
|
|
module DistributionHelper
|
|
def select_distribution(distributor, order_cycle = nil)
|
|
create_enterprise_group_for distributor
|
|
visit root_path
|
|
click_link distributor.name
|
|
|
|
if order_cycle && page.has_select?('order_order_cycle_id')
|
|
select_by_value order_cycle.id, from: 'order_order_cycle_id'
|
|
end
|
|
end
|
|
end
|
|
end
|