0

私は次の関係を持っています:

class Order < ActiveRecord::Base
  has_many :item_selections, :dependent => :destroy
  has_many :inventory_items, :through => :item_selections
end
class InventoryItem < ActiveRecord::Base
  has_many :item_selections, :dependent => :destroy
  has_many :orders, :through => :item_selections
end
class ItemSelection < ActiveRecord::Base
  belongs_to :order
  belongs_to :inventory_item
end

以下のこの SQL クエリに相当する ActiveRecord を作成し、*total_weight* & *total_volume* 列の合計をインスタンス変数にロードしようとしています。

select t1.quantity, t2.volume, t2.weight, 
t2.volume * t1.quantity as total_volume,    
t1.quantity * t2.weight as total_weight
from orders t0
inner join item_selections t1 on t0.id = t1.order_id
inner join inventory_items t2 on t1.inventory_item_id = t2.id
where t0.id = <id_val>     

ActiveRecord を使用してこれらの値を取得する正しい方法に関するアイデアはありますか?

4

1 に答える 1

0

これはうまくいくはずです:

orders = Order.select('orders.*, t1.quantity, t2.volume, t2.weight, t2.volume * t1.quantity as total_volume, t1.quantity * t2.weight as total_weight').joins('inner join item_selections t1 on orders.id = t1.order_id, inner join inventory_items t2 on t1.inventory_item_id = t2.id').where(:id => id_val)

このようなカスタム選択を使用すると、返されたオブジェクトの属性として選択された他のものが追加されるため、注文オブジェクトのフィールドであるかのようにそれらを参照できます。

@total_volume_sum = orders.sum(:total_volume)
@total_weight_sum = orders.sum(:total_weight)
于 2012-07-01T04:03:44.750 に答える