Skip to content

Instantly share code, notes, and snippets.

@dfranciosi
Created January 25, 2012 11:45
Show Gist options
  • Save dfranciosi/1675915 to your computer and use it in GitHub Desktop.
Save dfranciosi/1675915 to your computer and use it in GitHub Desktop.
if @related_products
# delete related not in the current marketplace
@related_products.delete_if do |p|
p.nil? || !p.marketplace_ids.include?(@marketplace.id)
end
# delete related not in order
@related_products.delete_if do |p|
p.marketplaces_products.find_by_product_id(p, :conditions => [ "product_order < 0" ]) ? true : false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment