class Product < ApplicationRecord
scope :active, -> { where(status: 'Active').where.not(inventory_cd: %w[NITRO DELIV]) }
end
class OrderLine < ApplicationRecord
scope :with_active_product, -> { joins(:product).merge(Product.active) }
end
Created
March 2, 2018 17:14
-
-
Save antico5/bcb98cfbbf3ef3757d138724f7be9ceb to your computer and use it in GitHub Desktop.
scope_with_nested_condition.md
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment