私は次の設定をしています。
Invoice has_many Jobs has_many Tasks belongs_to user
タスクがあるのすべてUser
のを取得し、それらの数量を合計したいInvoice
class Invoice < ActiveRecord::Base
has_many :jobs
end
class Job < ActiveRecord::Base
belongs_to :invoice
has_many :tasks
end
class Task < ActiveRecord::Base
belongs_to :job
belongs_to :user
end
これが私が得たものです
@invoice = Invoice.find(params[:id])
jobs = @invoice.jobs.joins(:tasks)
.select('tasks.user_id, (sum(tasks.quantity)*jobs.price) as total')
.group('tasks.user_id, jobs.id')
.order('tasks.user_id')
私はこれを手に入れました、それは私が欲しいものに近いです
- !ruby/object:Job
attributes:
user_id: '1'
total: '60.00'
- !ruby/object:Job
attributes:
user_id: '1'
total: '50.00'
- !ruby/object:Job
attributes:
user_id: '2'
total: '120.00'
- !ruby/object:Job
attributes:
user_id: '2'
total: '100.00'
これをグループuser_id
化して合計すると、このようなものになりますか?
user_id: 1
total: 110
user_id: 2
total: 220