1
我有一個Customer
模型,其中每個客戶都有很多種工作,有關聯記錄是否符合某些條件的記錄範圍?
class Customer < ActiveRecord::Base
has_many :jobs
end
class Job < ActiveRecord::Base
belongs_to :customer
def self.unbilled
finished.uninvoiced # these are other scopes on Job
end
end
如何定義上Customer
一個範圍將返回誰擁有未開票作業的所有客戶的名單?
要顯示它的看法? – uday