On enterprise page, do not display products outside of the outgoing exchange

This commit is contained in:
Rohan Mitchell
2013-11-15 15:08:45 +11:00
parent 59935619e3
commit 7a8bd16083
4 changed files with 56 additions and 7 deletions

View File

@@ -48,8 +48,8 @@ class EnterprisesController < BaseController
@searcher = Spree::Config.searcher_class.new(options)
@products = @searcher.retrieve_products
order_cycle_products = current_order_cycle.products
@products.select! { |p| order_cycle_products.include? p }
order_cycle_products = current_order_cycle.products_distributed_by(current_distributor)
@products = @products & order_cycle_products
end
end