I am trying to get a collection of Invoices which are NOT part of a Debit that is not yet completed.
So for each invoice no debit must exist that is not completed So either invoices with NO debits or invoices with only debits that are completed are valid
Invoice has a has_many relation to Debit through a join model InvoiceDebit
class Invoice < ActiveRecord::Base
has_many :debit_invoices
has_many :debits, :through => :debit_invoices
end
class DebitInvoice < ActiveRecord::Base
belongs_to :invoice
belongs_to :debit
end
class Debit < ActiveRecord::Base
attr_accessible :completed
has_many :debit_invoices
has_many :invoices, :through => :debit_invoices
end
I would prefer to not write out the entire query in SQL, as I already use AREL to constrain the pool of invoices for only the current logged in user.
You can construct an efficient where clause as a SQL fragment.
Then: